/* =========================
   VARIABLES Y RESET
========================= */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Roboto:wght@400;700&display=swap');

:root {
    --negro: #1E1E1E;
    --naranja: #FF8C00;
    --naranja2: #FF6347;
    --rojo: #DC143C;
    --rojo2: #B22222;
    --colordregade: #00000056;
    --colordregade2: #ff9100;
    --blanco: #fff;
    --gris: #222;
    --trans: 0.3s cubic-bezier(.4,2,.6,1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: var(--negro);
    color: var(--blanco);
    line-height: 1.6;
    min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

/* =========================
   HEADER Y NAVEGACIÓN
========================= */
header {
    background: rgba(30,30,30,0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Contenedor principal del header */
.nav-row, .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 0 1rem;
    background: transparent;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
/* Solo el logo, más grande, sin fondo ni borde, con sombra blanca en hover/click */

.logo-header {
    height: 500px;
    width: auto;
    display: block;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: box-shadow 0.3s;
    cursor: pointer;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #181818;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.mobile-menu.open {
  display: flex;
}

/* =========================
   HEADER Y MENÚ DESKTOP
========================= */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1rem 2rem;
  background: #181818;
  position: relative;
}
.logo-header {
  height: 80px;
  width: auto;
  display: block;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: box-shadow 0.3s;
  cursor: pointer;
}
.logo-header:hover {
  box-shadow: 0 4px 24px 0 #fff;
}
.logo-header:active {
  box-shadow: none;
}
.nav-menu-desktop {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-menu-desktop li a {
  color: orange;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.nav-menu-desktop li a:hover {
  background: orange;
  color: #181818;
  box-shadow: 0 2px 8px #FF6347;
}

/* =========================
   MENÚ HAMBURGUESA MOBILE
========================= */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1201;
  width: 38px;
  height: 38px;
  justify-content: center;
  align-items: center;
}
.burger span {
  display: block;
  width: 28px;
  height: 4px;
  background: orange;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Menú mobile oculto por defecto */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #181818;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeIn 0.3s;
}
.mobile-menu.open {
  display: flex;
}

/* Botón close animado */
.close-menu {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.close-bar {
  position: absolute;
  width: 28px;
  height: 4px;
  background: orange;
  border-radius: 2px;
  transition: transform 0.3s, background 0.3s;
}
.close-bar:first-child {
  transform: rotate(45deg);
}
.close-bar:last-child {
  transform: rotate(-45deg);
}
.close-menu:hover .close-bar {
  background: #fff;
}

/* Menú mobile vertical */
.nav-menu-mobile {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;
  align-items: center;
  margin-top: 60px;
  padding: 0;
}
.nav-menu-mobile li a {
  color: orange;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-menu-mobile li a:hover {
  color: #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .nav-menu-desktop {
    display: none;
  }
  .burger {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu,
  .burger {
    display: none !important;
  }
}

/* =========================
   ANIMACIÓN
========================= */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Íconos sociales en header */
.nav-social {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.nav-social a img {
    filter: grayscale(1) brightness(2);
    transition: filter 0.3s, transform 0.3s;
}
.nav-social a:hover img {
    filter: none;
    transform: scale(1.15) rotate(-8deg);
}

/* =========================
   HERO SECTION
========================= */
/* HERO ANIMADO EQUIPO SANTILLÁN */
/* Mobile first */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 60vh;
  overflow: hidden;
  background: #181818;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(.4,2,.6,1);
  background: #181818;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.hero-img {
  width: 100%;
  height: 45vh;
  object-fit: cover;
  object-position: center;
  display: block;
  border: none;
  margin: 0;
  background: #222;
}
.hero-content {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 90%;
  max-width: 420px;
  transform: translate(-50%, -50%);
  background: rgba(24,24,24,0.82);
  border-radius: 1rem;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  box-shadow: 0 4px 32px #000a;
  text-align: center;
}
.hero-content h1, .hero-content h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.hero-content h1 .highlight {
  color: #FF8C00;
  text-shadow: 1px 1px 8px #000a;
}
.hero-content p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.hero-cta {
  display: inline-block;
  background: linear-gradient(90deg, #FF8C00, #DC143C);
  color: #fff;
  font-weight: bold;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 16px #0007;
  transition: background 0.3s, transform 0.3s;
  border: none;
  cursor: pointer;
}
.hero-cta:hover, .hero-cta:focus {
  background: linear-gradient(90deg, #DC143C, #FF8C00);
  transform: scale(1.06);
}
.hero-cta.alt {
  background: linear-gradient(90deg, #25d366, #128c7e);
}
.hero-cta.alt:hover, .hero-cta.alt:focus {
  background: linear-gradient(90deg, #128c7e, #25d366);
}

/* Controles */
.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 0.5rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.7rem;
  z-index: 10;
}
.hero-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff3;
  border: 2px solid #FF8C00;
  transition: background 0.3s, border 0.3s;
  cursor: pointer;
  outline: none;
}
.hero-dot.active {
  background: #FF8C00;
  border: 2px solid #DC143C;
}

/* Responsive */
@media (min-width: 600px) {
  .hero-img {
    height: 60vh;
  }
  .hero-content {
    max-width: 540px;
    padding: 2.5rem 2rem 2rem 2rem;
  }
  .hero-content h1, .hero-content h2 {
    font-size: 2.6rem;
  }
}
@media (min-width: 900px) {
  .hero-slider {
    min-height: 80vh;
  }
  .hero-img {
    height: 80vh;
  }
  .hero-content {
    max-width: 650px;
    padding: 3rem 2.5rem 2.5rem 2.5rem;
  }
  .hero-content h1, .hero-content h2 {
    font-size: 3.2rem;
  }
}

/* =========================
   SECCIONES PRINCIPALES
========================= */
section {
    padding: 3rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 32px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s;
}
section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   ABOUT SECTION
========================= */
.about {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #232323 70%, var(--colordregade) 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px #0005;
    padding: 2.5rem 2rem;
    margin: 2rem auto;
    max-width: 1100px;
}
.about-imgs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    flex: 0 0 260px;
}
.about-imgs img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    border: 4px solid var(--naranja);
    box-shadow: 0 4px 16px #000a;
    background: #fff1;
    transition: transform 0.3s;
}
.about-imgs img:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 8px 32px var(--naranja2);
}
.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-content h2 {
    font-family: 'Oswald', Arial, sans-serif;
    color: var(--naranja);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}
.about-content p {
    font-size: 1.15rem;
    color: var(--blanco);
    margin-bottom: 1rem;
}

/* =========================
   PROGRAMS SECTION
========================= */
.programs {
    background: #232323;
    border-radius: 18px;
    box-shadow: 0 4px 24px #0003;
}
.programs h2 {
    color: var(--naranja);
    font-family: 'Oswald', Arial, sans-serif;
    margin-bottom: 1.5rem;
}
.programs ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding: 0;
    list-style: none;
}
.programs li {
    display: flex;
    align-items: center;
    background: linear-gradient(140deg, #222 70%, var(--colordregade) 100%);
    color: var(--blanco);
    padding: 1.2rem 1.5rem;
    border-radius: 14px;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 220px;
    box-shadow: 0 2px 12px #0005;
    transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
    cursor: pointer;
    position: relative;
    
}
.programs li img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 20px;
    border: 3px solid var(--naranja);
    background: #fff;
    box-shadow: 0 4px 16px #0005;
    transition: transform 0.3s;
}
.programs li:hover {
    background: linear-gradient(120deg, var(--naranja), var(--colordregade2));
    color: var(--negro);
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 8px 24px var(--rojo2);
}

/* =========================
   GALLERY SECTION
========================= */
.gallery {
    background: #232323;
    border-radius: 18px;
    box-shadow: 0 4px 24px #0003;
}
.gallery h2 {
    color: var(--naranja);
    font-family: 'Oswald', Arial, sans-serif;
    margin-bottom: 1.5rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.gallery-grid img,
.gallery-grid video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 12px #0007;
    cursor: pointer;
    transition: transform var(--trans), box-shadow var(--trans);
    object-fit: cover;
    aspect-ratio: 4/3;
}
.gallery-grid img:hover,
.gallery-grid video:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px var(--naranja2);
}

/* =========================
   FAQ SECTION
========================= */
.faq {
    background: #232323;
    border-radius: 18px;
    box-shadow: 0 4px 24px #0003;
}
.faq h2 {
    color: var(--naranja);
    font-family: 'Oswald', Arial, sans-serif;
    margin-bottom: 1.5rem;
}
.accordion {
    max-width: 700px;
    margin: 0 auto;
}
.accordion-item {
    background: #222;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px #0005;
    overflow: hidden;
    transition: box-shadow var(--trans);
}
.accordion-item h3 {
    margin: 0;
    padding: 1rem 1.5rem;
    cursor: pointer;
    background: linear-gradient(90deg, var(--naranja) 60%, var(--colordregade2) 100%);
    color: var(--negro);
    font-size: 1.1rem;
    font-family: 'Oswald', Arial, sans-serif;
    transition: background var(--trans), color var(--trans);
    position: relative;
}
.accordion-item h3::after {
    content: '+';
    float: right;
    font-size: 1.3rem;
    transition: transform var(--trans);
}
.accordion-item.active h3::after {
    content: '-';
    transform: rotate(180deg);
}
.accordion-item p {
    max-height: 0;
    overflow: hidden;
    background: #181818;
    color: var(--blanco);
    padding: 0 1.5rem;
    transition: max-height 0.5s cubic-bezier(.4,2,.6,1), padding 0.5s;
}
.accordion-item.active p {
    max-height: 200px;
    padding: 1rem 1.5rem;
}

/* =========================
   CONTACTO DIRECTO
========================= */
.contact-directo {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0 1.5rem 0;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #181818;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 12px #0005;
    transition: transform 0.3s, box-shadow 0.3s;
}
.contact-item:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 8px 32px var(--naranja2);
}
.contact-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--naranja);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
}
.contact-link:hover img {
    filter: none;
}



