:root {
    --primary-blue: #3b82f6;
    --primary-blue-hover: #2563eb;
    --sec-blue-light: #eff6ff;
    --bg-light-blue: #f8fafc;
    /* Very light slate */
    --text-dark: #0f172a;
    --text-muted: #475569;
    --bg-white: #ffffff;
    --bg-dark: #020617;
    /* Slate 950 */

    --font-main: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.25;
}

p {
    color: var(--text-muted);
}

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

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

/* Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1rem;
}

.bg-light-blue {
    background-color: var(--bg-light-blue);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: white;
}

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

.subheading {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.section-desc {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

section {
    padding: 3.6rem 0;
}

/* Header */
.header {
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f1f5f9;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

/* Stats Section (Top Stats) */
.top-stats {
    padding: 2rem 0;
    border-bottom: 1px solid #f1f5f9;
    background-color: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 1rem;
}

.stat-item h3 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
    font-weight: 800;
}

/* Glowing text effect for stats */
.glow-text {
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.6), 0 0 30px rgba(59, 130, 246, 0.3);
}

.stat-item p {
    font-weight: 500;
    font-size: 0.95rem;
    color: #94a3b8;
    /* Light slate text for dark bg */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modal Formulario */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 550px;
    border-radius: var(--border-radius-xl);
    padding: 3rem 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f1f5f9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
}

.close-modal:hover {
    background: #e2e8f0;
}

.modal-header {
    margin-bottom: 2rem;
    text-align: center;
}

.modal-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

/* Hero Section */
.hero {
    padding: 2.5rem 0 4rem;
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
}

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

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--sec-blue-light);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
    color: var(--text-muted);
}

.google-rating {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.star-filled {
    color: #f59e0b;
    fill: #f59e0b;
    width: 18px;
    height: 18px;
    stroke: none;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-xl);
}

.hero-image-shape {
    background-color: #e0f2fe;
    border-radius: 40px;
    border-top-left-radius: 120px;
    border-bottom-right-radius: 120px;
    overflow: hidden;
    position: relative;
    height: 550px;
}

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

.floating-card {
    position: absolute;
    background: white;
    color: var(--text-dark);
    padding: 1.2rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid #f1f5f9;
}

.hours-card {
    bottom: 2rem;
    left: -2rem;
}

.hours-card .icon-wrapper {
    background: var(--sec-blue-light);
    color: var(--primary-blue);
    padding: 1rem;
    border-radius: 50%;
    display: flex;
}

.hours-card strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}

.hours-card span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    height: 100%;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: #e2e8f0;
}

.service-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sec-blue-light);
    border-radius: 25px;
    transform: rotate(-5deg);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    transform: rotate(0);
    background: var(--primary-blue);
}

.service-card:hover .custom-icon {
    filter: brightness(0) invert(1);
}

.custom-icon {
    width: 45px;
    height: 45px;
    transition: var(--transition);
    filter: invert(41%) sepia(91%) saturate(2251%) hue-rotate(205deg) brightness(97%) contrast(98%);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius-xl);
}

.image-wrapper img {
    border-radius: var(--border-radius-xl);
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-blue);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: var(--shadow-md);
}

.story-content h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.story-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.story-signature {
    margin-top: 3rem;
    border-left: 4px solid var(--primary-blue);
    padding-left: 1.5rem;
}

.story-signature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.story-signature span {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

/* TikToks */
.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.tiktok-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: center;
    border: 1px solid #e2e8f0;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
}

.map-container {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
}

.quote-icon {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    opacity: 0.2;
}

.quote-icon i {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
    flex-grow: 1;
}

.author-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--sec-blue-light);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    overflow: hidden;
}

.author-details h5 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.author-details span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-desc {
    color: #94a3b8;
    margin: 1.5rem 0;
    max-width: 320px;
    font-size: 0.95rem;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-links-group h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.footer-links-group a {
    color: #94a3b8;
    font-size: 0.95rem;
}

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

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

.contact-item i {
    color: var(--primary-blue);
}

.contact-item strong {
    display: block;
    font-weight: 500;
    margin-bottom: 0.2rem;
    color: white;
}

.contact-item span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Floating WA */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-white);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}

.close-menu-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

.close-menu-btn i {
    width: 35px;
    height: 35px;
}

.mobile-nav-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    list-style: none;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-grid,
    .story-grid,
    .map-section .container {
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

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

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-actions>.open-modal-btn {
        display: none;
    }

    .hero-grid,
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-image-shape {
        height: 350px;
    }

    .hours-card {
        left: 0;
        bottom: 0;
        width: 100%;
        border-radius: 0 0 40px 40px;
    }

    /* Stats Grid Fix: 1 column vertically instead of 2x2 */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .stat-item p {
        font-size: 0.95rem;
    }

    /* Vertical stacking for cards */
    .services-grid,
    .tiktok-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        display: grid;
        /* override any horizontal flex */
    }

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

    .story-image {
        order: -1;
    }

    .badge-float {
        right: 15px;
        bottom: -20px;
        font-size: 0.85rem;
        padding: 0.8rem 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

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

    .google-rating {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
}