/* ============================================
   VARIABLES CSS
   ============================================ */
:root {
    --primary-page: linear-gradient(135deg, #00AEEF 0%, #00C8F0 100%);
    --primary: #00AEEF;           
    --primary-dark: #0090C7;    
    --primary-light: #33BDEF;     
    --accent: #00AEEF;
    --bg-light: #F2F2F2;          
    --bg-white: #ffffff;
    --dark: #0a1929;
    --darker: #001e3c;
    --text: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --cyan: #00AEEF;
    --gradient-sky: linear-gradient(180deg, hsl(195 53% 79%) 0%, hsl(200 20% 98%) 100%);
    --gold-accent: #D4AF37;      
    --sand-accent: #F4E8D0;      


    --font-family: Lato, sans-serif;
    --font-title: Raleway, sans-serif;
    --transition: all 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);  
    color: var(--text);
    background-color: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gradient-text {
    background: var(--primary-page);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary);
}

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

.mt-5 {
    margin-top: 3rem;
}

/* ============================================
   NAVBAR 
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .brand-name {
    color: var(--dark);
}

.navbar.scrolled .brand-tagline {
    color: var(--text-light);
}

.navbar.scrolled .nav-link {
    color: var(--text) !important;
}

.navbar.scrolled .navbar-phone {
    color: var(--primary);
}

.navbar.scrolled .navbar-phone span {
    color: var(--text);
}

.navbar.scrolled .navbar-toggler i {
    color: var(--dark) !important;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    flex-shrink: 0;
}

.navbar-brand .logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}


/* ============================================
   RESPONSIVE - AJUSTES MÓVILES
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .navbar-brand .logo {
        height: 50px; /* Mantener visible en tablet */
    }
    
    .navbar.scrolled .navbar-brand .logo {
        height: 42px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar-brand .logo {
        height: 45px; /* Logo ligeramente más pequeño en móvil */
    }
    
    .navbar.scrolled .navbar-brand .logo {
        height: 38px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .navbar-brand .logo {
        height: 40px; /* Logo compacto en pantallas pequeñas */
    }
    
    .navbar.scrolled .navbar-brand .logo {
        height: 35px;
    }
}


.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: white;
    transition: var(--transition);
    font-family: var(--font-title);
}

.brand-tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    font-weight: 500;
    color: white;
    transition: var(--transition);
    font-family: var(--font-title);
}

.navbar-nav {
    display: flex;
    gap: 0;
    margin: 0;
    align-items: center;
}

.nav-item {
    list-style: none;
    font-family: var(--font-family);
}

.nav-link {
    color: white !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    border-radius: 0;
    transition: var(--transition);
    text-decoration: none;
}

.nav-link:hover {
    color: white !important;
    opacity: 0.8;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        flex-wrap: nowrap;
        align-items: center;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 0.5rem 0.55rem !important;
        font-size: 0.875rem;
    }
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

.navbar-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.5rem;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.navbar-phone:hover {
    opacity: 0.8;
}

.navbar-phone i {
    font-size: 1rem;
}

.navbar-btn {
    background: var(--primary-page);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-family: var(--font-family);
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.2;
}

.navbar-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.navbar-btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.navbar-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border-color: #fff;
    transform: translateY(-1px);
}

.navbar.scrolled .navbar-btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}

.navbar.scrolled .navbar-btn-outline:hover {
    background: rgba(0, 174, 239, 0.08);
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.navbar-toggler {
    border: none !important;
    padding: 0.5rem;
    color: white !important;
    background: transparent !important;
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler i {
    font-size: 1.5rem;
    color: white;
    transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 41, 0.3)),
                url('../images/hero_monde_2.jpg') center center / cover no-repeat;
    z-index: 0;
}

#inicio .hero-bg {
    background-image:
        linear-gradient(
            to top,
            rgba(5, 18, 36, 0.92) 0%,
            rgba(8, 28, 48, 0.45) 22%,
            rgba(10, 32, 52, 0.12) 45%,
            transparent 72%
        ),
        linear-gradient(
            to right,
            rgba(10, 25, 41, 0.82) 0%,
            rgba(10, 25, 41, 0.42) 32%,
            rgba(10, 25, 41, 0.12) 58%,
            transparent 78%
        ),
        url('../images/hero_monde_2.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-content {
    width: 100%;
    padding: 8rem 0 4rem;
}

.hero-text {
    color: white;
    max-width: 650px;
    text-align: left;
    font-family: var(--font-family);
}

#inicio.hero .hero-content {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1rem, 3vw, 2rem);
    padding-right: clamp(1rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}

#inicio.hero .hero-text {
    width: 100%;
    max-width: min(920px, 82vw);
    margin-left: 0;
    margin-right: auto;
}

#inicio.hero .hero-text h1 {
    font-size: clamp(2rem, 4.25vw, 3.8rem);
    margin-bottom: 1.125rem;
}

#inicio.hero .hero-buttons {
    margin-bottom: 1.25rem;
}

#inicio.hero .hero-stats {
    padding-top: 0.5rem;
    max-width: min(920px, 82vw);
    gap: clamp(1.5rem, 4vw, 2.75rem);
    width: 100%;
    margin-right: auto;
}

#inicio.hero::before {
    width: 100%;
    height: min(42vh, 320px);
    left: 0;
    background: linear-gradient(
        to top,
        rgba(0, 174, 239, 0.14) 0%,
        rgba(0, 180, 230, 0.06) 45%,
        transparent 100%
    );
    animation: none;
    transform: none;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

#inicio.hero::after {
    width: 100%;
    height: min(28vh, 220px);
    left: 0;
    background: linear-gradient(
        to top,
        rgba(4, 16, 32, 0.55) 0%,
        rgba(4, 16, 32, 0.18) 55%,
        transparent 100%
    );
    animation: none;
    transform: none;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.hero-titlee {
   font-family: var(--font-title);
}

.hero-titulo-rotativo {
    display: inline;
    transition: opacity 0.32s ease;
}

.hero-titulo-rotativo.hero-titulo-rotativo--fade {
    opacity: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 2.25rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-top: 2rem;
    max-width: 650px;
    font-family: var(--font-title);
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.scroll-indicator {
    display: none;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header.light {
    color: white;
}

.section-header.light .section-badge {
    background-color: rgba(23, 162, 184, 0.15);
    color: var(--primary);
    border-color: rgba(23, 162, 184, 0.3);
}

.section-header.light h2 {
    color: white;
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.8);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(23, 162, 184, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid rgba(23, 162, 184, 0.2);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-page);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.benefit-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   MODELS 
   ============================================ */
.models {
    padding: 5rem 0;
    background-color: white;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.model-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.model-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.model-card.featured {
    display: flex;
    flex-direction: column;
}

.model-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.model-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.model-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.model-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.model-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.model-specs span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.model-specs i {
    color: var(--primary);
    font-size: 0.875rem;
}

.model-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.model-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text);
    margin-bottom: 0.625rem;
}

.model-features li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    font-size: 1.25rem;
}

.btn-model {
    background: var(--primary-page);
    border: none;
    color: white;
    padding: 0.375rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    width: 100%;
    position: relative;
    z-index: 1;
    text-decoration: none;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
}

.btn-model:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
}

.btn-model:visited {
    color: white;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 2rem;
    border: 0.225px solid var(--primary);
    background-color: transparent;
    color: var(--primary);
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9375rem;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

/* ============================================
   PROCESS 
   ============================================ */
.process {
    padding: 5rem 0;
    background: var(--darker);
    color: white;
    position: relative;
    overflow: hidden;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step {
    position: relative;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background-color: rgba(23, 162, 184, 0.1);
    border: 2px solid rgba(23, 162, 184, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    font-size: 2rem;
    color: var(--primary);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
}

.step h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    padding: 5rem 0 4rem;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.tcarousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.tcarousel-viewport {
    overflow: hidden;
    flex: 1;
}

.tcarousel-track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.tc-card {
    flex-shrink: 0;
    background: white;
    border: 1px solid rgba(0, 174, 239, 0.13);
    border-radius: 14px;
    padding: 1.4rem 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tc-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, #00aeef, #00e5ff);
    border-radius: 3px 3px 0 0;
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.tc-card:hover::after { width: 100%; }

.tc-card::before {
    content: '';
    position: absolute;
    bottom: -50px; right: -50px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,174,239,0.09), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.tc-card:hover::before {
    opacity: 1;
    transform: scale(1.5);
}

.tc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 174, 239, 0.13);
    border-color: rgba(0, 174, 239, 0.28);
}

.tc-logo {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 174, 239, 0.15);
    background: #f5faff;
    flex-shrink: 0;
}
.tc-logo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}
.tc-card:hover .tc-logo img { transform: scale(1.07); }

.tc-stars { display: flex; gap: 0.15rem; }
.tc-stars i { color: #fbbf24; font-size: 0.76rem; }

.tc-text {
    color: var(--text, #4a5568);
    font-size: 0.86rem;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.tc-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: #00aeef;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tcarousel-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 174, 239, 0.3);
    background: white;
    color: #00aeef;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(0, 174, 239, 0.12);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.tcarousel-btn:hover {
    background: linear-gradient(135deg, #00aeef, #00c8f0);
    color: white;
    border-color: transparent;
    box-shadow: 0 0 16px rgba(0,174,239,0.35), 0 6px 18px rgba(0,174,239,0.2);
    transform: scale(1.1);
}
.tcarousel-btn:active { transform: scale(0.93); }
.tcarousel-btn:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.tcarousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.6rem;
}
.tcarousel-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(0, 174, 239, 0.22);
    border: none; cursor: pointer; padding: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.tcarousel-dot.active {
    width: 24px;
    border-radius: 4px;
    background: linear-gradient(90deg, #00aeef, #00e5ff);
    box-shadow: 0 2px 6px rgba(0, 174, 239, 0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
}

@media (max-width: 540px) {
    .tcarousel-wrapper { gap: 0.5rem; }
    .tcarousel-btn { width: 34px; height: 34px; }
}

/* ============================================
   CONTACT  
   ============================================ */
.contact {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0;
    background: #e6f4f8;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: rgba(23, 162, 184, 0.15);
    color: #0ea5b7;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid rgba(23, 162, 184, 0.2);
    margin-bottom: 1.5rem;
    font-family: var(--font-family);
    text-align: center;
}

.contact-info h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-title);
}

.contact-info h2 .gradient-text {
    color: #0ea5b7;
    font-size: 1em;
    display: inline;
}

.contact-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 520px;
    margin-bottom: 2.5rem;
    font-family: var(--font-family);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(23, 162, 184, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5b7;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
    font-family: var(--font-family);
}

.contact-item-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-family: var(--font-family);
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #e5eef3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2rem;
    font-family: var(--font-title);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font-family);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid #dde7ee;
    font-size: 0.95rem;
    font-family: var(--font-family);
    background-color: #ffffff;
    color: var(--text);
    transition: all 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aaab6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0ea5b7;
    box-shadow: 0 0 0 3px rgba(14, 165, 183, 0.15);
}

