* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: 'garet', sans-serif;
  color: #2E2E2E;
  line-height: 1.6;
  background: #F7F5F4;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #7A1E28;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 65px;
  padding-right: 70px;
  max-width: 100%;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
}

/* NAV DESKTOP */
.nav {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav a {
  color: #F7F5F4;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #9B2C36;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav .btn {
  background: #F7F5F4;
  color: #7A1E28;
  padding: 8px 16px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

/* HAMBURGUESA (solo para mobile) */
.nav-toggle{
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px;
}

/* Líneas del icono*/
.nav-toggle span{
  display: block;
  width: 26px;
  height: 2px;
  background: #F7F5F4;
  margin: 5px 0;
  border-radius: 2px;
}

/* HERO*/
.hero {
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* GRID 50 / 50 */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 82px);
}

/*  COLUMNA IZQUIERDA  */
.hero-left {
  position: relative;
  background-image: url("/imagenes/back.jpg");
  background-size: cover;
  background-position: center;
}

/* COLUMNA DERECHA*/
.hero-bg {
  position: relative;
  background-image: url("/imagenes/equipamiento.jpg");
  background-size: cover;
  background-position: center;
}

/* OVERLAY OSCURO */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* TEXTO IZQUIERDA */
.hero-text {
  position: relative;
  z-index: 2;
  padding: 120px 80px;
  color: #F7F5F4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  max-width: 500px;
  margin-bottom: 30px;
}

/* TEXTO DERECHA */
.hero-bg-text {
  position: relative;
  z-index: 2;
  padding: 120px 80px;
  color: #F7F5F4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  max-width: 420px;
  margin-left: auto;
  transform: translateY(60px);
}

.hero-bg-text h2 {
  font-size: 52px;
  margin-bottom: 20px;
}

.hero-bg-text p {
  font-size: 18px;
  max-width: 500px;
  opacity: 0.9;
  white-space: nowrap;
}

/* HERO IMÁGENES B/N → COLOR */
.hero-left,
.hero-bg {
  filter: grayscale(100%);
  transition: filter 0.6s ease;
}

.hero-left:hover,
.hero-bg:hover {
  filter: grayscale(0%);
}

/* SERVICIOS */
.services {
  padding: 80px 0 100px;
  background: #F7F5F4;
}

.services h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  color: #7A1E28;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* IMAGEN DENTRO DE CARD */
.card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.card:hover .card-img {
  transform: scale(1.03);
}

/* BOTÓN GENERAL */
.btn-primary {
  background: #F7F5F4;
  color: #7A1E28;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  line-height: 1.2;
  transition: background 0.3s ease;
}

.hero-content .btn-primary {
  padding: 8px 20px;
  max-width: fit-content;
}

.btn-primary:hover {
  background: #9B2C36;
  color: #F7F5F4;
}

.service-list{
  margin-top: 16px;
  padding-left: 34px;  
  list-style-position: outside;
}

.service-list li{
  margin-bottom: 8px;
}

/* ABOUT */
.about {
  padding: 80px 0;
}

/* 2 columnas iguales + pegado a los bordes del container */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.about-grid p{
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
.about-grid > div {
  margin: 0;
  padding: 0;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
@media (max-width: 768px){
  .about-grid p{
    text-align: justify;  
  }
}

/* CTA */
.cta {
  background: #7A1E28;
  color: #F7F5F4;
  text-align: center;
  padding: 60px 20px;
}

/* FOOTER */
.footer {
  background: #5A1620;
  color: #F7F5F4;
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 40px;
  align-items: flex-start;
}

.footer-grid > div {
  text-align: left;
}

.footer-grid > div:nth-child(1) { justify-self: start; }
.footer-grid > div:nth-child(2) { justify-self: center; }
.footer-grid > div:nth-child(3) { justify-self: end; }

.footer h3,
.footer h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.footer p {
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #F7F5F4;
}

/*DROPDOWN */
.nav-item { position: relative; }

.nav-link {
  color: #F7F5F4;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.nav-link::after {
  content: " ▾";
  font-size: 12px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #7A1E28;
  border-radius: 6px;
  min-width: 160px;
  display: none;
  flex-direction: column;
  padding: 6px 0;
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #F7F5F4;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #9B2C36;
}

.nav-item:hover .dropdown-menu { display: block; }

/* PAGINA EQUIPOS */
.equipos {
  padding: 80px 0;
  background: #F7F5F4;
}

.equipos-title {
  text-align: center;
  font-size: 42px;
  color: #7A1E28;
  margin-bottom: 10px;
}

.equipos-subtitle {
  text-align: center;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #555;
}

.equipos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.equipo-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.equipo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* agrandar logo dentro de la card */
.equipo-logo {
  width: 190px;
  max-width: 100%;
  height: 110px;
  object-fit: contain;
  margin-bottom: 15px;
}

.equipo-card h3 {
  font-size: 20px;
  color: #7A1E28;
  margin-bottom: 8px;
}

.equipo-card p {
  font-size: 14px;
  color: #555;
}

/* NOSOTROS */
.nosotros { padding: 80px 0; }

.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.nosotros-text h1 {
  font-size: 42px;
  color: #7A1E28;
  margin-bottom: 20px;
}

.nosotros-card h2{
  font-size: 42px;
  color: #7A1E28;
  margin-bottom: 20px;
}

.nosotros-text p {
  font-size: 17px;
  margin-bottom: 16px;
  text-align: justify;
  hyphens: auto;
}

.nosotros-image img {
  width: 100%;
  border-radius: 12px;
}

/* MARCAS */
.marcas {
  padding: 80px 0;
  background: #F7F5F4;
}

.marcas h2 {
  text-align: center;
  font-size: 36px;
  color: #7A1E28;
  margin-bottom: 40px;
}

.marcas-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.marcas-slider {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  align-items: center;
}

.marcas-slider::-webkit-scrollbar { display: none; }

.marcas-slider img {
  height: 80px;          /* mismo alto para todos */
  width: 140px;          /* mismo de ancho */
  object-fit: contain;   
  flex: 0 0 auto;
  filter: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.marcas-slider img:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.slider-btn {
  background: rgba(122, 30, 40, 0.85);
  color: #F7F5F4;
  border: none;
  font-size: 18px;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0.6;
  transition: opacity 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.slider-btn:hover {
  background: #9B2C36;
  opacity: 1;
  transform: scale(1.1);
}

.slider-btn.prev { margin-right: 6px; }
.slider-btn.next { margin-left: 6px; }

/* CONTACTO */
.contacto { padding: 80px 0; }

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contacto-info h1 {
  font-size: 42px;
  color: #7A1E28;
  margin-bottom: 20px;
}

.contacto-info p {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
}

.contacto-item { margin-bottom: 30px; }
.contacto-item strong { color: #7A1E28; }
.contacto-mapa iframe { border-radius: 12px; }

/* FORMULARIO DE CONTACTO */
.contacto-form {
  grid-column: 1 / -1;
  background: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-top: 20px;
}

.contacto-form h2 {
  font-size: 28px;
  color: #7A1E28;
  margin-bottom: 20px;
}

.contacto-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-grupo {
  text-align: left;
}

.contacto-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #2E2E2E;
}

.contacto-form input,
.contacto-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #CCC;
  font-family: 'garet', sans-serif;
  font-size: 14px;
  outline: none;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
  border-color: #7A1E28;
  box-shadow: 0 0 0 2px rgba(122,30,40,0.12);
}

/* BOTÓN DEL FORM */
.contacto-form button.btn-primary{
  width: 100%;
  background: #7A1E28;
  color: #F7F5F4;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.contacto-form button.btn-primary:hover{
  background: #9B2C36;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.contacto-form button.btn-primary:active{
  transform: translateY(0px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.14);
}

.contacto-form button.btn-primary:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(122,30,40,0.22), 0 10px 22px rgba(0,0,0,0.18);
}

/* pag csc */
.page-bg.csc {
  background-image: url("/imagenes/fondo3.png");
  position: relative;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;     /* ✅ centra vertical */
  justify-content: center; /* ✅ centra horizontal */      /* podés subir a 70vh si querés más alto */
  padding: 80px 20px;      /* evita que quede pegado */
}

.page-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.page-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #F7F5F4;
  max-width: 800px;
  padding: 40px;
  margin: 0 auto;
}
/* Logo en lugar del h1 */
.csc-logo{
  width: min(320px, 70vw); /* responsive */
  height: auto;
  display: block;
  margin: 0 auto 16px;
}
.page-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.page-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* HERO SLIDER GENERAL */
.hero.hero-slider {
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 75vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active { opacity: 1; }

.hero-content {
  position: relative;
  z-index: 2;
  color: #F7F5F4;
  max-width: 520px;
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 75vh;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  white-space: nowrap;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #F7F5F4;
  background: transparent;
  cursor: pointer;
  opacity: 0.7;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.hero-dots .dot.active {
  background: #F7F5F4;
  opacity: 1;
}

/* WHATSAPP BTN */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.wa-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/*  CARDS CSC  */
.capabilities {
  padding: 70px 0 90px;
  background: #F7F5F4;
}

.cap-title {
  text-align: center;
  font-size: 38px;
  color: #7A1E28;
  margin-bottom: 10px;
}

.cap-subtitle {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 16px;
}

.cap-grid {
   display: flex;
  flex-wrap: wrap;
  justify-content: center; /* ✅ centra cada fila */
  gap: 22px;
}

.cap-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 20px 20px 22px;
  min-height: 460px;
  height: 600px; 
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(122, 30, 40, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 270px;     
  max-width: 100%;
}

.cap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.12);
  border-color: rgba(122, 30, 40, 0.30);
}

.cap-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.cap-card:hover .cap-img {
  transform: scale(1.03);
}

.cap-badge{
  display: flex;
  align-items: flex-end;   /* alinea el texto abajo */
  min-height: 52px;        /* 🔑 ESTA ES LA CLAVE */
  color: #7A1E28;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 10px;
}

.cap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 180px;
  
 
}

.cap-list li {
  position: relative;
  padding-left: 22px;
  color: #222;
  font-weight: 600;
  line-height: 1.45;
  font-size: 15px;
}

.cap-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #7A1E28;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 1200px) {
  .cap-grid {
    grid-template-columns: repeat(2, 270px);
    justify-content: center;
  }
}

