/* ============================================
   MATLOK COACH - Estilos Principales
   Diseño Futurista: Negro + Dorado (#FFD84A)
   Fuente: Inter, Sans-serif
   ============================================ */

/* === IMPORTAR FUENTE INTER === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* === VARIABLES CSS === */
:root {
    --primary-gold: #FFD84A;
    --primary-gold-dark: #E5C040;
    --primary-gold-light: #FFE066;
    --bg-dark: #0A0A0A;
    --bg-card: #111111;
    --bg-card-hover: #1A1A1A;
    --text-silver: #C0C0C0;
    --text-silver-light: #E0E0E0;
    --text-white: #FFFFFF;
    --text-muted: #666666;
    --border-dark: #222222;
    --border-gold: #FFD84A;
    --gradient-gold: linear-gradient(135deg, #FFD84A, #FFA500);
    --gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #111111 100%);
    --shadow-gold: 0 0 20px rgba(255, 216, 74, 0.3);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.5);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* === RESET Y BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-silver);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

/* Mejoras táctiles para móvil */
@media (max-width: 768px) {
    html {
        scroll-behavior: auto;
    }

    * {
        -webkit-tap-highlight-color: transparent;
    }

    /* Min-touch: 44x44px para botones y links */
    .nav-link,
    .nav-cta,
    .service-cta,
    .carousel-dot,
    .social-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Evitar zoom en inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="password"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* === HEADER / NAVEGACIÓN === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 216, 74, 0.1);
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-text span {
    color: var(--primary-gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-silver);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-gold);
    color: var(--bg-dark);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
    border: 2px solid var(--primary-gold);
}

.nav-cta:hover {
    background: transparent;
    color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Overlay del menú móvil */
.nav-overlay {
    display: none;
}

/* === HERO / CARRUSEL === */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
    transform: scale(1.05);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay oscuro futurista */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.2) 40%,
        rgba(10, 10, 10, 0.6) 70%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 2;
}

/* Efecto de líneas futuristas */
.carousel-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255, 216, 74, 0.03) 50%, transparent 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 216, 74, 0.02) 2px,
            rgba(255, 216, 74, 0.02) 4px
        );
    pointer-events: none;
}

/* Borde inferior dorado animado */
.carousel-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    width: 90%;
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(255, 216, 74, 0.3);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 0 0 20px rgba(255, 216, 74, 0.2); }
    to { text-shadow: 0 0 40px rgba(255, 216, 74, 0.5); }
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 2rem;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* Indicadores del carrusel */
.carousel-indicators {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-normal);
}

.carousel-dot.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(255, 216, 74, 0.6);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(255, 216, 74, 0.5);
    border-color: var(--primary-gold);
}

/* Flechas del carrusel */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 216, 74, 0.4);
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    color: var(--primary-gold);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    opacity: 0;
}

.hero-section:hover .carousel-arrow {
    opacity: 1;
}

.carousel-arrow:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
}

.carousel-arrow.prev {
    left: 30px;
}

.carousel-arrow.next {
    right: 30px;
}

/* === SECCIONES GENERALES === */
.section {
    padding: 100px 2rem;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 216, 74, 0.3);
    border-radius: 50px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--primary-gold);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-silver);
    max-width: 600px;
    margin: 0 auto;
}

/* === SERVICIOS === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.service-card {
    width: 100%;
    max-width: 400px;
    background: var(--bg-card);
    border: 2px solid rgba(255, 216, 74, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 216, 74, 0.2));
}

.service-icon .emoji {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(255, 216, 74, 0.3));
}

.service-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-silver);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Precio */
.service-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 216, 74, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 216, 74, 0.15);
}

.service-price .amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    display: inline;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 216, 74, 0.3);
}

.service-price .currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.service-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: inline;
    margin-left: 0.5rem;
}

/* Incluye */
.service-includes {
    margin-bottom: 1.5rem;
}

.service-includes-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.service-includes ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-silver-light);
}

.service-includes li .check {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Badge de urgencia */
.service-badge {
    text-align: center;
    padding: 0.8rem;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.2); }
    50% { box-shadow: 0 0 20px 5px rgba(255, 68, 68, 0.15); }
}

.service-badge span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FF4444;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Botón CTA del servicio */
.service-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-gold);
    color: var(--bg-dark);
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.service-cta:hover {
    background: var(--text-white);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(255, 216, 74, 0.5);
    transform: translateY(-2px);
}

.service-cta:hover::before {
    left: 100%;
}