.form-group select {
    cursor: pointer;
}

.btn-submit {
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    border: none;
    background: linear-gradient(90deg, #0b7fab, #1fbec1);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.btn-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.bg-cross-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image: 
        linear-gradient(45deg, transparent 49%, #e5e7eb 49%, #e5e7eb 51%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, #e5e7eb 49%, #e5e7eb 51%, transparent 51%);
    background-size: 40px 40px;
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 0% 100%, #000 50%, transparent 90%);
    mask-image: radial-gradient(ellipse 80% 80% at 0% 100%, #000 50%, transparent 90%);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: #0a1929;
    color: white;
    padding: 4rem 0 2rem;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo .logo {
    height: 60px;      /* ⬅️ AJUSTA ESTE VALOR para cambiar el tamaño */
    width: auto;
    transition: var(--transition);
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.footer-brand-tagline {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0 0 1.5rem;
    line-height: 1.7;
}

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

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
    transition: var(--transition);
    display: block;
}

.footer-column a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item-footer {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-footer i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    margin: 0 !important;
    padding: 0 !important;
}

.contact-info a:hover {
    color: white;
    padding-left: 0 !important;
}

.contact-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    font-size: 1.75rem;
    animation: whatsappPulse 2s infinite;
}

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

.whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6),
                0 0 30px rgba(37, 211, 102, 0.4);
    animation: none;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover::before {
    transform: translate(-50%, -50%) scale(1.2);
}

.whatsapp-btn i {
    animation: iconBounce 2s infinite;
    position: relative;
    z-index: 1;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ============================================
   MEDIA QUERIES - TABLET 
   ============================================ */
@media (max-width: 991px) {
    /* Navbar responsive */
    .navbar {
        position: fixed !important;
        top: 0;
        width: 100%;
        z-index: 1060;
    }

    .navbar.scrolled .navbar-collapse {
        background-color: #fff !important;
    }

    .navbar .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        padding: 1rem 1.25rem;
        max-height: 90vh;
        overflow-y: auto;
    }

    .navbar .navbar-collapse .nav-item {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .navbar .navbar-collapse .nav-link {
        color: var(--dark) !important;
        padding: 0.75rem 0.5rem !important;
        display: block;
        font-size: 1.05rem;
    }

    .navbar .navbar-collapse .nav-link:hover {
        background-color: #f1f1f1;
        border-radius: 0.25rem;
        opacity: 1;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        margin-top: 1rem;
    }

    .navbar-actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .navbar-phone {
        width: 100%;
        justify-content: center;
        color: var(--dark) !important;
    }

    .navbar-phone i {
        color: var(--primary);
    }

    .navbar-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .navbar-toggler {
        border: none;
        padding: 0;
        background: transparent;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Grids responsive */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

/* ============================================
   MEDIA QUERIES - MOBILE 
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Hero */
    .hero-content {
        padding: 6rem 0 3rem;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    #inicio.hero .hero-content {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #inicio.hero .hero-text {
        max-width: 100%;
    }

    #inicio.hero .hero-text h1 {
        font-size: clamp(1.65rem, 7.6vw, 2.3rem);
        line-height: 1.04;
        margin-bottom: 0.75rem;
    }

    #inicio.hero .hero-text p {
        font-size: 0.96rem;
        line-height: 1.45;
        margin-bottom: 1rem;
        max-width: 34ch;
        margin-left: auto;
        margin-right: auto;
        text-wrap: pretty;
    }

    #inicio.hero .badge {
        margin-bottom: 1.1rem;
        font-size: 0.82rem;
        padding: 0.42rem 0.85rem;
    }

    #inicio.hero .hero-buttons {
        margin-bottom: 0.65rem;
        gap: 0.65rem;
    }

    #inicio.hero .hero-stats {
        padding-top: 0.2rem;
        max-width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.8rem;
    }

    #inicio.hero .stat {
        flex-direction: column;
        align-items: center;
        gap: 0.35rem;
        text-align: center;
    }

    #inicio.hero .stat-number {
        font-size: clamp(2rem, 6vw, 2.35rem);
        margin-bottom: 0.2rem;
    }

    #inicio.hero .stat-label {
        font-size: 0.86rem;
        line-height: 1.15;
    }

    #inicio.hero .stat-icon {
        width: 40px;
        height: 40px;
        border-radius: 11px;
    }

    #inicio.hero .stat-icon--pool svg {
        width: 31px;
        height: 24px;
    }

    #inicio.hero .stat-icon--wrench i,
    #inicio.hero .stat-icon--shield i {
        font-size: 17px;
    }

    #inicio.hero::before {
        height: min(26vh, 170px);
    }

    #inicio.hero::after {
        height: min(20vh, 130px);
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    #inicio.hero .btn-primary,
    #inicio.hero .btn-secondary {
        padding: 0.58rem 1rem;
        font-size: 0.93rem;
    }

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

    .stat {
        text-align: center;
    }

    /* Grids móvil */
    .benefits-grid,
    .models-grid,
    .process-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-btn {
        width: 56px;
        height: 56px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
    }

    /* Contact responsive */
    .contact {
        padding: 4rem 0;
    }

    .contact-wrapper {
        gap: 2.5rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-info p {
        font-size: 1rem;
    }
}

/* ============================================
   MEDIA QUERIES - MOBILE SMALL 
   ============================================ */