/*MOBILE (incluye NAV + ajustes)*/
@media (max-width: 768px) {

  /* Header más compacto */
  .header .container { padding: 8px 16px; }
  .logo img { height: 42px; }

  /* Mostrar hamburguesa SOLO en mobile */
  .nav-toggle{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  /* Menú móvil */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #7A1E28;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 18px 16px;
    display: none;
    z-index: 999;
  }

  .nav.open { display: flex; }

  .nav a,
  .nav .btn,
  .nav-link {
    width: 100%;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    background: transparent;
    border-radius: 0;
    padding: 0 0 0 14px;
    display: none;
  }

  .dropdown-menu a { padding: 6px 0; }
  .nav-item.open .dropdown-menu { display: block; }

  /* Footer en mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .footer-grid > div {
    justify-self: center;
    text-align: center;
  }

  /* Hero responsive */
  .hero-grid { grid-template-columns: 1fr; }

  .hero-text {
    padding: 80px 30px;
    text-align: center;
  }

  .hero-bg-text {
    padding: 80px 30px;
    align-items: center;
    text-align: center;
    margin-left: 0;
  }

  .hero-bg-text p { white-space: normal; }
  .hero-text h1 { font-size: 32px; }
  .hero-bg { min-height: 280px; }

  /* Secciones */
  .nosotros-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nosotros-text h1 { font-size: 32px; }
  .marcas-slider img { height: 60px; }

  .contacto-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contacto-info h1 { font-size: 32px; }
  .contacto-info p { text-align: center; }

  .contacto-form {
    margin-top: 10px;
    text-align: left;
  }

  .page-content h1 { font-size: 32px; }
  .page-content p { font-size: 16px; }

  .hero-content {
    padding: 60px 20px;
    text-align: center;
    align-items: center;
    max-width: 100%;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 32px;
    white-space: normal;
  }

  .hero-content p { font-size: 16px; }

  /* CSC cards en mobile */
  .capabilities { padding: 55px 0 70px; }
  .cap-title { font-size: 30px; }
  .cap-grid { grid-template-columns: 1fr; gap: 16px; }
  .cap-card { min-height: auto; }
  .cap-badge { width: 100%; text-align: center; }

  /* nowrap en mobile */
  .hero-content .nowrap { white-space: normal; }
}