/* Botones de contacto con hover de marca y transición suave */
/* Fondo oscuro por defecto, texto blanco, bordes redondeados, sombra sutil */

.contact-btn {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 1.5rem;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 12px #0005;
  transition: 
    background 0.3s cubic-bezier(.4,2,.6,1),
    box-shadow 0.3s cubic-bezier(.4,2,.6,1),
    color 0.3s;
  outline: none;
  margin: 0.5rem;
}

/* Gmail: rojo */
.contact-btn.gmail:hover,
.contact-btn.gmail:focus {
  background: #D14836;
  color: #fff;
  box-shadow: 0 0 16px 4px #D1483680;
}

/* WhatsApp: verde */
.contact-btn.whatsapp:hover,
.contact-btn.whatsapp:focus {
  background: #25D366;
  color: #fff;
  box-shadow: 0 0 16px 4px #25D36680;
}

/* Instagram: gradiente púrpura a naranja */
.contact-btn.instagram:hover,
.contact-btn.instagram:focus {
  background: linear-gradient(90deg, #C13584 0%, #F77737 100%);
  color: #fff;
  box-shadow: 0 0 16px 4px #C1358480;
}

/* =========================
   TESTIMONIOS SLIDER
========================= */
/* SECCIÓN DE TESTIMONIOS */

.testimonios {
  background: #181818;
  padding: 60px 0;
  color: #fff;
  text-align: center;
}

.testimonios-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonios-titulo {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.testimonios-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

/* Estilos para cada testimonio */
.testimonio {
  background: #222;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  max-width: 500px;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonio.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Imagen en cada testimonio */
.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #FF8C00;
}

/* Texto */
.testimonio-texto {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.5;
}
.testimonio-autor {
  font-size: 1rem;
  font-weight: bold;
  color: #FF8C00;
}

/* Responsive: en pantallas mayores, mostrar testimonios en fila */
@media screen and (min-width: 768px) {
  .testimonios-wrapper {
    flex-direction: row;
    justify-content: center;
  }
}
/* =========================
   FOOTER
========================= */
footer {
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
    background: #181818;
    color: var(--blanco);
    font-size: 1rem;
    border-top: 2px solid var(--naranja);
    margin-top: 2rem;
}
footer .social-icons {
    margin: 1rem 0 0 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
footer .social-icons a {
    color: var(--naranja);
    font-size: 1.5rem;
    transition: color var(--trans), transform var(--trans);
    text-decoration: none;
}
footer .social-icons a:hover {
    color: var(--rojo);
    transform: scale(1.2) rotate(-8deg);
}
footer .footer-links {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}
footer .footer-links a {
    color: var(--blanco);
    text-decoration: none;
    font-size: 1rem;
    transition: color var(--trans);
}
footer .footer-links a:hover {
    color: var(--naranja);
}

/* =========================
   FLOATING WHATSAPP BUTTON
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(90deg, #25d366, #128c7e);
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 24px #0007;
    z-index: 2000;
    transition: transform var(--trans), box-shadow var(--trans);
}
.whatsapp-float:hover {
    transform: scale(1.12) rotate(-8deg);
    box-shadow: 0 8px 32px #25d366;
}

/* =========================
   MEDIA QUERIES
========================= */
@media (max-width: 900px) {
    /* Header y nav */
    .nav-row, .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        min-height: 48px;
        padding: 0 1rem;
        position: relative;
    }
    .logo-link {
        flex: 1;
        justify-content: flex-start;
        margin-right: 0;
    }
    .logo-header {
        height: 32px;
    }
    .burger {
        display: flex;
        width: 34px;
        height: 34px;
        position: static;
        margin-left: 0;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #181818;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 4.5rem 0 2rem 0;
        box-shadow: 0 8px 32px #000a;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s, opacity 0.4s;
        z-index: 1200;
        height: 100vh;
        justify-content: flex-start;
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    .nav-social {
        display: none;
    }
    .nav-social-mobile {
        display: flex !important;
        justify-content: center;
        gap: 2rem;
        margin-top: 2rem;
        width: 100%;
    }
    .icono-instagram,
    .icono-whatsapp {
        font-size: 2.2rem;
        margin: 0 1rem;
    }
    

    /* About y programs */
    .about {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0.5rem;
    }
    .about-imgs {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    .about-imgs img {
        width: 140px;
        height: 140px;
    }
    .programs ul {
        flex-direction: column;
        align-items: center;
    }
    .testimonios-track {
        gap: 1rem;
    }
    .testimonio {
        min-width: 260px;
        max-width: 260px;
        padding: 1.2rem 0.7rem 0.7rem 0.7rem;
    }
}

@media (max-width: 700px) {
    .contact-directo {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .logo-header, .logo-footer {
        height: 36px;
    }
    .sticky-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    section {
        padding: 2rem 0.5rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        bottom: 12px;
        right: 12px;
    }
    .icono-instagram,
    .icono-whatsapp {
        font-size: 20px;
        margin: 0 0.3rem;
    }

    /* Botón Burger: solo visible en mobile */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1200;
    transition: color 0.3s;
}
.burger span {
    display: block;
    height: 4px;
    width: 28px;
    background: var(--naranja);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Animación de cruz al abrir el menú */
.burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Solo mostrar burger en mobile */
@media (max-width: 900px) {
    .burger {
        display: flex;
    }
}

/* Ocultar burger en desktop */
@media (min-width: 901px) {
    .burger {
        display: none !important;
    }
}
}

/* Oculta los íconos sociales del menú normal en mobile */
.nav-social-mobile {
    display: none;
}

/* =========================
   ANIMACIONES
========================= */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-40px);}
    to { opacity: 1; transform: translateY(0);}
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8);}
    to { opacity: 1; transform: scale(1);}
}