@media (max-width: 480px) {
    #inicio.hero .hero-content {
        padding-top: 5.1rem;
        padding-bottom: 1.55rem;
    }

    #inicio.hero .hero-text h1 {
        font-size: clamp(1.45rem, 8.8vw, 2rem);
    }

    #inicio.hero .hero-text p {
        font-size: 0.9rem;
        line-height: 1.4;
        max-width: 30ch;
    }

    #inicio.hero .badge {
        font-size: 0.78rem;
        padding: 0.38rem 0.72rem;
    }

    #inicio.hero .hero-stats {
        gap: 0.55rem;
    }

    #inicio.hero .stat-number {
        font-size: 1.75rem;
    }

    #inicio.hero .stat-label {
        font-size: 0.75rem;
    }

    #inicio.hero .stat-icon {
        width: 34px;
        height: 34px;
        border-radius: 9px;
    }

    #inicio.hero .stat-icon--pool svg {
        width: 26px;
        height: 20px;
    }

    #inicio.hero .stat-icon--wrench i,
    #inicio.hero .stat-icon--shield i {
        font-size: 15px;
    }

    #inicio.hero::before {
        height: min(22vh, 130px);
    }

    #inicio.hero::after {
        height: min(17vh, 105px);
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.625rem 1.5rem;
        font-size: 0.9375rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .benefit-item,
    .model-card,
    .testimonial-card,
    .contact-form-wrapper {
        padding: 1.25rem;
    }

    .navbar .container {
        padding: 0 1rem;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .brand-tagline {
        font-size: 0.7rem;
    }

    /* Contact small */
    .contact {
        padding: 3rem 0;
    }

    .contact-info h2 {
        font-size: 1.75rem;
    }

    .contact-info .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-form-wrapper h3 {
        font-size: 1.25rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 0.85rem;
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .contact-items {
        gap: 1.5rem;
    }

    .contact-item-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    /* Footer small */
    footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-logo {
        margin-bottom: 1rem;
    }

    .footer-brand-name {
        font-size: 1.1rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-column a {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .contact-item-footer {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .contact-item-footer i {
        font-size: 1rem;
    }

    .contact-info a {
        font-size: 0.9rem;
    }

    .contact-info span {
        font-size: 0.8rem;
    }

    .footer-bottom-text {
        font-size: 0.85rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .whatsapp-btn {
        animation: none;
    }
    
    .whatsapp-btn i {
        animation: none;
    }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    .hero,
    .scroll-indicator,
    footer,
    .whatsapp-btn {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}


/* ============================================
   NOSOTROS 
   ============================================ */

.nosotros-hero .hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.nosotros-hero .hero-text p {
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto;
}

/* Secciones de Nosotros - Layout General */
.nosotros-section {
    padding: 6rem 0;
}

.nosotros-section.bg-white {
    background: white;
}

.nosotros-section.bg-light {
    background: #f8f9fa;
}

.nosotros-section.bg-dark {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    color: white;
}

/* Grid de 2 columnas para Nosotros */
.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Imágenes de Nosotros */
.nosotros-image-wrapper {
    position: relative;
}

.nosotros-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.nosotros-section.bg-dark .nosotros-image {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.nosotros-image img {
    width: 100%;
    height: auto;
    display: block;
}

.nosotros-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.nosotros-section.bg-dark .nosotros-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
}

.nosotros-section.bg-dark .nosotros-content h2 .highlight {
    color: var(--primary);
}

.nosotros-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.nosotros-content p:last-child {
    margin-bottom: 0;
}

.nosotros-section.bg-dark .nosotros-content p {
    color: rgba(255, 255, 255, 0.9);
}

.nosotros-content p strong {
    font-weight: 700;
}

.nosotros-section.bg-dark .section-badge {
    background-color: rgba(23, 162, 184, 0.15);
    color: var(--primary);
    border-color: rgba(23, 162, 184, 0.3);
}

.mision-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.mision-card,
.vision-card {
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(23, 162, 184, 0.1);
    position: relative;
    overflow: hidden;
}

.mision-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.vision-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff3e0 100%);
    border-color: rgba(255, 152, 0, 0.1);
}

/* Decoración circular de fondo */
.mision-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 0;
}

.mision-card::before {
    background: rgba(23, 162, 184, 0.05);
}

.vision-card::before {
    background: rgba(255, 152, 0, 0.05);
}

.mision-card-content,
.vision-card-content {
    position: relative;
    z-index: 1;
}

.mision-icon,
.vision-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.mision-icon {
    background: var(--primary-page);
    box-shadow: 0 8px 20px rgba(23, 162, 184, 0.3);
}

.vision-icon {
    background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

.mision-card h3,
.vision-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.mision-card p,
.vision-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* CTA Final de Nosotros */
.nosotros-cta {
    padding: 5rem 0;
    background: var(--darker);
    color: white;
    text-align: center;
}

.nosotros-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.nosotros-cta h2 .highlight {
    color: var(--primary);
}

.nosotros-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.nosotros-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nosotros-cta .btn-primary,
.nosotros-cta .btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-decoration: none;
}

/* ============================================
   NOSOTROS - RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .nosotros-grid {
        gap: 3rem;
    }

    .mision-vision-grid {
        gap: 2rem;
    }

    .mision-card,
    .vision-card {
        padding: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nosotros-section {
        padding: 4rem 0;
    }

    .nosotros-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .nosotros-content h2 {
        font-size: 2rem;
    }

    .nosotros-section.bg-dark .nosotros-content h2 {
        font-size: 2rem;
    }

    .nosotros-content p {
        font-size: 1rem;
    }

    .mision-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mision-card,
    .vision-card {
        padding: 2rem;
    }

    .mision-icon,
    .vision-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .mision-card h3,
    .vision-card h3 {
        font-size: 1.5rem;
    }

    .mision-card p,
    .vision-card p {
        font-size: 1rem;
    }

    .nosotros-cta {
        padding: 4rem 0;
    }

    .nosotros-cta h2 {
        font-size: 2rem;
    }

    .nosotros-cta p {
        font-size: 1rem;
    }

    .nosotros-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .nosotros-cta .btn-primary,
    .nosotros-cta .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .nosotros-section {
        padding: 3rem 0;
    }

    .nosotros-grid {
        gap: 2rem;
    }

    .nosotros-content h2 {
        font-size: 1.75rem;
    }

    .nosotros-hero .hero-text h1 {
        font-size: 2rem;
    }

    .nosotros-hero .hero-text p {
        font-size: 1.1rem;
    }

    .mision-card,
    .vision-card {
        padding: 1.5rem;
    }

    .mision-icon,
    .vision-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .mision-card h3,
    .vision-card h3 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .mision-card p,
    .vision-card p {
        font-size: 0.95rem;
    }

    .nosotros-cta h2 {
        font-size: 1.75rem;
    }

    .nosotros-cta .btn-primary,
    .nosotros-cta .btn-secondary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
   MODELOS 
   ============================================ */

.modelos-hero {
    min-height: 60vh;
}

.modelos-hero .hero-content {
    padding: 6rem 0 3rem;
}

.modelos-hero .hero-text {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.modelos-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.modelos-header {
    margin-bottom: 4rem;
}

.modelos-badge {
    background: rgba(23, 162, 184, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(23, 162, 184, 0.2);
}

.modelos-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.modelos-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de Modelos */
.modelos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.modelo-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(23, 162, 184, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modelo-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(23, 162, 184, 0.2);
    border-color: rgba(23, 162, 184, 0.3);
}

.modelo-image-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.modelo-image-wrapper.mexico {
    background: linear-gradient(135deg, #e1f5fe 0%, #b3e5fc 100%);
}

.modelo-image-wrapper.especial {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.modelo-image-wrapper.infantil {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.modelo-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modelo-image-circle {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(23, 162, 184, 0.2);
    position: relative;
    overflow: hidden;
}

.modelo-image-circle img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
}

.modelo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(23, 162, 184, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Contenido del Modelo */
.modelo-content {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.modelo-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--primary-page);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
    font-style: italic;
    letter-spacing: 0.5px;
}

.modelo-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1.75rem;
}

.modelo-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.modelo-tag {
    background: rgba(23, 162, 184, 0.1);
    color: var(--primary);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.modelo-tag i {
    margin-right: 0.3rem;
}

/* Botón del Modelo */
.modelo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1.75rem;
    background: var(--primary-page);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
    font-size: 0.95rem;
}

.modelo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
    color: white;
}

.modelos-section .modelo-btn {
    display: flex;
    width: 100%;
    max-width: 100%;
    border: none;
    font-family: inherit;
    cursor: pointer;
}

.modelo-modal-carousel .carousel-item img {
    max-height: 420px;
    object-fit: contain;
    background: #f4f8fb;
}

.modelo-modal-carousel .carousel-caption {
    position: static;
    padding: 1rem 0 0;
    color: var(--text);
    text-align: center;
}

.modelo-modal-carousel .carousel-caption h6 {
    font-weight: 700;
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.modelo-modal-carousel .carousel-caption p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.modelo-modal-carousel .carousel-control-prev,
.modelo-modal-carousel .carousel-control-next {
    width: 10%;
    filter: none;
    opacity: 1;
}

.modelo-modal-carousel .carousel-control-prev-icon,
.modelo-modal-carousel .carousel-control-next-icon {
    background-color: rgba(23, 162, 184, 0.9);
    border-radius: 50%;
    background-size: 60% 60%;
}

/* ============================================
   BENEFICIOS 
   ============================================ */

.beneficios-section {
    padding: 6rem 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.beneficios-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

.beneficios-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    filter: blur(80px);
}

.beneficios-container {
    position: relative;
    z-index: 1;
}

/* Header de Beneficios */
.beneficios-header {
    margin-bottom: 4rem;
}

.beneficios-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.beneficios-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.beneficios-header h2 span {
    color: white;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    display: inline-block;
}

.beneficios-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.beneficios-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.beneficio-main-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.beneficio-icon-main {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.beneficio-icon-main i {
    font-size: 1.8rem;
    color: white;
}

.beneficio-main-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.beneficio-main-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.beneficios-grid-secondary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.beneficio-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.beneficio-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.beneficio-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.beneficio-icon i {
    font-size: 1.5rem;
    color: white;
}

.beneficio-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.beneficio-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ============================================
   VIDEO SECTION
   ============================================ */

.video-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.video-badge {
    background: rgba(23, 162, 184, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(23, 162, 184, 0.2);
}

.video-wrapper {
    max-width: 1000px;
    margin: 3rem auto 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(23, 162, 184, 0.15);
    border: 3px solid rgba(23, 162, 184, 0.1);
}

.video-container {
    position: relative;
    padding-top: 56.25%;
    background: var(--primary-page);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   CTA MODELOS
   ============================================ */

.modelos-cta {
    padding: 5rem 0;
    background: var(--darker);
    color: white;
    text-align: center;
}

.modelos-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.modelos-cta h2 .highlight {
    color: var(--primary);
}

.modelos-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.modelos-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modelos-cta .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-decoration: none;
}

/* ============================================
   MODELOS - RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .modelos-grid {
        gap: 2rem;
    }

    .beneficios-grid-main,
    .beneficios-grid-secondary {
        grid-template-columns: repeat(2, 1fr);
    }

    .beneficio-main-card,
    .beneficio-card {
        padding: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .modelos-section {
        padding: 4rem 0;
    }

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

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

    .modelo-image-wrapper {
        height: 240px;
    }

    .modelo-image-circle {
        width: 160px;
        height: 160px;
    }

    .modelo-image-circle img {
        width: 140px;
        height: 140px;
    }

    .modelo-content {
        padding: 1.75rem 1.5rem;
    }

    .modelo-content h3 {
        font-size: 1.4rem;
    }

    .beneficios-section {
        padding: 4rem 0;
    }

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

    .beneficios-grid-main,
    .beneficios-grid-secondary {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .beneficio-main-card {
        padding: 2rem;
    }

    .beneficio-card {
        padding: 1.75rem;
    }

    .video-section {
        padding: 4rem 0;
    }

    .video-wrapper {
        margin-top: 2rem;
    }

    .modelos-cta {
        padding: 4rem 0;
    }

    .modelos-cta-buttons {
        flex-direction: column;
    }

    .modelos-cta .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .modelos-section {
        padding: 3rem 0;
    }

    .modelos-hero .hero-content {
        padding: 5rem 0 2.5rem;
    }

    .modelo-image-wrapper {
        height: 220px;
    }

    .modelo-image-circle {
        width: 140px;
        height: 140px;
    }

    .modelo-image-circle img {
        width: 120px;
        height: 120px;
    }

    .modelo-content {
        padding: 1.5rem 1.25rem;
    }

    .modelo-content h3 {
        font-size: 1.3rem;
    }

    .modelo-content p {
        font-size: 0.9rem;
    }

    .modelo-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    .beneficios-section {
        padding: 3rem 0;
    }

    .beneficio-main-card {
        padding: 1.75rem;
    }

    .beneficio-icon-main {
        width: 55px;
        height: 55px;
    }

    .beneficio-icon-main i {
        font-size: 1.6rem;
    }

    .beneficio-main-card h3 {
        font-size: 1.2rem;
    }

    .beneficio-main-card p {
        font-size: 0.9rem;
    }

    .beneficio-card {
        padding: 1.5rem;
    }

    .beneficio-icon {
        width: 45px;
        height: 45px;
    }

    .beneficio-icon i {
        font-size: 1.3rem;
    }

    .beneficio-card h4 {
        font-size: 1.05rem;
    }

    .beneficio-card p {
        font-size: 0.9rem;
    }

    .video-section {
        padding: 3rem 0;
    }

    .modelos-cta {
        padding: 3rem 0;
    }

    .modelos-cta .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
   JACUZZIS 
   ============================================ */

.jacuzzis-hero {
    min-height: 65vh;
}

.jacuzzis-hero .hero-content {
    padding: 8rem 0 4rem;
}

.jacuzzis-hero .hero-text {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.jacuzzis-intro {
    padding: 6rem 0;
    background: white;
}

.jacuzzis-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.jacuzzis-intro-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.jacuzzis-intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.jacuzzis-intro-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.jacuzzis-intro-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Características de Jacuzzis */
.jacuzzis-caracteristicas {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.jacuzzis-caracteristicas::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(23, 162, 184, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.caracteristicas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.caracteristica-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.caracteristica-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

.caracteristica-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.3), rgba(23, 162, 184, 0.15));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.caracteristica-card:hover .caracteristica-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.4), rgba(23, 162, 184, 0.2));
}

.caracteristica-icon i {
    font-size: 2.2rem;
    color: white;
}

.caracteristica-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.caracteristica-card h4 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.caracteristica-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Testimonios Jacuzzis */
.jacuzzis-testimonios {
    padding: 6rem 0;
    background: #f8f9fa;
}

.testimonios-jacuzzis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonio-jacuzzi-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(23, 162, 184, 0.1);
}

.testimonio-jacuzzi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(23, 162, 184, 0.15);
}

.testimonio-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.testimonio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonio-jacuzzi-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonio-autor {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonio-autor h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.testimonio-autor span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================
   MODELOS DE JACUZZIS
   ============================================ */

.jacuzzis-modelos {
    padding: 6rem 0;
    background: white;
}

.modelos-toolbar {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    border: 1px solid rgba(23, 162, 184, 0.1);
}

.toolbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

/* Buscador */
.search-box {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    border: 2px solid rgba(23, 162, 184, 0.2);
    border-radius: 50px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
}

.search-box i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.1rem;
}

.filters-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.results-count {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    white-space: nowrap;
}

/* Filtros a la derecha */
.filters-right {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.6rem 1.25rem;
    background: white;
    border: 2px solid rgba(23, 162, 184, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn i {
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: var(--primary);
    background: rgba(23, 162, 184, 0.05);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.filter-btn.active i {
    color: white;
}

/* Dropdown de Capacidad */
.capacity-dropdown {
    position: relative;
}

.dropdown-toggle {
    padding: 0.6rem 1.25rem;
    background: white;
    border: 2px solid rgba(23, 162, 184, 0.2);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.capacity-dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    min-width: 200px;
    display: none;
    z-index: 100;
}

.capacity-dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 0.6rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-item:hover {
    background: rgba(23, 162, 184, 0.1);
}

.dropdown-item.active {
    background: rgba(23, 162, 184, 0.15);
    color: var(--primary);
    font-weight: 600;
}

/* Grid de Jacuzzis - Vista Compacta (única) */
.jacuzzis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.jacuzzis-grid.compact-view {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.jacuzzis-grid.compact-view .jacuzzi-card {
    font-size: 0.9rem;
}

.jacuzzis-grid.compact-view .jacuzzi-image {
    height: 180px;
}

.jacuzzis-grid.compact-view .jacuzzi-content {
    padding: 1.25rem;
}

.jacuzzis-grid.compact-view .jacuzzi-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.jacuzzis-grid.compact-view .jacuzzi-specs {
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.jacuzzis-grid.compact-view .jacuzzi-spec {
    font-size: 0.8rem;
    padding: 0.4rem;
}

/* Card de Jacuzzi */
.jacuzzi-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(23, 162, 184, 0.08);
    display: flex;
    flex-direction: column;
}

.jacuzzi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(23, 162, 184, 0.15);
    border-color: rgba(23, 162, 184, 0.2);
}

.jacuzzi-card.hidden {
    display: none;
}

.jacuzzi-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

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

.jacuzzi-card:hover .jacuzzi-image img {
    transform: scale(1.08);
}

.jacuzzi-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(23, 162, 184, 0.95);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.jacuzzi-badge i {
    font-size: 0.85rem;
}

.jacuzzi-type-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jacuzzi-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.jacuzzi-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--primary-page);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.jacuzzi-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    flex: 1;
}

.jacuzzi-spec {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 0.4rem;
    background: rgba(23, 162, 184, 0.03);
    border-radius: 8px;
}

.jacuzzi-spec i {
    color: var(--primary);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    display: none;
}

.no-results.show {
    display: block;
}

.no-results i {
    font-size: 4rem;
    color: rgba(23, 162, 184, 0.3);
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--text-light);
}

.jacuzzis-cta {
    padding: 5rem 0;
    background: var(--darker);
    color: white;
    text-align: center;
}

.jacuzzis-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.jacuzzis-cta h2 .highlight {
    color: var(--primary);
}

.jacuzzis-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.jacuzzis-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.jacuzzis-cta .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-decoration: none;
}

.jacuzzis-cta .btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-decoration: none;
}

.catalogos-section {
    padding: 6rem 0;
    background: white;
    display: none;
}

.catalogos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.catalogos-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

.catalogos-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(23, 162, 184, 0.1);
}

.catalogos-box-header {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.1), rgba(23, 162, 184, 0.05));
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(23, 162, 184, 0.2);
}

