/* ==================================================
   RESET GENERAL Y VARIABLES
   ================================================== */
:root {
    --primary-color: #FFA800;
    --primary-dark: #FF9800;
    --primary-light: #FFE082;
    --secondary-color: #4f46e5;
    --secondary-dark: #4338ca;
    --text-dark: #111827;
    --text-medium: #4A4A4A;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ==================================================
   ACCESIBILIDAD
   ================================================== */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    z-index: 9999;
    text-decoration: none;
}

.skip-to-main:focus {
    top: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==================================================
   ANIMACIONES
   ================================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes countriesScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==================================================
   HEADER SUPERIOR (TOP HEADER) - SIN BORDE
   ================================================== */
.top-header {
    background-color: var(--white);
    /* Línea naranja eliminada según solicitud */
}

.top-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==================================================
   REDES SOCIALES - SIN BORDES CIRCULARES
   ================================================== */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--black);
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Bordes circulares eliminados */
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 5px;
}

.social-icons a:hover,
.social-icons a:focus {
    color: var(--primary-color);
    /* Background y outline eliminados según solicitud */
    background-color: transparent;
    transform: scale(1.1);
    outline: none;
}

/* ==================================================
   BOTÓN PAGOS
   ================================================== */
.btn-pagos {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-pagos:hover,
.btn-pagos:focus {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    outline: none;
    border-color: var(--white);
}

/* ==================================================
   HEADER PRINCIPAL
   ================================================== */
.main-header {
    background-color: var(--white);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==================================================
   LOGO
   ================================================== */
.logo img {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* ==================================================
   MENÚ DE NAVEGACIÓN - SIN BORDES EN HOVER
   ================================================== */
.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav a {
    color: var(--text-medium);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 6px;
}

.nav a:hover,
.nav a:focus {
    color: var(--primary-color);
    background-color: var(--bg-light);
    /* Outline eliminado según solicitud */
    outline: none;
}

/* ==================================================
   ADMINISTRACIÓN (DROPDOWN)
   ================================================== */
.admin-dropdown {
    position: relative;
}

.admin-btn {
    background: var(--secondary-color);
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.admin-btn:hover,
.admin-btn:focus {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    outline: none;
    border-color: var(--white);
}

.admin-btn[aria-expanded="true"] {
    background: var(--secondary-dark);
}

.admin-menu {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    min-width: 200px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    z-index: 1001;
}

.admin-menu.active {
    display: block;
}

.admin-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--text-medium);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.admin-menu a:hover,
.admin-menu a:focus {
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    outline: none;
}

/* ==================================================
   BOTÓN HAMBURGUESA (MOBILE)
   ================================================== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition);
}

.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--bg-light);
    color: var(--primary-color);
    /* Outline eliminado según solicitud */
    outline: none;
}

/* ==================================================
   HERO SECTION
   ================================================== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeUp 1s ease forwards;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    display: inline-block;
    margin-top: 10px;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.6;
    animation: fadeUp 1.3s ease forwards;
    opacity: 0.9;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    animation: fadeUp 1.6s ease forwards;
    transition: var(--transition);
    min-width: 200px;
    border: 2px solid transparent;
}

.hero-cta:hover,
.hero-cta:focus {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    outline: none;
    border-color: var(--white);
}

/* ==================================================
   SCROLL INDICATOR - SIN BORDE
   ================================================== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    /* Borde y background eliminados */
    border-radius: 0;
}

.scroll-indicator:hover,
.scroll-indicator:focus {
    /* Background y outline eliminados */
    background: transparent;
    outline: none;
}

/* ==================================================
   BANNER PROMOCIONAL
   ================================================== */
.promo-banner {
    position: relative;
    width: 100%;
    min-height: 280px;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    padding: 60px 20px;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    opacity: 0.9;
}

.promo-content {
    position: relative;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    color: var(--white);
    width: 100%;
}

.promo-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.promo-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-hover);
}

.promo-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--white);
}

.promo-item p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.promo-cta:hover,
.promo-cta:focus {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    outline: none;
    border-color: var(--white);
}

.promo-cta.outline {
    background: transparent;
    border: 2px solid var(--primary-color);
}