/* Blindaje: en desktop siempre nav visible y hamburguesa oculta */
@media (min-width: 769px){
  .nav{ display: flex !important; }
  .nav-toggle{ display: none !important; }
}

.nowrap { white-space: nowrap; }

/* nosotros.php  */

/* 1) Fila 1: el texto queda en card, la foto sin card */
.nosotros-grid{
  align-items: stretch;
}

/* Convertimos el bloque de texto en "card" SIN tocar el resto del sitio */
.nosotros-text{
  background: #FFFFFF;
  border: 1px solid rgba(122, 30, 40, 0.14);
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 34px 34px 28px;
  position: relative;
  overflow: hidden;
}


/* 2) Foto sin recuadro */
.nosotros-image{
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  display: flex;
}

.nosotros-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px; /* estética sin "card" */
  display: block;
}

/* 3) Fila 2*/
.nosotros-grid-2{
  margin-top: 26px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr; /* izq foto / der card */
  gap: 50px;
  align-items: stretch;
}

/* card de misión/visión */
.nosotros-card{
  background: #FFFFFF;
  border: 1px solid rgba(122, 30, 40, 0.14);
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 34px 34px 28px;
  position: relative;
  overflow: hidden;
}

.nosotros-photo{
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  display: flex;
}

.nosotros-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* Responsive */
@media (max-width: 992px){
  .nosotros-grid,
  .nosotros-grid-2{
    grid-template-columns: 1fr;
  }

  .nosotros-image img,
  .nosotros-photo img{
    height: 360px;
  }
}
.contacto1-lista{
  display: flex;
  flex-direction: column;
  gap: 12px; /* igual que .social-lista */
}