.catalogos-box-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    text-align: center;
}

.catalogos-list {
    padding: 1rem;
}

.catalogo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.catalogo-item:last-child {
    border-bottom: none;
}

.catalogo-item:hover {
    background: rgba(23, 162, 184, 0.03);
}

.catalogo-nombre {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
}

.catalogo-download-btn {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(23, 162, 184, 0.3);
}

.catalogo-download-btn:hover {
    background: #158ba3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.4);
    color: white;
}

.catalogo-download-btn i {
    font-size: 1.1rem;
}

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

@media (max-width: 991px) {
    .jacuzzis-intro-grid {
        gap: 3rem;
    }

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

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

    .jacuzzis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .jacuzzis-intro {
        padding: 4rem 0;
    }

    .jacuzzis-intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .jacuzzis-caracteristicas {
        padding: 4rem 0;
    }

    .caracteristicas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .jacuzzis-testimonios {
        padding: 4rem 0;
    }

    .testimonios-jacuzzis-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .jacuzzis-modelos {
        padding: 4rem 0;
    }

    .toolbar-top {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        width: 100%;
    }

    .filters-row {
        flex-direction: column;
        align-items: stretch;
    }

    .results-count {
        order: -1;
        text-align: center;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(23, 162, 184, 0.1);
    }

    .filters-right {
        justify-content: center;
    }

    .jacuzzis-grid,
    .jacuzzis-grid.compact-view {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .jacuzzis-cta {
        padding: 4rem 0;
    }

    .jacuzzis-cta-buttons {
        flex-direction: column;
    }

    .catalogos-grid {
        grid-template-columns: 1fr;
    }

    .catalogo-info {
        flex-direction: column;
        gap: 0.75rem;
    }

    .catalogos-box {
        margin: 0 1rem;
    }

    .catalogos-box-header {
        padding: 1.25rem 1.5rem;
    }

    .catalogos-box-header h3 {
        font-size: 1.25rem;
    }

    .catalogo-item {
        padding: 1rem 1.25rem;
    }

    .catalogo-nombre {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .jacuzzis-intro {
        padding: 3rem 0;
    }

    .caracteristica-card {
        padding: 1.75rem;
    }

    .jacuzzis-testimonios {
        padding: 3rem 0;
    }

    .jacuzzis-modelos {
        padding: 3rem 0;
    }

    .modelos-toolbar {
        padding: 1.5rem;
    }

    .jacuzzis-cta {
        padding: 3rem 0;
    }

    .catalogo-image {
        height: 250px;
    }
}

/* ============================================
   ACCESORIOS 
   ============================================ */

.accesorios-hero {
    min-height: 65vh;
}

.accesorios-hero .hero-content {
    padding: 8rem 0 4rem;
}

.accesorios-hero .hero-text {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.accesorios-main {
    padding: 4rem 0;
    background: #f8f9fa;
}

.accesorios-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

/* ============================================
   SIDEBAR
   ============================================ */

.accesorios-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(23, 162, 184, 0.08);
}

.sidebar-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.sidebar-search {
    position: relative;
    display: flex;
}

.sidebar-search input {
    width: 100%;
    padding: 0.875rem 3.5rem 0.875rem 1rem;
    border: 2px solid rgba(23, 162, 184, 0.2);
    border-radius: 50px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sidebar-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
}

.sidebar-search button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-search button:hover {
    background: #158ba3;
    transform: translateY(-50%) scale(1.05);
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    margin-bottom: 0.5rem;
}

.sidebar-categories a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.sidebar-categories a:hover {
    background: rgba(23, 162, 184, 0.08);
    color: var(--primary);
    transform: translateX(5px);
}

.sidebar-categories a.active {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

/* ============================================
   CONTENIDO PRINCIPAL
   ============================================ */

.accesorios-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(23, 162, 184, 0.08);
}

/* Toolbar */
.accesorios-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(23, 162, 184, 0.1);
}

.accesorios-toolbar .results-count {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.sort-dropdown select {
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    border: 2px solid rgba(23, 162, 184, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2317a2b8' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.sort-dropdown select:focus {
    outline: none;
    border-color: var(--primary);
}

.accesorios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.accesorio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(23, 162, 184, 0.08);
    display: flex;
    flex-direction: column;
}

.accesorio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(23, 162, 184, 0.15);
    border-color: rgba(23, 162, 184, 0.2);
}

.accesorio-card.hidden {
    display: none;
}

.accesorio-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

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

.accesorio-card:hover .accesorio-image img {
    transform: scale(1.08);
}

.accesorio-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(23, 162, 184, 0.95);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.accesorio-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.accesorio-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.accesorio-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex: 1;
}

.accesorio-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.accesorio-btn:hover {
    background: #158ba3;
    transform: translateX(5px);
    color: white;
}

.accesorio-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.accesorio-btn:hover i {
    transform: translateX(3px);
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    display: none;
    grid-column: 1 / -1;
}

.no-results.show {
    display: block;
}

.no-results i {
    font-size: 4rem;
    color: rgba(23, 162, 184, 0.3);
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--text-light);
}

.accesorios-cta {
    padding: 5rem 0;
    background: var(--darker);
    color: white;
    text-align: center;
}

.accesorios-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.accesorios-cta h2 .highlight {
    color: var(--primary);
}

.accesorios-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.accesorios-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.accesorios-cta .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-decoration: none;
}

.accesorios-cta .btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-decoration: none;
}

/* ============================================
   ESTILOS INTERNOS DE TARJETAS DE PRODUCTOS (VUE)
   ============================================ */

.card-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Efecto hover en la imagen al pasar el cursor sobre la tarjeta entera */
.accesorio-card:hover .card-img {
    transform: scale(1.08);
}

.card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary); /* Asegura que el azul coincida con tu paleta */
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex: 1; /* Empuja el footer hacia abajo si la descripción es corta */
}

.card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(23, 162, 184, 0.1);
}

.card-price {
    display: none;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
}

/* ============================================
   PAGINACIÓN
   ============================================ */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(23, 162, 184, 0.1);
    grid-column: 1 / -1; /* Asegura que ocupe todo el ancho si está dentro del grid */
}

.btn-pagination {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pagination:hover:not(:disabled) {
    background: var(--primary);
    color: white;
}

.btn-pagination:disabled {
    border-color: #ccc;
    color: #ccc;
    cursor: not-allowed;
    background: #f9f9f9;
}

.pagination-info {
    font-weight: 600;
    color: var(--text-light);
}

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

@media (max-width: 1200px) {
    .accesorios-layout {
        grid-template-columns: 280px 1fr;
        gap: 2rem;
    }

    .accesorios-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 991px) {
    .accesorios-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .accesorios-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .sidebar-section {
        margin-bottom: 0;
    }

    .accesorios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .accesorios-main {
        padding: 3rem 0;
    }

    .accesorios-sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar-section {
        padding: 1.5rem;
    }

    .accesorios-content {
        padding: 1.5rem;
    }

    .accesorios-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .accesorios-toolbar .results-count {
        text-align: center;
    }

    .sort-dropdown select {
        width: 100%;
    }

    .accesorios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .accesorios-cta {
        padding: 4rem 0;
    }

    .accesorios-cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .accesorios-main {
        padding: 2rem 0;
    }

    .accesorios-hero .hero-content {
        padding: 6rem 0 3rem;
    }

    .sidebar-title {
        font-size: 1.2rem;
    }

    .accesorio-image {
        height: 200px;
    }

    .accesorio-content h3 {
        font-size: 1.1rem;
    }

    .accesorio-content p {
        font-size: 0.875rem;
    }
}

/* ============================================
   ANIMACIONES
   ============================================ */

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 150px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(0, 174, 239, 0.1) 50%, 
        rgba(0, 174, 239, 0.2) 100%
    );
    animation: wave 15s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 120px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(0, 200, 240, 0.15) 50%, 
        rgba(0, 200, 240, 0.25) 100%
    );
    animation: wave 12s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite reverse;
    z-index: 0;
}

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

.hero .wave-layer-3 {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 80px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 230, 255, 0.08) 60%,
        rgba(0, 230, 255, 0.18) 100%
    );
    animation: wave 9s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite 2s;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content::before,