.promo-cta.outline:hover,
.promo-cta.outline:focus {
    background: var(--primary-color);
}

/* ==================================================
   SERVICIOS - CARRUSEL
   ================================================== */
.services {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    overflow: hidden;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.services-header h2 {
    font-size: 32px;
    color: var(--text-dark);
}

.services-header p {
    color: var(--text-light);
}

.services-controls {
    display: flex;
    gap: 10px;
}

.services-controls button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--secondary-color);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.services-controls button:hover,
.services-controls button:focus {
    background: var(--secondary-dark);
    transform: scale(1.1);
    outline: none;
    border-color: var(--primary-color);
}

.services-controls button:disabled {
    background: #c7d2fe;
    cursor: not-allowed;
    transform: none;
}

.services-carousel {
    overflow: hidden;
    position: relative;
}

.services-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card {
    flex: 0 0 calc(25% - 15px);
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-cta:hover,
.service-cta:focus {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    outline: none;
    border-color: var(--primary-color);
}

/* ==================================================
   SECCIÓN: ELLOS CONFIARON EN NOSOTROS
   ================================================== */
.trusted {
    padding: 70px 20px;
    background: var(--bg-light);
    text-align: center;
}

.trusted h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.trusted-slider {
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
}

.trusted-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scrollLogos 30s linear infinite;
}

.trusted-track:hover {
    animation-play-state: paused;
}