.logo-footer {
    height: 100px;
    width: auto;
    display: block;
    margin: 0 auto 0.5rem auto;
}

/* Si NO usás Tailwind, agregá este CSS */
/* Servicios Boxeo - Responsive y moderno */
.servicios-boxeo {
  background: transparent;
  padding: 3rem 0;
}
.servicios-boxeo h2 {
  margin-bottom: 2.5rem;
}
.servicio-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 24px #0001;
  padding: 2rem 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.servicio-card:hover {
  box-shadow: 0 8px 32px #ff8c0033;
  transform: translateY(-6px) scale(1.03);
}
.servicio-card img {
  width: 80px;
  height: 80px;
  border-radius: 0.75rem;
  object-fit: cover;
  margin-bottom: 1rem;
}
.servicio-card h3 {
  font-size: 1.15rem;
  font-weight: bold;
  color: #181818;
  margin-bottom: 0.5rem;
}
.servicio-card p {
  color: #444;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .servicios-boxeo .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .servicios-boxeo .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* SECCIÓN DE BENEFICIOS EN CARDS OSCURAS Y MODERNAS */
/* filepath: c:\Users\Lucas Ochoa\Desktop\Equipo santillan\style.css */

.beneficios-boxeo {
  background: #181818;
  padding: 56px 0;
}

.beneficios-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.beneficios-titulo {
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.beneficios-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.card-beneficio {
  background: #222;
  border-radius: 24px;
  box-shadow: 0 8px 40px #000a;
  padding: 36px 24px 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  min-height: 420px;
  justify-content: flex-start;
}

.card-beneficio:hover {
  box-shadow: 0 12px 48px #ff8c0033, 0 0 0 4px #ff8c0033;
  transform: scale(1.05);
}

.card-img {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid #FF8C00;
  box-shadow: 0 4px 24px #0007;
  transition: box-shadow 0.3s;
}

.card-img:hover {
  box-shadow: 0 0 16px 4px #fff8;
}

.card-titulo {
  font-size: 1.3rem;
  font-weight: bold;
  color: #FF8C00;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
}

.card-texto {
  color: #e5e5e5;
  font-size: 1.08rem;
  line-height: 1.5;
}

.card-texto .resaltado {
  color: #fff;
  font-weight: bold;
}

/* Responsive: 2 columnas en tablet, 4 en desktop */
@media (min-width: 700px) {
  .beneficios-cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }
  .card-beneficio {
    width: calc(50% - 16px);
    min-width: 320px;
    max-width: 370px;
  }
}

@media (min-width: 1100px) {
  .beneficios-cards {
    flex-wrap: nowrap;
    gap: 32px;
  }
  .card-beneficio {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}

.footer-slogan .resaltado {
  color: #e53935;      /* Rojo */
  font-weight: bold;   /* Negrita */
  font-style: italic;  /* Cursiva */
}

/* Estilos para ubicación con ícono y bandera */
.ubicacion {
  display: flex;
  align-items: center;
  justify-content: center; /* Centra horizontalmente */
  gap: 0.6rem;
  color: #fff;
  font-size: 1.08rem;
  margin: 0.5rem 0;
  width: 100%;
  text-align: center;
}

.icon-ubicacion {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(54%) sepia(97%) saturate(749%) hue-rotate(-16deg) brightness(101%) contrast(101%);
  /* Naranja */
}

.icon-bandera {
  width: 28px;
  height: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 8px #0004;
  margin-left: 4px;
}

/* Botón ir arriba igual y alineado al de WhatsApp */

.btn-ir-arriba {
  position: fixed;
  right: 24px;
  bottom: 105px; /* Ajusta según el bottom del WhatsApp */
  z-index: 1200;
  background: #222;
  border-radius: 50%;
  box-shadow: 0 4px 16px #0008;
  padding: 0;
  width: 32px;      /* Igual tamaño que el WhatsApp */
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  border: 2px solid #FF8C00;
}

.btn-ir-arriba:hover {
  background: #FF8C00;
  box-shadow: 0 8px 32px #ff8c0080;
  transform: scale(1.08);
}

.btn-ir-arriba img {
  width: 16px;
  height: 16px;
  display: block;
  filter: invert(1);
}

/* WhatsApp flotante igual tamaño y alineación */
.whatsapp-float {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 1200;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 16px #0008;
  padding: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  display: block;
}