.hero-content::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.4), 
        rgba(0, 174, 239, 0.2)
    );
    box-shadow: 
        inset 0 -5px 10px rgba(255, 255, 255, 0.3),
        0 8px 20px rgba(0, 174, 239, 0.3);
    pointer-events: none;
}

.hero-content::before {
    width: 80px;
    height: 80px;
    bottom: 10%;
    left: 5%;
    animation: bubbleFloat 8s ease-in-out infinite;
}

.hero-content::after {
    width: 50px;
    height: 50px;
    bottom: 20%;
    right: 10%;
    animation: bubbleFloat 6s ease-in-out infinite 1s;
}

@keyframes bubbleFloat {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translateY(-100px) scale(1.1); }
    90% { opacity: 1; }
    100% { transform: translateY(-200px) scale(0.8); opacity: 0; }
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px) translateY(20px);
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px) translateY(20px);
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.reveal-emerge {
    opacity: 0;
    transform: translateY(80px) scale(0.92);
    filter: blur(4px);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.9s ease;
}
.reveal-emerge.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.reveal-drop {
    opacity: 0;
    transform: translateY(-40px) scale(0.8);
    transition:
        opacity 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.reveal-drop.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-splash {
    opacity: 0;
    transform: scaleX(0.6) scaleY(1.2);
    transform-origin: center bottom;
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-splash.visible {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
}

.reveal-group > *:nth-child(1)  { transition-delay: 0.05s; }
.reveal-group > *:nth-child(2)  { transition-delay: 0.15s; }
.reveal-group > *:nth-child(3)  { transition-delay: 0.25s; }
.reveal-group > *:nth-child(4)  { transition-delay: 0.35s; }
.reveal-group > *:nth-child(5)  { transition-delay: 0.45s; }
.reveal-group > *:nth-child(6)  { transition-delay: 0.55s; }

.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
    animation: waveDividerFlow 6s ease-in-out infinite alternate;
}

.wave-divider--down svg {
    transform: scaleY(1);
}
.wave-divider--up svg {
    transform: scaleY(-1);
}

@keyframes waveDividerFlow {
    0%   { transform: scaleX(1); }
    50%  { transform: scaleX(1.04); }
    100% { transform: scaleX(1); }
}

.rain-bg {
    position: relative;
    overflow: hidden;
}

.rain-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 1px 6px at 10% 0%, rgba(0,200,255,0.25) 0%, transparent 100%),
        radial-gradient(ellipse 1px 5px at 25% 0%, rgba(0,200,255,0.18) 0%, transparent 100%),
        radial-gradient(ellipse 1px 8px at 42% 0%, rgba(0,200,255,0.22) 0%, transparent 100%),
        radial-gradient(ellipse 1px 4px at 60% 0%, rgba(0,200,255,0.15) 0%, transparent 100%),
        radial-gradient(ellipse 1px 7px at 75% 0%, rgba(0,200,255,0.20) 0%, transparent 100%),
        radial-gradient(ellipse 1px 5px at 90% 0%, rgba(0,200,255,0.18) 0%, transparent 100%);
    background-size: 100% 120px;
    animation: rainFall 1.2s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes rainFall {
    0%   { background-position: 0 -120px; }
    100% { background-position: 0 100%; }
}

.bubble-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.bubble-container span {
    position: absolute;
    bottom: -150px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%,
        rgba(255,255,255,0.5),
        rgba(0,200,240,0.15) 60%,
        transparent
    );
    border: 1px solid rgba(255,255,255,0.3);
    animation: bubbleRiseAnim linear infinite;
    opacity: 0;
}

.bubble-container span:nth-child(1)  { width: 14px; height: 14px; left: 8%;   animation-duration: 9s;  animation-delay: 0s;    }
.bubble-container span:nth-child(2)  { width: 22px; height: 22px; left: 18%;  animation-duration: 11s; animation-delay: 1.2s;  }
.bubble-container span:nth-child(3)  { width: 10px; height: 10px; left: 30%;  animation-duration: 8s;  animation-delay: 2.5s;  }
.bubble-container span:nth-child(4)  { width: 30px; height: 30px; left: 42%;  animation-duration: 13s; animation-delay: 0.7s;  }
.bubble-container span:nth-child(5)  { width: 16px; height: 16px; left: 55%;  animation-duration: 10s; animation-delay: 3.1s;  }
.bubble-container span:nth-child(6)  { width: 8px;  height: 8px;  left: 65%;  animation-duration: 7s;  animation-delay: 1.8s;  }
.bubble-container span:nth-child(7)  { width: 24px; height: 24px; left: 75%;  animation-duration: 12s; animation-delay: 0.4s;  }
.bubble-container span:nth-child(8)  { width: 12px; height: 12px; left: 85%;  animation-duration: 9.5s;animation-delay: 2.2s;  }
.bubble-container span:nth-child(9)  { width: 18px; height: 18px; left: 93%;  animation-duration: 11s; animation-delay: 4s;    }
.bubble-container span:nth-child(10) { width: 6px;  height: 6px;  left: 3%;   animation-duration: 6.5s;animation-delay: 1s;   }

@keyframes bubbleRiseAnim {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    5% { opacity: 0.9; }
    50% {
        transform: translateY(-50vh) translateX(15px) scale(1.05);
        opacity: 0.7;
    }
    95% { opacity: 0.3; }
    100% {
        transform: translateY(-110vh) translateX(-10px) scale(0.7);
        opacity: 0;
    }
}

.cursor-ripple {
    position: fixed;
    border-radius: 50%;
    border: 2px solid rgba(0, 174, 239, 0.6);
    width: 0;
    height: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: cursorRippleAnim 0.8s ease-out forwards;
    z-index: 9999;
}

@keyframes cursorRippleAnim {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
        border-width: 3px;
    }
    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
        border-width: 1px;
    }
}

.benefit-item,
.model-card,
.testimonial-card,
.modelo-card,
.jacuzzi-card,
.accesorio-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.benefit-item::after,
.model-card::after,
.jacuzzi-card::after,
.modelo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            180deg,
            transparent 0px,
            rgba(255,255,255,0.02) 2px,
            transparent 4px
        ),
        linear-gradient(135deg, rgba(0,200,255,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.benefit-item:hover::after,
.model-card:hover::after,
.jacuzzi-card:hover::after,
.modelo-card:hover::after {
    opacity: 1;
}

.benefit-item::before,
.model-card::before,
.testimonial-card::before,
.modelo-card::before,
.jacuzzi-card::before,
.accesorio-card::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.2), transparent 70%);
    border-radius: 50%;
    transform: translateX(-50%);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    pointer-events: none;
}

.benefit-item:hover::before,
.model-card:hover::before,
.testimonial-card:hover::before,
.modelo-card:hover::before,
.jacuzzi-card:hover::before,
.accesorio-card:hover::before {
    bottom: -50px;
    opacity: 1;
    animation: bubblePulse 2s ease-in-out infinite;
}

@keyframes bubblePulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50%       { transform: translateX(-50%) scale(1.1); }
}

.benefit-item:hover,
.model-card:hover,
.jacuzzi-card:hover,
.modelo-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px rgba(0, 174, 239, 0.15),
        0 0 0 1px rgba(0, 200, 255, 0.1);
}

.water-border {
    position: relative;
}

.water-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(
        var(--water-angle, 0deg),
        #00aeef,
        #00e5ff,
        #0077b6,
        #00b4d8,
        #00aeef
    );
    background-size: 200% 200%;
    z-index: -1;
    animation: waterBorderFlow 3s linear infinite;
}

@property --water-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes waterBorderFlow {
    0%   { --water-angle: 0deg;   background-position: 0% 50%; }
    50%  {                        background-position: 100% 50%; }
    100% { --water-angle: 360deg; background-position: 0% 50%; }
}

.water-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 174, 239, 0.8) 20%,
        rgba(0, 230, 255, 1) 50%,
        rgba(0, 174, 239, 0.8) 80%,
        transparent 100%
    );
    background-size: 200% 100%;
    border: none;
    animation: waterLineFlow 3s ease-in-out infinite;
    border-radius: 2px;
    margin: 2rem auto;
}

@keyframes waterLineFlow {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.submerged-text {
    position: relative;
    display: inline-block;
}

.submerged-text::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 174, 239, 0) 40%,
        rgba(0, 174, 239, 0.3) 70%,
        rgba(0, 200, 255, 0.5) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: submergedShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes submergedShimmer {
    0%, 100% { opacity: 0.5; transform: translateY(0); }
    50%       { opacity: 1;   transform: translateY(2px); }
}

.drip-bottom {
    position: relative;
}

.drip-bottom::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: 
        radial-gradient(ellipse 14px 14px at 10% 0%, currentColor 98%, transparent 100%),
        radial-gradient(ellipse 10px 10px at 25% 0%, currentColor 98%, transparent 100%),
        radial-gradient(ellipse 18px 18px at 43% 0%, currentColor 98%, transparent 100%),
        radial-gradient(ellipse 8px  8px  at 60% 0%, currentColor 98%, transparent 100%),
        radial-gradient(ellipse 12px 12px at 78% 0%, currentColor 98%, transparent 100%),
        radial-gradient(ellipse 16px 16px at 92% 0%, currentColor 98%, transparent 100%);
    animation: dripDrop 2.5s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes dripDrop {
    0%   { transform: translateY(0);    opacity: 1; }
    100% { transform: translateY(8px);  opacity: 0.4; }
}

.pool-bg {
    position: relative;
    background: linear-gradient(180deg, #e0f7ff 0%, #b3ecff 100%);
}

.pool-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            rgba(0, 200, 255, 0.04) 1px,
            transparent 2px,
            transparent 60px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            rgba(0, 200, 255, 0.04) 1px,
            transparent 2px,
            transparent 60px
        );
    animation: poolTile 8s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes poolTile {
    0%   { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.pool-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 30% at 30% 20%, rgba(255,255,255,0.25) 0%, transparent 70%),
        radial-gradient(ellipse 40% 20% at 70% 60%, rgba(0,220,255,0.12) 0%, transparent 70%);
    animation: poolReflection 6s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes poolReflection {
    0%   { transform: scale(1)    skewX(0deg); opacity: 0.6; }
    50%  { transform: scale(1.05) skewX(1deg); opacity: 1;   }
    100% { transform: scale(1)    skewX(0deg); opacity: 0.6; }
}


.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:active::after,
.btn-secondary:active::after,
.btn-model:active::after,
.modelo-btn:active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    animation: ripple 0.8s ease-out;
}