/* === WHATSAPP FLOTANTE === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
    animation: floatPulse 3s ease-in-out infinite;
}

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 36px;
    height: 36px;
    fill: white;
}

/* === FOOTER === */
.footer {
    background: #050505;
    padding: 60px 2rem 30px;
    border-top: 1px solid rgba(255, 216, 74, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-brand h3 span {
    color: var(--primary-gold);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 350px;
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-social h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 216, 74, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-silver);
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-bottom span {
    color: var(--primary-gold);
}

/* === SECCIÓN EXPERIENCIA === */
.experience-section {
    background: var(--gradient-dark);
    text-align: center;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    padding: 2rem 1rem;
    border: 1px solid rgba(255, 216, 74, 0.15);
    border-radius: 16px;
    background: rgba(255, 216, 74, 0.03);
    transition: var(--transition-normal);
}

.stat-item:hover {
    border-color: var(--primary-gold);
    background: rgba(255, 216, 74, 0.08);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gold);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-silver);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* === LOADING SCREEN === */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 216, 74, 0.1);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* === RESPONSIVE === */

/* --- TABLET (hasta 1024px) --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 5px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        letter-spacing: 8px;
    }

    .section {
        padding: 80px 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-card {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }

    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* --- MÓVIL (hasta 768px) --- */
@media (max-width: 768px) {
    /* Header */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        padding: 2rem;
        transition: var(--transition-normal);
        border-left: 1px solid rgba(255, 216, 74, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-link {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .nav-menu .nav-cta {
        margin-top: 1rem;
        padding: 0.9rem 2.5rem;
        font-size: 0.95rem;
    }

    /* Hero */
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 5px;
    }

    .hero-content {
        bottom: 18%;
        padding: 0 1rem;
    }

    .hero-divider {
        width: 60px;
        margin-bottom: 1.5rem;
    }

    /* Carrusel */
    .carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        opacity: 0.7;
    }

    .carousel-arrow:hover {
        opacity: 1;
    }

    .carousel-arrow.prev { left: 10px; }
    .carousel-arrow.next { right: 10px; }

    .hero-section:hover .carousel-arrow {
        opacity: 0.7;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    /* Secciones */
    .section {
        padding: 60px 1.25rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-label {
        font-size: 0.65rem;
        letter-spacing: 3px;
        padding: 0.4rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    /* Servicios */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        max-width: 100%;
        padding: 2rem 1.5rem;
        margin: 0 auto;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon img {
        width: 70px;
        height: 70px;
    }

    .service-icon .emoji {
        font-size: 2.5rem;
    }

    .service-title {
        font-size: 1.15rem;
        letter-spacing: 1.5px;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .service-price {
        padding: 1.2rem 0.75rem;
    }

    .service-price .amount {
        font-size: 2.2rem;
    }

    .service-price .currency {
        font-size: 1rem;
    }

    .service-price .period {
        font-size: 0.85rem;
    }

    .service-includes li {
        font-size: 0.85rem;
    }

    .service-badge span {
        font-size: 0.75rem;
    }

    .service-cta {
        padding: 0.9rem;
        font-size: 0.9rem;
    }

    /* Experiencia */
    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    /* Footer */
    .footer {
        padding: 40px 1.25rem 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .footer-brand p {
        max-width: 100%;
        text-align: center;
    }

    .footer-links,
    .footer-social {
        text-align: center;
    }

    .footer-links ul {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    /* WhatsApp */
    .whatsapp-float {
        width: 58px;
        height: 58px;
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* --- MÓVIL PEQUEÑO (hasta 480px) --- */
@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
        height: 65px;
    }

    .logo img {
        height: 38px;
    }

    .logo-text {
        font-size: 1.15rem;
        letter-spacing: 0.5px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .hero-content {
        bottom: 22%;
    }

    .hero-divider {
        width: 50px;
        height: 2px;
    }

    .section {
        padding: 50px 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
    }

    .service-title {
        font-size: 1.05rem;
    }

    .service-price .amount {
        font-size: 2rem;
    }

    .experience-stats {
        gap: 0.75rem;
    }

    .stat-item {
        padding: 1.2rem 0.75rem;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
    }

    .footer-links h4,
    .footer-social h4 {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }
}

/* === UTILIDADES === */
.text-gold { color: var(--primary-gold); }
.text-white { color: var(--text-white); }
.text-silver { color: var(--text-silver); }
.bg-dark { background-color: var(--bg-dark); }
.bg-card { background-color: var(--bg-card); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