.trusted-track img {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.trusted-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ==================================================
   SECCIÓN: QUIÉNES SOMOS
   ================================================== */
.about {
    padding: 80px 20px;
    background: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 16px;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ==================================================
   CONTADORES
   ================================================== */
.about-stats {
    max-width: 900px;
    margin: 60px auto 40px;
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat {
    flex: 1;
    min-width: 150px;
}

.stat span {
    font-size: 42px;
    font-weight: bold;
    color: var(--secondary-color);
    display: block;
}

.stat p {
    color: var(--text-light);
    margin-top: 5px;
    font-size: 16px;
}

/* ==================================================
   PAÍSES - BUCLE INFINITO
   ================================================== */
.countries {
    max-width: 900px;
    margin: 40px auto 0;
    overflow: hidden;
}

.countries-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: countriesScroll 25s linear infinite;
}

.countries-track:hover {
    animation-play-state: paused;
}

.countries-track img {
    height: 45px;
    opacity: 0.8;
    transition: var(--transition);
}

.countries-track img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ==================================================
   SECCIÓN: TESTIMONIOS
   ================================================== */
.testimonials {
    padding: 80px 20px;
    background: var(--bg-light);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header h2 {
    font-size: 32px;
    color: var(--text-dark);
}

.testimonials-header p {
    color: var(--text-light);
    margin-top: 10px;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.testimonials-controls button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--secondary-color);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.testimonials-controls button:hover,
.testimonials-controls button:focus {
    background: var(--secondary-dark);
    transform: scale(1.1);
    outline: none;
    border-color: var(--primary-color);
}

.testimonials-controls button:disabled {
    background: #c7d2fe;
    cursor: not-allowed;
    transform: none;
}

.testimonials-carousel {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 14px);
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #eee;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 60px;
    color: var(--primary-light);
    font-family: serif;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 20px;
    padding-top: 20px;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

/* ==================================================
   SECCIÓN: FRANQUICIAS
   ================================================== */
.franchise {
    padding: 90px 20px;
    background: linear-gradient(135deg, var(--secondary-color), #6366f1);
    color: var(--white);
}

.franchise-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.franchise-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.franchise-text p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.franchise-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--secondary-color);
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.franchise-cta:hover,
.franchise-cta:focus {
    background: #eef2ff;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    outline: none;
    border-color: var(--primary-color);
}

.franchise-image {
    position: relative;
    border-radius: calc(var(--border-radius) + 4px);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    height: 400px;
}

.franchise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.franchise-image:hover img {
    transform: scale(1.05);
}

/* ==================================================
   FOOTER - SIN BORDES EN HOVER
   ================================================== */
.footer {
    background: var(--text-dark);
    color: #9ca3af;
    padding: 30px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    font-size: 14px;
    color: #9ca3af;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
    padding: 4px 8px;
    border-radius: 4px;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    /* Outline eliminado según solicitud */
    outline: none;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover,
.footer-social a:focus {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    /* Outline eliminado según solicitud */
    outline: none;
}

/* ==================================================
   WHATSAPP FLOTANTE
   ================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: var(--shadow-hover);
    z-index: 9999;
    transition: var(--transition);
    border: 2px solid transparent;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    outline: none;
    border-color: var(--white);
}

/* ==================================================
   RESPONSIVE DESIGN
   ================================================== */

/* ================= MOBILE HEADER ================= */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 130px;
        right: 0;
        width: 280px;
        background-color: var(--white);
        padding: 30px 20px;
        display: none;
        flex-direction: column;
        gap: 15px;
        box-shadow: var(--shadow-hover);
        z-index: 999;
        height: calc(100vh - 130px);
        overflow-y: auto;
        border-top: 2px solid var(--primary-color);
    }

    .nav.active {
        display: flex;
    }

    .admin-menu {
        position: static;
        box-shadow: none;
        margin-top: 10px;
        width: 100%;
        background: var(--bg-light);
    }
    
    .logo img {
        height: 50px;
    }
}

/* ================= HERO RESPONSIVE ================= */
@media (max-width: 1024px) {
    .hero {
        height: 85vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-text {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-title br {
        display: none;
    }
    
    .hero-title span {
        display: block;
        margin-top: 5px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .hero-cta {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .scroll-indicator {
        bottom: 20px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 75vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-text {
        font-size: 15px;
    }
    
    .hero-cta {
        padding: 12px 24px;
        font-size: 14px;
        min-width: auto;
    }
}

/* ================= PROMO BANNER RESPONSIVE ================= */
@media (max-width: 900px) {
    .promo-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promo-item {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 40px 20px;
        min-height: auto;
    }
    
    .promo-item {
        padding: 20px;
    }
    
    .promo-item h3 {
        font-size: 20px;
    }
}

/* ================= SERVICIOS RESPONSIVE ================= */
@media (max-width: 1024px) {
    .service-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .service-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .service-card {
        flex: 0 0 100%;
    }
    
    .services-controls {
        align-self: flex-end;
    }
}

/* ================= TRUSTED RESPONSIVE ================= */
@media (max-width: 768px) {
    .trusted {
        padding: 50px 20px;
    }
    
    .trusted h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .trusted-track {
        gap: 40px;
    }

    .trusted-track img {
        height: 45px;
    }
}

/* ================= ABOUT RESPONSIVE ================= */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat {
        min-width: 100%;
    }
    
    .about-image {
        height: 300px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 20px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .stat span {
        font-size: 36px;
    }
}

/* ================= TESTIMONIOS RESPONSIVE ================= */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
        min-height: auto;
    }
    
    .testimonials {
        padding: 60px 20px;
    }
}

/* ================= FRANQUICIAS RESPONSIVE ================= */
@media (max-width: 900px) {
    .franchise-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .franchise-image {
        height: 300px;
        order: -1;
    }
}

@media (max-width: 600px) {
    .franchise {
        padding: 60px 20px;
    }
    
    .franchise-text h2 {
        font-size: 28px;
    }
    
    .franchise-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ================= FOOTER RESPONSIVE ================= */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* ================= WHATSAPP RESPONSIVE ================= */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 16px;
        right: 16px;
    }
}

/* ================= RESPETAR PREFERENCIAS DE MOVIMIENTO ================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator {
        animation: none;
    }
    
    .trusted-track,
    .countries-track {
        animation: none;
    }
}

/* ================= IMPRIMIR ESTILOS ================= */
@media print {
    .top-header,
    .main-header,
    .scroll-indicator,
    .whatsapp-float,
    .footer,
    .hero-cta,
    .promo-cta,
    .service-cta,
    .franchise-cta {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .hero {
        height: auto;
        color: #000;
        background: #fff;
    }
    
    .hero-overlay {
        display: none;
    }
    
    .hero-background {
        display: none;
    }
    
    a {
        color: #000;
        text-decoration: none;
    }
    
    .service-card,
    .testimonial-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}