@keyframes ripple {
    to {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.badge,
.section-badge,
.model-badge,
.jacuzzi-badge,
.modelo-badge {
    animation: splashIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes splashIn {
    0%   { transform: scale(0) rotate(-180deg); opacity: 0; }
    50%  { transform: scale(1.2) rotate(10deg); }
    100% { transform: scale(1) rotate(0);       opacity: 1; }
}

.section-header {
    animation: waveReveal 1s ease-out;
}

@keyframes waveReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        clip-path: ellipse(0% 100% at 50% 100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        clip-path: ellipse(100% 100% at 50% 100%);
    }
}

.benefits,
.models,
.testimonials,
.jacuzzis-modelos,
.accesorios-main {
    position: relative;
    overflow: hidden;
}

.benefits::before,
.models::before,
.testimonials::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 174, 239, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 200, 240, 0.03) 0%, transparent 50%);
    animation: waterParticles 20s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes waterParticles {
    0%   { transform: translateY(0)    scale(1); }
    100% { transform: translateY(-20px) scale(1.1); }
}

.model-image,
.jacuzzi-image,
.accesorio-image,
.modelo-image-wrapper {
    position: relative;
    overflow: hidden;
}

.model-image::after,
.jacuzzi-image::after,
.accesorio-image::after,
.modelo-image-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.model-card:hover .model-image::after,
.jacuzzi-card:hover .jacuzzi-image::after,
.accesorio-card:hover .accesorio-image::after,
.modelo-card:hover .modelo-image-wrapper::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.stat-number {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    0%   { opacity: 0; transform: translateY(20px) scale(0.5); }
    50%  { transform: translateY(-5px) scale(1.1); }
    100% { opacity: 1; transform: translateY(0)    scale(1); }
}

.gradient-text {
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes shimmer {
    0%   { background-position: -100% center; }
    100% { background-position: 200% center; }
}

.process {
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 174, 239, 0.05) 100%);
    animation: waterFlow 8s ease-in-out infinite alternate;
}

@keyframes waterFlow {
    0%   { transform: translateX(-5%); }
    100% { transform: translateX(5%); }
}

.modelos-cta-buttons,
.jacuzzis-cta-buttons,
.nosotros-cta-buttons {
    animation: ctaReveal 0.8s ease-out 0.5s backwards;
}

@keyframes ctaReveal {
    0%   { opacity: 0; transform: translateY(30px) scale(0.9); }
    60%  { transform: translateY(-10px) scale(1.05); }
    100% { opacity: 1; transform: translateY(0)     scale(1); }
}

.benefit-item,
.model-card,
.testimonial-card,
.step,
.modelo-card,
.jacuzzi-card,
.accesorio-card {
    animation: cardSlideUp 0.6s ease-out backwards;
}

.benefit-item:nth-child(1), .model-card:nth-child(1), .step:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2), .model-card:nth-child(2), .step:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3), .model-card:nth-child(3), .step:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4),                           .step:nth-child(4) { animation-delay: 0.4s; }

@keyframes cardSlideUp {
    0%   { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.btn-primary:hover,
.btn-model:hover,
.modelo-btn:hover,
.accesorio-btn:hover {
    box-shadow: 
        0 0 20px rgba(0, 174, 239, 0.4),
        0 0 40px rgba(0, 174, 239, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.1);
}

.filter-btn,
.dropdown-toggle {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.filter-btn:active,
.dropdown-toggle:active {
    transform: scale(0.95);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* =====================================================
    RESPONSIVE 
   ===================================================== */
@media (max-width: 768px) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-emerge {
        transform: translateY(30px);
    }
    .bubble-container span:nth-child(n+7) {
        display: none; 
    }
}

.sr-hidden {
    opacity: 0;
    will-change: opacity, transform;
}

.sr-up      { transform: translateY(48px); }
.sr-left    { transform: translateX(-50px); }
.sr-right   { transform: translateX(50px); }
.sr-emerge  { transform: translateY(32px) scale(0.97); filter: blur(6px); }
.sr-zoom    { transform: scale(0.93); }

.sr-hidden {
    transition:
        opacity    1.1s cubic-bezier(0.22, 1, 0.36, 1),
        transform  1.1s cubic-bezier(0.22, 1, 0.36, 1),
        filter     1.1s ease;
}

.sr-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}
.sr-d1  { transition-delay: 0.1s; }
.sr-d2  { transition-delay: 0.22s; }
.sr-d3  { transition-delay: 0.34s; }
.sr-d4  { transition-delay: 0.46s; }
.sr-d5  { transition-delay: 0.58s; }
.sr-d6  { transition-delay: 0.70s; }
.sr-d7  { transition-delay: 0.82s; }
.sr-d8  { transition-delay: 0.94s; }

@media (prefers-reduced-motion: reduce) {
    .sr-hidden {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
}

/* ============================================
   MONDE POOL — ANIMACIONES 
   ============================================ */

/* ── STAT ICONS ─────────────────────────────── */
.stat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,174,239,0.18) 0%, rgba(0,200,240,0.08) 100%);
  border: 1.5px solid rgba(0,174,239,0.28);
  box-shadow:
    0 4px 18px rgba(0,174,239,0.18),
    inset 0 1px 0 rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
}

.stat-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 28% 28%, rgba(0,229,255,0.18), transparent 68%);
  pointer-events: none;
}

/* ── POOL ICON — forma de alberca ── */
.stat-icon--pool {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.stat-icon--pool::before {
  display: none !important;
}

.stat-icon--pool svg {
  width: 44px;
  height: 33px;
  filter: drop-shadow(0 2px 8px rgb(255, 255, 255));
  position: relative;
  z-index: 1;
}

.stat-icon--wrench i,
.stat-icon--shield i {
  font-size: 22px;
  color: rgba(0,174,239,0.7);
  filter: drop-shadow(0 0 15px rgb(255, 255, 255));
  position: relative;
  z-index: 2;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.stat-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* Box pulse */
@keyframes iconBoxPulse {
  0%, 100% {
    box-shadow: 0 4px 18px rgba(0,174,239,0.18), inset 0 1px 0 rgba(255,255,255,0.18);
    border-color: rgba(0,174,239,0.28);
  }
  50% {
    box-shadow: 0 6px 28px rgba(0,174,239,0.44), inset 0 1px 0 rgba(255,255,255,0.22);
    border-color: rgba(0,200,240,0.60);
  }
}

@keyframes poolBob {
  0%, 100% { transform: translateY(0) scale(1);    filter: drop-shadow(0 2px 8px rgba(0,174,239,0.7)); }
  40%       { transform: translateY(-5px) scale(1.08); filter: drop-shadow(0 6px 18px rgba(0,220,255,1)); }
  70%       { transform: translateY(-3px) scale(1.04); }
}

@keyframes wrenchTwist {
  0%, 100% { transform: rotate(0deg) scale(1); filter: drop-shadow(0 2px 8px rgba(0,174,239,0.7)); }
  20%       { transform: rotate(-22deg) scale(1.12) translateY(-3px); filter: drop-shadow(0 6px 18px rgba(0,220,255,1)); }
  45%       { transform: rotate(13deg) scale(1.06) translateY(-5px); }
  65%       { transform: rotate(-6deg) scale(1.03) translateY(-2px); }
  82%       { transform: rotate(3deg) scale(1.01); }
}

@keyframes shieldGlow {
  0%, 100% { transform: scale(1) translateY(0); filter: drop-shadow(0 2px 8px rgba(0,174,239,0.7)); }
  50%       { transform: scale(1.15) translateY(-6px); filter: drop-shadow(0 0 22px rgba(0,229,255,1)); }
}

/* El pool icon no usa iconBoxPulse porque no tiene el box cuadrado */
.stat-icon--wrench { animation: iconBoxPulse 4s ease-in-out infinite 0.8s; }
.stat-icon--shield { animation: iconBoxPulse 4s ease-in-out infinite 1.6s; }

.stat-icon--pool   svg { animation: poolBob    4s ease-in-out infinite 0s; }
.stat-icon--wrench i   { animation: wrenchTwist 4s ease-in-out infinite 0.8s; }
.stat-icon--shield i   { animation: shieldGlow  4s ease-in-out infinite 1.6s; }

.stat-number { position: relative; }
.stat-number::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00AEEF, #00e5ff, transparent);
  border-radius: 2px;
  animation: statUnderline 3s ease-in-out infinite;
}

@keyframes statUnderline {
  0%, 100% { width: 0;    opacity: 0; }
  30%, 70%  { width: 100%; opacity: 1; }
}

/* ── HERO FLOATERS ───────────────────────────── */
.hero-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-content { position: relative; z-index: 2; }

.hero-floater {
  position: absolute;
  animation: heroFloat ease-in-out infinite;
}
.hero-floater svg { filter: drop-shadow(0 4px 16px rgba(0,174,239,0.4)); }

.hero-floater:nth-child(1) { width: 100px; height: 100px; top: 12%; right: 8%;  opacity: 0.18; animation-duration: 13s; animation-delay: 0s; }
.hero-floater:nth-child(2) { width: 65px;  height: 65px;  top: 55%; right: 18%; opacity: 0.13; animation-duration: 10s; animation-delay: 2s; }
.hero-floater:nth-child(3) { width: 80px;  height: 80px;  top: 30%; right: 3%;  opacity: 0.12; animation-duration: 15s; animation-delay: 4s; }
.hero-floater:nth-child(4) { width: 50px;  height: 50px;  top: 70%; right: 30%; opacity: 0.10; animation-duration: 11s; animation-delay: 1.5s; }

@keyframes heroFloat {
  0%   { transform: translateY(0px)   rotate(0deg)  scale(1); }
  25%  { transform: translateY(-16px) rotate(5deg)  scale(1.04); }
  50%  { transform: translateY(-8px)  rotate(-2deg) scale(0.98); }
  75%  { transform: translateY(-20px) rotate(7deg)  scale(1.03); }
  100% { transform: translateY(0px)   rotate(0deg)  scale(1); }
}

/* ── BENEFITS SECTION ────────────────────────── */
.benefits {
  position: relative;
  overflow: hidden;
  background-color: #e8f4fb !important;
}

.benefits-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.benefits .container { position: relative; z-index: 1; }

.floater-pool {
  position: absolute;
  animation: floaterDrift ease-in-out infinite;
  pointer-events: none; 
}
.floater-pool svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 20px rgba(0, 120, 190, 0.40));
}
.floater-pool:nth-child(1) {
  width: 148px; height: 148px;
  top: 3%; left: -28px;
  opacity: 0.90;
  animation-duration: 14s; animation-delay: 0s;
}
.floater-pool:nth-child(2) {
  width: 88px; height: 88px;
  top: 1%; right: -14px;
  opacity: 0.82;
  animation-duration: 11s; animation-delay: 2s;
}
.floater-pool:nth-child(3) {
  width: 62px; height: 62px;
  bottom: 5%; left: 10px;
  opacity: 0.74;
  animation-duration: 12s; animation-delay: 4s;
}
.floater-pool:nth-child(4) {
  width: 108px; height: 108px;
  bottom: 3%; right: -18px;
  opacity: 0.80;
  animation-duration: 16s; animation-delay: 1s;
}
.floater-pool:nth-child(5) {
  width: 72px; height: 72px;
  top: 22%; left: 1%;
  opacity: 0.68;
  animation-duration: 10s; animation-delay: 3s;
}
.floater-pool:nth-child(6) {
  width: 46px; height: 46px;
  top: 14%; right: 5%;
  opacity: 0.58;
  animation-duration: 9s; animation-delay: 5s;
}

