

/* --- Variables & Reset --- */
:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --accent: #00d2ff;
    --text-main: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --btn-grad: linear-gradient(135deg, #2563eb 0%, #00d2ff 100%);
    --btn-shadow: rgba(37, 99, 235, 0.35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 16px;
}

/* --- Navigation --- */
.main-header {
    padding: 1rem 0;
    background: var(--white, #fff);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--slate-200, #e2e8f0);
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--dark, #1a1a1a);
    letter-spacing: -0.05em;
    z-index: 1100; /* Stays above the mobile overlay */
}

.logo span {
    color: var(--primary, #007bff);
}

/* --- Nav Links --- */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate-600, #475569);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary, #007bff);
}

.nav-phone {
    color: var(--dark, #1a1a1a) !important;
}

.cta-btn-nav {
    background-color: var(--primary, #007bff);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: transform 0.2s, background 0.2s !important;
}

.cta-btn-nav:hover {
    background-color: var(--primary-hover, #0056b3);
    transform: translateY(-1px);
}

/* --- Mobile Menu Toggle Styling --- */
.mobile-nav-toggle {
    display: none; /* Hidden on desktop */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
    width: 44px;
    height: 44px;
    position: relative;
}

/* The "Meat" of the hamburger - creating 3 bars with 1 span */
.bar {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark, #1a1a1a);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    position: relative;
    margin: 0 auto;
}

.bar::before,
.bar::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--dark, #1a1a1a);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    left: 0;
}

.bar::before { top: -8px; } /* Top bar */
.bar::after { bottom: -8px; } /* Bottom bar */

/* --- Mobile Media Query --- */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex; /* Show the button */
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen */
        flex-direction: column;
        background: var(--white, #fff);
        width: 100%; /* Full screen overlay */
        height: 100vh;
        padding: 6rem 2rem;
        transition: 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1050;
    }

    /* Active state for JavaScript toggle */
    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 1.5rem;
    }

    /* Hamburger to "X" Animation */
    .mobile-nav-toggle.active .bar {
        background: transparent; /* Hide middle bar */
    }

    .mobile-nav-toggle.active .bar::before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobile-nav-toggle.active .bar::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
}
/* Button style - removed !important by using higher specificity */
.nav-links .cta-btn-nav {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: opacity 0.3s;
}

/* Hover state for the call-to-action button */
.nav-links .cta-btn-nav:hover {
    opacity: 0.9;
    color: white; /* Keeps text white on hover */
}

.nav-phone i {
    color: #25D366; /* El verde oficial de WhatsApp */
    margin-right: 5px;
    font-size: 1.1rem;
    vertical-align: middle;
}

.nav-phone strong {
    vertical-align: middle;
}



/* --- Hero Section --- */
.hero {
    padding: 4rem 0 3rem 0; /* Balanced padding */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
}

.hero-text {
    color: var(--white);
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.badge-wrapper {
    display: inline-flex;
    align-items: center;
    background: #dbeafe;
    color: var(--primary-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.pulse {
    animation: shadow-pulse 2s infinite;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Fluid typography: shrinks on mobile */
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 2rem;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 1.5rem;
}

/* --- Trust Bar Section (Centering Fix) --- */
.trust-bar {
    padding: 50px 0;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.trust-bar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-label {
    display: block;
    width: 100%;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.press-logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: #6b7280;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.press-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* --- Animations --- */
@keyframes shadow-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr; /* Stacks image under text on tablets/phones */
        text-align: center;
        gap: 3rem;
    }
    
    .badge-wrapper {
        display: flex;
        justify-content: center;
    }

    .hero-visual {
        justify-content: center;
    }
}
/* --- Hero Image & Floating Cards (deprecated) ---*/
.hero-image-container {
    display: none;
}

.main-image-wrapper {
    display: none;
}

.floating-card {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 3;
}

/* --- Process Section --- */
.how-it-works {
    padding: 5rem 0;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.step-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: #e2e8f0;
    margin-bottom: 1rem;
}






/* Estilos mejorados para Quiénes Somos */
.about-us {
    padding: 120px 0;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* Manejo de la imagen y tarjetas flotantes */
.about-image-wrapper {
    position: relative;
    padding-right: 20px;
}

.image-stack {
    position: relative;
    z-index: 1;
}

.img-main {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.floating-trust-card {
    position: absolute;
    top: 40px;
    left: -30px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    animation: float 4s ease-in-out infinite;
}

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

.icon-check {
    background: #34A853;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Tipografía y Cuerpo */
.text-highlight {
    color: #0284c7;
    position: relative;
    display: inline-block;
}

.about-text-body p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Stats simplificados y modernos */
.about-stats-v2 {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px dashed #e2e8f0;
    border-bottom: 1px dashed #e2e8f0;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
}

.stat-desc {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    font-weight: 600;
}

/* Footer de la sección */
.about-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.about-values-v2 {
    display: flex;
    gap: 15px;
    font-weight: 700;
    color: #0284c7;
    font-size: 0.9rem;
}

.btn-text-link {
    text-decoration: none;
    font-weight: 800;
    color: #1e293b;
    border-bottom: 2px solid #0284c7;
    transition: all 0.3s ease;
}

.btn-text-link:hover {
    color: #0284c7;
    padding-right: 10px;
}

/* Responsivo */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-image-wrapper { padding-right: 0; max-width: 500px; margin: 0 auto; }
    .floating-trust-card { left: 10px; }
}






 /* Estilos sugeridos para la sección de Precios */
    .pricing-section { padding: 80px 0; background-color: #f8fafc; }
    .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 40px; }
    .pricing-card {
        background: white; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #e2e8f0;
        display: flex;
        flex-direction: column;
    }
    .pricing-card h3 { font-size: 1.5rem; margin-bottom: 25px; color: #1e293b; border-bottom: 2px solid #3b82f6; display: inline-block; }
    
    .price-item { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px dashed #e2e8f0; align-items: center; }
    .price-value { font-weight: 800; color: #1e293b; font-size: 1.1rem; }
    .price-extra { font-weight: 600; color: #3b82f6; }
    
    .recurring-promo { background: #eff6ff; padding: 25px; border-radius: 15px; margin-top: 30px; text-align: center; border: 1px solid #bfdbfe; }
    .promo-badge { background: #3b82f6; color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; display: inline-block; margin-bottom: 10px; }
    .discount-amount { font-size: 2.5rem; font-weight: 800; color: #1e40af; line-height: 1; margin: 10px 0; }
    
    .extras-card { background: #ffffff; }
    .extras-note { color: #64748b; margin-bottom: 20px; font-size: 0.95rem; }
    .price-item i { color: #10b981; margin-right: 10px; }
    
    .pricing-footer {
        margin-top: auto;
        padding-top: 30px;
        border-top: 1px solid #e2e8f0;
        text-align: center;
    }

    @media (max-width: 768px) {
        .pricing-card { padding: 25px; }
    }








/* --- Booking Section --- */
.booking-section {
    padding: 5rem 0;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.booking-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-section {
    margin-bottom: 2.5rem;
}

.group-label {
    display: block;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-toggle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    background: #f1f5f9;
    padding: 0.4rem;
    border-radius: 8px;
}

.service-toggle button {
    border: none;
    padding: 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.service-toggle button.active {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    color: var(--primary);
}

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

.number-stepper {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.number-stepper button {
    width: 40px;
    height: 45px;
    border: none;
    background: #f8fafc;
    cursor: pointer;
    font-size: 1.2rem;
}

.number-stepper input {
    flex: 1;
    border: none;
    text-align: center;
    font-weight: 700;
    width: 50px;
}

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

.extra-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.extra-chip:has(input:checked) {
    border-color: var(--primary);
    background: #eff6ff;
}

/* --- Frequency Section --- */
.frequency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.freq-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--white);
}

.freq-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.freq-card:has(input:checked) {
    border-color: var(--primary);
    background: #eff6ff;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.1);
}

.freq-card input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.freq-info {
    display: flex;
    flex-direction: column;
}

.freq-title {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

.freq-discount {
    font-size: 0.8rem;
    color: #16a34a;
    font-weight: 700;
}

@media (max-width: 600px) {
    .frequency-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Price Summary Sidebar --- */
.price-summary {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-inner {
    background: var(--primary);
    color: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: 0 20px 25px -5px rgba(195, 198, 203, 0.35);
}

.price-display {
    margin: 1.5rem 0;
    font-size: 3.5rem;
    font-weight: 800;
}

.currency { font-size: 1.5rem; vertical-align: top; margin-right: 2px; }

.guarantee-list {
    list-style: none;
    margin: 2rem 0;
    font-size: 0.9rem;
}

.guarantee-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.book-btn {
    width: 100%;
    padding: 1.2rem;
    border-radius: 8px;
    border: none;
    background: var(--white);
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.book-btn:hover {
    transform: scale(1.02);
}

/* --- Footer --- */
.footer {
    background-color: #0f172a;
    color: #f1f5f9;
    padding: 5rem 0 2rem;
    margin-top: 4rem;
}

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

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

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent);
}

.footer-tagline {
    color: #94a3b8;
    margin: 1.2rem 0;
    max-width: 250px;
}

.footer-tel {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    margin: 1rem 0 1.5rem 0;
    transition: color 0.3s ease;
}

.footer-tel:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

.stripe-badge {
    height: 25px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
}

/* --- Premium Buttons & Social Proof --- */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.cta-primary-pro {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 12px 12px 32px;
    background: var(--btn-grad);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 100px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 20px -5px var(--btn-shadow);
}

.icon-circle {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-primary-pro:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px var(--btn-shadow);
}

.cta-primary-pro:hover .icon-circle {
    background: white;
    color: var(--primary);
}

.shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
}

.cta-primary-pro:hover .shimmer {
    animation: shimmerEffect 1.2s infinite;
}

@keyframes shimmerEffect {
    100% { left: 200%; }
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.avatar-item:first-child { margin-left: 0; }

.avatar-count {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0f172a;
    color: #ffffff;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    margin-left: -12px;
}

/* --- Responsive Layouts --- */
@media (max-width: 992px) {
    .hero { padding: 3rem 0; }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .cta-wrapper { align-items: center; }
    
    /* REMOVE THIS LINE: .nav-links { display: none; } */
    
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 2rem auto 0;
        width: fit-content;
    }
}

@media (max-width: 768px) {
    /* This is where the magic happens now */
    .nav-links { 
        display: flex; /* Force it back to flex so it's visible */
        /* ... the rest of your mobile menu CSS ... */
    }
    
    h1 { font-size: 2.8rem; }
    .booking-wrapper, .steps-grid { grid-template-columns: 1fr; }
    .bottom-flex { flex-direction: column; gap: 1rem; text-align: center; }
}


/* --- Trust Bar Section --- */
.trust-bar {
    background: #ffffff;
    padding: 2.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.trust-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.trust-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #94a3b8; /* Subtle slate gray */
    text-transform: uppercase;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    opacity: 0.7; /* Softens the logos for an integrated look */
    transition: opacity 0.3s ease;
}

.logo-grid:hover {
    opacity: 1;
}

.press-logo {
    font-family: 'serif', serif; /* Gives an "Editorial" feel */
    font-size: 1.25rem;
    color: #475569;
    font-weight: 600;
    white-space: nowrap;
    cursor: default;
    transition: color 0.3s ease;
}

/* Specific styling for Google Top Rated to make it pop slightly */
.press-logo strong {
    color: var(--primary);
    font-weight: 800;
}

.press-item:hover .press-logo {
    color: #0f172a;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .logo-grid {
        gap: 2rem;
    }
    .press-logo {
        font-size: 1.1rem;
    }
}

/*Chack out bottton*/
.guarantee-list {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
        font-size: 0.95rem;
        color: #ffffff;
    }
    
    .guarantee-list li {
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .book-btn-final {
        width: 100%;
        padding: 16px 24px;
        background: linear-gradient(135deg, #ffffff 0%, #e3e4e7 100%);
        color: rgb(14, 14, 78);
        border: none;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.2s;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    .book-btn-final:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(38, 189, 226, 0.3);
        background: linear-gradient(135deg, #ffffff 0%, #ebeef8 60%);
    }

    .book-btn-final:active {
        transform: translateY(0);
    }

    .secure-text {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        margin-top: 12px;
        font-size: 0.85rem;
        color: #ffffff;
    }

/* --- WhatsApp Button --- */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: #1ebc56;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 1.25rem;
    margin-right: 8px;
}




    /* --- Services Section Styles --- */
.services-section {
    padding: 80px 0;
    background-color: #f8fafc; /* Light gray background to separate sections */
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.subheading {
    display: block;
    color: #2563eb;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.service-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Special styling for the 'Deep Clean' card */
.service-card.highlighted {
    border: 2px solid #2563eb;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2563eb;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: auto; /* Pushes list to bottom */
}

.service-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #475569;
    display: flex;
    align-items: center;
}

.service-features li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 10px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.how-it-works {
    padding: 100px 0;
    background-color: #f9fafb; /* Un gris muy suave para diferenciar secciones */
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #007aff, #00d4ff); /* Ajusta a tus colores */
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,122,255,0.3);
}

.step-icon-wrap {
    margin-bottom: 25px;
    color: #007aff;
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

.how-cta {
    text-align: center;
    margin-top: 50px;
}

.cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cta-secondary:hover {
    opacity: 0.9;
}


/* Layout for the contact section */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.full-width {
    width: 100%;
}

/* Styling the inputs to match your theme */
.form-section input[type="text"],
.form-section input[type="tel"],
.form-section input[type="email"],
.form-section input[type="url"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-section input:focus {
    outline: none;
    border-color: #007bff; /* Or your primary theme color */
    box-shadow: 0 0 0 2px rgba(0,123,255,0.1);
}

/* Asegura que el selector de fecha y el select tengan la misma altura y estilo */
.form-section input[type="date"],
.form-section select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #fff;
    cursor: pointer;
}

.helper-text {
    font-size: 0.85rem;
    color: #e67e22; /* Un color naranja suave para notas importantes */
    margin-top: 10px;
    font-style: italic;
}

/* En móviles, la fila de inputs se apila verticalmente */
@media (max-width: 600px) {
    .input-row {
        flex-direction: column;
        gap: 15px;
    }
}

/*Añade este pequeño CSS al final de tu archivo CSS para que el icono gire*/
 @keyframes spin {
  to { transform: rotate(360deg); }
}


/*Este código añade profundidad y respuesta visual inmediata:*/


.service-toggle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    outline: none;
}

/* Efecto Hover: Se eleva un poco */
.service-card:hover {
    border-color: #007bff;
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

/* Efecto Activo (Seleccionado) */
.service-card.active {
    border-color: #007bff;
    background-color: #f0f7ff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

/* Animación de clic "Bounce" */
.service-card:active {
    transform: scale(0.96);
}

.card-title {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.card-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* Pequeño punto indicador para el estado activo */
.service-card.active::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #007bff;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estilos Modernos */
    .service-container {
        font-family: 'Segoe UI', Roboto, sans-serif;
        max-width: 500px;
        margin: 20px 0;
    }

    .group-label {
        display: block;
        margin-bottom: 15px;
        font-weight: 600;
        color: #333;
        font-size: 1.1rem;
    }

    .service-toggle-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .service-card {
        background: #ffffff;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        padding: 20px 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        outline: none;
    }

    .service-card:hover {
        border-color: #007bff;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .service-card.active {
        border-color: #007bff;
        background-color: #f0f7ff;
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
    }

    .service-card .time {
        font-size: 1.8rem;
        font-weight: bold;
        color: #222;
        transition: color 0.3s;
    }

    .service-card .unit {
        font-size: 0.9rem;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .service-card.active .time, 
    .service-card.active .unit {
        color: #007bff;
    }


 .google-trust-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.google-trust-badge:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.google-icon {
    display: flex;
    align-items: center;
    margin-right: 12px;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stars {
    color: #fbbc04; /* Official Google Star Yellow */
    font-size: 14px;
    line-height: 1;
    margin-bottom: 2px;
}

.rating-text {
    font-family: inherit; /* Uses your site's font */
    font-size: 12px;
    color: #444;
}

.rating-text strong {
    color: #000;
}

/*Porque Elegirnoss*/

.porque-elegirnos {
    padding: 100px 0;
    background-color: #ffffff;
}

.grid-cuadros {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dos columnas */
    gap: 0; /* Sin espacio entre cuadros para efecto mosaico */
    border: 1px solid #e2e8f0;
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden; /* Para que las esquinas de los cuadros respeten el radio */
}

.cuadro-item {
    padding: 60px 40px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.4s ease;
    background: #fff;
}

.cuadro-item:hover {
    background-color: #f0f9ff; /* Un azul muy suave al pasar el mouse */
    z-index: 1;
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.cuadro-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(2, 132, 199, 0.05); /* Número gigante pero muy sutil */
    line-height: 1;
}

.cuadro-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cuadro-item h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.cuadro-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .grid-cuadros {
        grid-template-columns: 1fr; /* Una columna en celulares */
    }
    
    .cuadro-item {
        padding: 40px 25px;
    }
}

/* --- How It Works Section --- */
.how-it-works {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 30px;
    position: relative;
}

.step-number-circle {
    width: 40px;
    height: 40px;
    background: #0284c7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* La flecha decorativa entre pasos */
.step-arrow {
    position: absolute;
    top: 50px;
    right: -25px;
    font-size: 2rem;
    color: #e2e8f0;
    font-weight: 300;
}

.how-it-works-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #1e293b;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #0284c7;
    transform: translateY(-2px);
}

/* Ajustes para Tablets y Móviles */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-arrow {
        display: none; /* Ocultamos flechas en vertical */
    }
    
    .step-card {
        border-bottom: 1px solid #eee;
        padding-bottom: 40px;
    }
    
    .step-card:last-child {
        border-bottom: none;
    }
}


/* --- Social Icons Styling --- */
.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: #94a3b8; /* Matching your link color */
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #06090c; /* Darker color on hover to match your text */
    transform: translateY(-3px);
}