/* item: igual que redes */
.contacto1-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #F7F5F4;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2; /* para que calce igual que redes */
}

/* ESTE ES EL FIX CLAVE: sacar márgenes por defecto */
.contacto1-lista p,
.contacto1-lista li{
  margin: 0;
}

/* opcional: si el texto se ve un poquito “caído”, alineá arriba */
.contacto1-item{
  align-items: center; /* dejalo así (como redes) */
}
.social-lista{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #F7F5F4;      /* blanco */
  text-decoration: none;
  font-weight: 600;
}

.social-item:hover{
  opacity: 0.9;
}

.social-ico{
  width: 22px;
  height: 22px;
  color: #F7F5F4;      /* hace que currentColor sea blanco */
  flex: 0 0 auto;
}

/* boton whatsapp */

a.btn-primary.whatsapp-btn{
  background: #7A1E28;
  color: #F7F5F4;
  border-radius: 10px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

a.btn-primary.whatsapp-btn:hover{
  background: #9B2C36;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

a.btn-primary.whatsapp-btn:active{
  transform: translateY(0px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.14);
}

.wa-icon{
  width: 20px;
  height: 20px;
  color: #F7F5F4;   /* currentColor -> blanco */
  display: block;
  flex: 0 0 auto;
}
/* =========================
   FOOTER: INTERLINEADO IGUAL
   (pegá esto al final)
========================= */

/* ambas listas con el mismo espacio vertical */
.footer-lista,
.social-lista{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* filas iguales (contacto y redes) */
.footer-item,
.social-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #F7F5F4;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
}

/* íconos mismo tamaño en todo el footer */
.footer-ico,
.social-ico{
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: #F7F5F4; /* currentColor -> blanco */
  display: block;
}

/* evita “saltitos” raros */
.footer-item span,
.social-item span{
  display: inline-block;
}