@keyframes floaterDrift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(15px, 10px) rotate(2deg);
  }
  50% {
    transform: translate(-10px, 15px) rotate(-1deg);
  }
  75% {
    transform: translate(10px, -5px) rotate(1deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.benefit-item {
  background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%) !important;
  border: 1.5px solid rgba(0, 174, 239, 0.22) !important;
  box-shadow: 0 4px 18px rgba(0, 174, 239, 0.09);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease !important;
}

.benefit-item:hover {
  transform: translateY(-7px) scale(1.02) !important;
  border-color: rgba(0, 174, 239, 0.52) !important;
  box-shadow: 0 18px 42px rgba(0, 174, 239, 0.20) !important;
}

.benefit-item::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important; height: 4px !important;
  background: linear-gradient(90deg, #00AEEF, #00e5ff) !important;
  border-radius: 12px 12px 0 0 !important;
  opacity: 1 !important;
  bottom: unset !important;
  transform: none !important;
  animation: none !important;
}

.benefit-icon {
  background: linear-gradient(135deg, #00AEEF 0%, #00c8f0 100%) !important;
  box-shadow: 0 6px 20px rgba(0, 174, 239, 0.38) !important;
}

.benefit-item h3 { color: #0a2540 !important; }
.benefit-item p  { color: #4a6080 !important; }

@media (max-width: 991px) {
  .hero-floater:nth-child(1) { width: 75px;  height: 75px;  }
  .hero-floater:nth-child(2) { width: 50px;  height: 50px;  }
  .hero-floater:nth-child(3) { width: 60px;  height: 60px;  }
  .hero-floater:nth-child(4) { display: none; }

  .floater-pool:nth-child(1) { width: 100px; height: 100px; left: -16px; }
  .floater-pool:nth-child(2) { width: 64px;  height: 64px;  right: -8px; }
  .floater-pool:nth-child(3) { width: 48px;  height: 48px;  }
  .floater-pool:nth-child(4) { width: 80px;  height: 80px;  right: -12px; }
  .floater-pool:nth-child(5) { width: 52px;  height: 52px;  opacity: 0.50; }
  .floater-pool:nth-child(6) { width: 34px;  height: 34px;  opacity: 0.44; }

  .stat-icon { width: 46px; height: 46px; border-radius: 12px; }
  .stat-icon--wrench i,
  .stat-icon--shield i { font-size: 20px; }
  .stat-icon--pool svg { width: 38px; height: 29px; }
}

@media (max-width: 768px) {
  .hero-floater:nth-child(1) { width: 55px; height: 55px; top: 8%; right: 4%; opacity: 0.12; }
  .hero-floater:nth-child(2) { display: none; }
  .hero-floater:nth-child(3) { width: 45px; height: 45px; top: 20%; right: 2%; opacity: 0.09; }
  .hero-floater:nth-child(4) { display: none; }

  .floater-pool:nth-child(1) { width: 72px;  height: 72px;  top: 2%;     left: -14px;  opacity: 0.75; }
  .floater-pool:nth-child(2) { width: 44px;  height: 44px;  top: 0%;     right: -6px;  opacity: 0.65; }
  .floater-pool:nth-child(3) { width: 36px;  height: 36px;  bottom: 3%;  left: 4px;    opacity: 0.58; }
  .floater-pool:nth-child(4) { width: 58px;  height: 58px;  bottom: 2%;  right: -8px;  opacity: 0.65; }
  .floater-pool:nth-child(5) { display: none; }
  .floater-pool:nth-child(6) { display: none; }

  .stat-icon { width: 44px; height: 44px; border-radius: 12px; }
  .stat-icon--wrench i,
  .stat-icon--shield i { font-size: 20px; }
  .stat-icon--pool svg { width: 34px; height: 26px; }

  .benefit-item:hover {
    transform: translateY(-4px) !important;
  }
}

@media (max-width: 480px) {
  .hero-floater { display: none; }

  .floater-pool:nth-child(1) { width: 55px; height: 55px; top: 1%;    left: -10px; opacity: 0.65; }
  .floater-pool:nth-child(2) { width: 34px; height: 34px; top: 0%;    right: -4px; opacity: 0.58; }
  .floater-pool:nth-child(3) { width: 28px; height: 28px; bottom: 2%; left: 2px;   opacity: 0.52; }
  .floater-pool:nth-child(4) { width: 44px; height: 44px; bottom: 1%; right: -6px; opacity: 0.60; }
  .floater-pool:nth-child(5) { display: none; }
  .floater-pool:nth-child(6) { display: none; }

  .stat-icon { width: 40px; height: 40px; border-radius: 10px; }
  .stat-icon--wrench i,
  .stat-icon--shield i { font-size: 18px; }
  .stat-icon--pool svg { width: 30px; height: 23px; }

  .floater-pool { animation-duration: 20s !important; }
}

/* Clase reutilizable para el fondo de grilla con fundido */
.bg-grid-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    
    background-image: 
        linear-gradient(to right, #e2e8f0 1px, transparent 1px),
        linear-gradient(to bottom, #e2e8f0 1px, transparent 1px);    
    background-size: 20px 30px;    
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 100%, #000 60%, transparent 100%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 100%, #000 60%, transparent 100%);
}
/* ============================================================
   JACUZZI SECTION (HOME)
   ============================================================ */
#jacuzzi {
    background-color: #f4fcff;
    background-image:
        radial-gradient(circle at 50% -20%, rgba(198, 241, 255, 0.72) 0%, rgba(198, 241, 255, 0) 58%),
        radial-gradient(circle at 100% 55%, rgba(168, 230, 251, 0.30) 0%, rgba(168, 230, 251, 0) 52%),
        radial-gradient(circle at 0% 80%, rgba(191, 244, 255, 0.24) 0%, rgba(191, 244, 255, 0) 50%),
        linear-gradient(180deg, #edfaff 0%, #f6fdff 38%, #f1fcff 100%);
    background-repeat: no-repeat;
    background-size: cover;
}


/* ============================================================
   MONDE POOL — POPUP 
   ============================================================ */

/* ── OVERLAY ─────────────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    rgba(0, 30, 60, 0.72) 0%,
    rgba(0, 10, 30, 0.88) 100%
  );
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.55s;
}

.popup-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(0,174,239,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,200,240,0.06) 0%, transparent 50%);
  animation: backdropPulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes backdropPulse {
  0%   { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.05); }
}

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

/* ── CONTAINER ────────────────────────────────────────────── */
.popup-container {
  position: relative;
  width: 480px;
  max-width: 95vw;
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: #ffffff;
  border-radius: 28px;
  box-shadow:
    0 40px 80px rgba(0, 20, 60, 0.45),
    0 0 0 1px rgba(0, 174, 239, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transform: translateY(60px) scale(0.88);
  opacity: 0;
  transition:
    transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity   0.45s cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(0,174,239,0.4) rgba(0,174,239,0.08);
}

/* ── SCROLLBAR ACUÁTICA ───────────────────────────────────── */
.popup-container::-webkit-scrollbar {
  width: 6px;
}

.popup-container::-webkit-scrollbar-track {
  background: rgba(0,174,239,0.06);
  border-radius: 0 28px 28px 0;
}

.popup-container::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(0,174,239,0.0) 0%,
    rgba(0,174,239,0.5) 20%,
    #00AEEF 50%,
    rgba(0,174,239,0.5) 80%,
    rgba(0,174,239,0.0) 100%
  );
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 0 6px rgba(0,174,239,0.4);
}

.popup-overlay.active .popup-container {
  transform: translateY(0) scale(1);
  opacity: 1;
  transition-delay: 0.08s;
}

/* ── CERRAR ───────────────────────────────────────────────── */
.popup-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: white;
}

.popup-close:hover {
  background: rgba(255,255,255,0.35);
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.popup-close svg {
  width: 14px;
  height: 14px;
  stroke: white;
  stroke-width: 2.5;
  stroke-linecap: round;
  fill: none;
}

/* ── HEADER ───────────────────────────────────────────────── */
.popup-header {
  position: relative;
  padding: 0.85rem 1.5rem 1rem;
  background: linear-gradient(160deg, #0077b6 0%, #00AEEF 55%, #00c8f0 100%);
  overflow: hidden;
  text-align: center;
  border-radius: 28px 28px 0 0;
}

.popup-header::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.18) 0%, transparent 70%);
  pointer-events: none;
  animation: headerSheen 5s ease-in-out infinite alternate;
}

@keyframes headerSheen {
  0%   { transform: translateX(0) translateY(0) rotate(-5deg);    opacity: 0.6; }
  100% { transform: translateX(15%) translateY(10%) rotate(5deg);  opacity: 1;   }
}

/* ── CALENDARIO ───────────────────────────────────────────── */
.popup-calendar-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
  z-index: 2;
}

.popup-calendar {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  background: rgba(255,255,255,0.96);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.22),
    inset 0 2px 0 rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: calendarBounce 3.5s ease-in-out infinite;
  border: 2px solid rgba(255,255,255,0.5);
}

@keyframes calendarBounce {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-6px) rotate(2deg); }
}

.popup-calendar-top {
  background: linear-gradient(135deg, #e63946, #c1121f);
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.popup-calendar-top::before,
.popup-calendar-top::after {
  content: '';
  width: 5px;
  height: 10px;
  background: rgba(255,255,255,0.8);
  border-radius: 3px;
  position: absolute;
  top: -4px;
}

.popup-calendar-top::before { left: 20px; }
.popup-calendar-top::after  { right: 20px; }

.popup-calendar-top span {
  font-family: var(--font-title, 'Raleway', sans-serif);
  font-size: 0.6rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.popup-calendar-day {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 0 6px;
}

.popup-calendar-day-num {
  font-family: var(--font-title, 'Raleway', sans-serif);
  font-size: 1.85rem;
  font-weight: 900;
  color: #0077b6;
  line-height: 1;
  letter-spacing: -0.04em;
}

.popup-calendar-day-month {
  font-family: var(--font-family, 'Lato', sans-serif);
  font-size: 0.55rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.popup-holiday-star {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(255,165,0,0.5);
  animation: starSpin 4s ease-in-out infinite;
  border: 2px solid rgba(255,255,255,0.8);
  z-index: 5;
}

.popup-holiday-star i {
  font-size: 0.72rem;
  color: white;
}

@keyframes starSpin {
  0%, 100% { transform: rotate(-10deg) scale(1); }
  50%       { transform: rotate(10deg) scale(1.15); }
}

/* ── BADGE FERIADO ────────────────────────────────────────── */
.popup-feriado-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  padding: 0.28rem 0.85rem;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  font-family: var(--font-title, 'Raleway', sans-serif);
  font-size: 0.62rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── BURBUJAS PEQUEÑAS ────────────────────────────────────── */
.popup-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.popup-bubble {
  position: absolute;
  bottom: -40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
    rgba(255,255,255,0.60),
    rgba(255,255,255,0.12) 60%,
    transparent
  );
  border: 1px solid rgba(255,255,255,0.28);
  animation: bubbleRise linear infinite;
  opacity: 0;
}

.popup-bubble:nth-child(1)  { width: 10px; height: 10px; left:  6%; animation-duration: 7s;   animation-delay: 0.2s;  }
.popup-bubble:nth-child(2)  { width: 16px; height: 16px; left: 15%; animation-duration: 9s;   animation-delay: 1.5s;  }
.popup-bubble:nth-child(3)  { width:  8px; height:  8px; left: 28%; animation-duration: 6.5s; animation-delay: 0.8s;  }
.popup-bubble:nth-child(4)  { width: 24px; height: 24px; left: 40%; animation-duration: 11s;  animation-delay: 0s;    }
.popup-bubble:nth-child(5)  { width: 12px; height: 12px; left: 55%; animation-duration: 8s;   animation-delay: 2.1s;  }
.popup-bubble:nth-child(6)  { width:  6px; height:  6px; left: 67%; animation-duration: 6s;   animation-delay: 1.0s;  }
.popup-bubble:nth-child(7)  { width: 18px; height: 18px; left: 78%; animation-duration: 10s;  animation-delay: 3.2s;  }
.popup-bubble:nth-child(8)  { width:  9px; height:  9px; left: 90%; animation-duration: 7.5s; animation-delay: 0.5s;  }
.popup-bubble:nth-child(9)  { width: 14px; height: 14px; left: 22%; animation-duration: 8.5s; animation-delay: 4.0s;  }
.popup-bubble:nth-child(10) { width:  7px; height:  7px; left: 50%; animation-duration: 5.8s; animation-delay: 2.7s;  }
.popup-bubble:nth-child(11) { width: 20px; height: 20px; left: 72%; animation-duration: 12s;  animation-delay: 1.8s;  }
.popup-bubble:nth-child(12) { width: 11px; height: 11px; left: 85%; animation-duration: 7.2s; animation-delay: 3.6s;  }

@keyframes bubbleRise {
  0%   { transform: translateY(0)     translateX(0)    scale(0.5); opacity: 0;    }
  8%   {                                                             opacity: 0.85; }
  45%  { transform: translateY(-55%)  translateX(8px)  scale(1.05); opacity: 0.65; }
  90%  {                                                             opacity: 0.2;  }
  100% { transform: translateY(-135%) translateX(-6px) scale(0.6);  opacity: 0;    }
}

/* ── BURBUJAS DECO ────────────────────────────────────────── */
.popup-bubble-deco {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%,
    rgba(255,255,255,0.30) 0%,
    rgba(255,255,255,0.06) 55%,
    transparent 80%
  );
  border: 1.5px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(2px);
  pointer-events: none;
  animation: decoFloat ease-in-out infinite alternate;
}

.popup-bubble-deco:nth-child(1) { width: 80px; height: 80px; bottom: 10px; right: 18px; animation-duration: 6s;   animation-delay: 0s;   }
.popup-bubble-deco:nth-child(2) { width: 48px; height: 48px; bottom: 40px; left: 12px;  animation-duration: 7.5s; animation-delay: 1.2s; }
.popup-bubble-deco:nth-child(3) { width: 32px; height: 32px; top: 22px;    left: 30px;  animation-duration: 5.5s; animation-delay: 0.6s; }
.popup-bubble-deco:nth-child(4) { width: 56px; height: 56px; top: 15px;    right: 50px; animation-duration: 8s;   animation-delay: 2s;   }

@keyframes decoFloat {
  0%   { transform: translateY(0)     scale(1);    opacity: 0.55; }
  100% { transform: translateY(-12px) scale(1.06); opacity: 0.85; }
}

/* ── OLA SEPARADORA ───────────────────────────────────────── */
.popup-wave-sep {
  display: block;
  width: 100%;
  margin-top: -2px;
  line-height: 0;
  position: relative;
  z-index: 2;
}

.popup-wave-sep svg {
  display: block;
  width: 100%;
  height: 36px;
}

/* ── BODY ─────────────────────────────────────────────────── */
.popup-body {
  padding: 0.5rem 2rem 1.5rem;
  background: #ffffff;
  position: relative;
  border-radius: 0 0 28px 28px;
}

.popup-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(0,174,239,0.04) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(0,200,240,0.03) 0%, transparent 40%);
  pointer-events: none;
}

.popup-body > * { position: relative; z-index: 1; }

/* ── TÍTULO FERIADO ───────────────────────────────────────── */
.popup-holiday-title {
  text-align: center;
  margin-bottom: 1.2rem;
}

.popup-holiday-title .popup-titulo-principal {
  font-family: var(--font-title, 'Raleway', sans-serif);
  margin: 0 0 0.35rem;
  padding: 0;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.popup-holiday-title .popup-titulo-parte-1 {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  color: #0a1929;
  line-height: 1.15;
}

.popup-holiday-title .popup-titulo-parte-2 {
  display: inline-block;
  max-width: 100%;
  margin-top: 0.3rem;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #00AEEF, #0077b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #0077b6;
}

.popup-holiday-title .popup-titulo-parte-2--vacio {
  display: none;
  margin: 0;
}

.popup-holiday-title .popup-day-name {
  font-family: var(--font-family, 'Lato', sans-serif);
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 0.5rem;
}

/* ── BANNER DE HORARIO ────────────────────────────────────── */
.popup-schedule-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.4rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f4fb 100%);
  border: 1.5px solid rgba(0,174,239,0.18);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: bannerFadeIn 0.6s ease-out 0.3s backwards;
}

@keyframes bannerFadeIn {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.popup-schedule-banner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #00AEEF, #0077b6);
  border-radius: 4px 0 0 4px;
}

.popup-schedule-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #00AEEF, #0077b6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,174,239,0.35);
  animation: iconPulse 3s ease-in-out infinite;
}

.popup-schedule-icon-wrap i {
  font-size: 1.4rem;
  color: white;
}

@keyframes iconPulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(0,174,239,0.35); }
  50%       { box-shadow: 0 6px 28px rgba(0,174,239,0.6);  }
}

.popup-schedule-text .schedule-label {
  font-family: var(--font-family, 'Lato', sans-serif);
  font-size: 0.7rem;
  font-weight: 700;
  color: #0090c7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.25rem;
}

.popup-schedule-text .schedule-main {
  font-family: var(--font-title, 'Raleway', sans-serif);
  font-size: 1.1rem;
  font-weight: 800;
  color: #0a1929;
  line-height: 1.2;
  display: block;
}

.popup-schedule-text .schedule-sub {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 0.2rem;
  display: block;
  font-weight: 400;
}

/* ── DIVISOR ──────────────────────────────────────────────── */
.popup-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,174,239,0.5) 25%,
    rgba(0,229,255,0.9) 50%,
    rgba(0,174,239,0.5) 75%,
    transparent 100%
  );
  background-size: 200% 100%;
  border: none;
  border-radius: 2px;
  margin: 0 0 1.4rem;
  animation: dividerFlow 3s ease-in-out infinite;
}

@keyframes dividerFlow {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ── TARJETAS DE INFO ─────────────────────────────────────── */
.popup-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  animation: infoFadeIn 0.5s ease-out 0.45s backwards;
}

@keyframes infoFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.popup-info-card {
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e8f4fb 100%);
  border: 1px solid rgba(0,174,239,0.12);
  text-align: center;
  transition: all 0.25s ease;
}

.popup-info-card:hover {
  background: linear-gradient(135deg, #e0f5ff 0%, #d0ecfb 100%);
  border-color: rgba(0,174,239,0.28);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,174,239,0.15);
}

.popup-info-card .card-icon {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.4rem;
  color: #00AEEF;
}

.popup-info-card .card-label {
  font-family: var(--font-family, 'Lato', sans-serif);
  font-size: 0.68rem;
  font-weight: 700;
  color: #0090c7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.15rem;
}

.popup-info-card .card-value {
  font-family: var(--font-title, 'Raleway', sans-serif);
  font-size: 0.9rem;
  font-weight: 800;
  color: #0a1929;
  display: block;
  line-height: 1.2;
}

/* ── CTA ──────────────────────────────────────────────────── */
.popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.95rem 1.5rem;
  background: linear-gradient(135deg, #00AEEF 0%, #0090c7 100%);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: var(--font-family, 'Lato', sans-serif);
  font-size: 0.975rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
  box-shadow:
    0 6px 22px rgba(0,174,239,0.40),
    0 2px 6px  rgba(0,174,239,0.20);
  animation: ctaPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.75s backwards;
  box-sizing: border-box;
}

@keyframes ctaPop {
  from { opacity: 0; transform: scale(0.85) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.popup-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transition: left 0.5s ease;
}

.popup-cta:hover::before { left: 160%; }

.popup-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 30px rgba(0,174,239,0.50),
    0 4px  12px rgba(0,174,239,0.25);
  color: white;
}

.popup-cta:active { transform: translateY(0) scale(0.98); }

.popup-cta svg {
  width: 18px;
  height: 18px;
  stroke: white;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform 0.3s ease;
}

.popup-cta:hover svg { transform: translateX(4px); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 480px) {
  .popup-container        { border-radius: 22px; }
  .popup-header           { padding: 0.7rem 1.25rem 0.85rem; }
  .popup-body             { padding: 0.5rem 1.5rem 1.35rem; border-radius: 0 0 22px 22px; }
  .popup-holiday-title .popup-titulo-parte-1 { font-size: 1.4rem; }
  .popup-holiday-title .popup-titulo-parte-2 { font-size: 1.4rem; margin-top: 0.25rem; }
  .popup-info-grid        { gap: 0.5rem; }
  .popup-calendar         { width: 68px; height: 68px; }
  .popup-calendar-day-num { font-size: 1.55rem; }
  .popup-close            { top: 0.45rem; right: 0.45rem; }
  .popup-wave-sep svg     { height: 30px; }
}

/* ── REDUCED MOTION ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .popup-overlay,
  .popup-container,
  .popup-bubble,
  .popup-bubble-deco,
  .popup-calendar,
  .popup-schedule-banner,
  .popup-info-grid,
  .popup-cta {
    animation: none !important;
    transition: opacity 0.2s ease !important;
  }
  .popup-overlay.active .popup-container { transform: none; }
}
