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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.3px;
}

.logo-img {
    height: 55px;
    width: auto;
    border-radius: 10px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-menu a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #2563eb;
    cursor: pointer;
    z-index: 1001;
}

.btn-whatsapp-header {
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 40%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 35px 90px rgba(15, 23, 42, 0.2);
    border: 10px solid white;
}

.hero-text {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-text p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(37, 99, 235, 0.45);
}

.btn-secondary {
    background: white;
    color: #0f172a;
    padding: 15px 32px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
}

.trust-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 45px 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
}

.trust-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon i {
    font-size: 1.4rem;
    color: white;
}

.trust-item h3 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.trust-item p {
    font-size: 0.85rem;
    color: #94a3b8;
}

.services {
    padding: 90px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.08rem;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: #f8fafc;
    padding: 35px 28px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
    border-color: #2563eb;
    background: white;
}

.service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.service-icon i {
    font-size: 2rem;
    color: #1e40af;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #0f172a;
    font-weight: 700;
}

.service-card p {
    color: #64748b;
    font-size: 0.92rem;
}

.pricing {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 35px 28px;
    border-radius: 24px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    border-color: #2563eb;
}

.pricing-card.featured {
    border-color: #2563eb;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header h3 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 800;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 5px;
}

.price span {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

.savings {
    color: #22c55e;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #22c55e;
    font-size: 1.1rem;
}

.btn-pricing {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.schedule {
    padding: 90px 0;
    background: white;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.schedule-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1);
    border-color: #2563eb;
}

.schedule-card.closed {
    background: #fef2f2;
    border-color: #fecaca;
}

.schedule-day {
    margin-bottom: 25px;
}

.schedule-day i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 12px;
}

.schedule-card.closed .schedule-day i {
    color: #dc2626;
}

.schedule-day h3 {
    font-size: 1.25rem;
    color: #0f172a;
    font-weight: 800;
}

.schedule-times {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.time-slot {
    background: white;
    padding: 18px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #e2e8f0;
}

.time-slot i {
    color: #2563eb;
    font-size: 1.3rem;
}

.time-slot span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.time-slot.closed-slot {
    background: #fee2e2;
    border-color: #fca5a5;
}

.time-slot.closed-slot i,
.time-slot.closed-slot span {
    color: #dc2626;
}

.about {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.4rem;
    margin-bottom: 22px;
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.about-text p {
    color: #475569;
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-features {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0f172a;
    font-weight: 600;
    font-size: 1rem;
}

.feature i {
    color: #22c55e;
    font-size: 1.2rem;
}

.about-image-wrapper {
    position: relative;
}

.about-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 24px;
    transform: rotate(-4deg);
    z-index: 0;
}

.about-image-wrapper img {
    position: relative;
    width: 100%;
    border-radius: 24px;
    z-index: 1;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.2);
}

.contact {
    padding: 90px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
    background: #f8fafc;
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-item:hover {
    transform: translateX(6px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border-color: #2563eb;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.4rem;
    color: #1e40af;
}

.contact-item h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: #0f172a;
    font-weight: 700;
}

.contact-item p, .contact-item a {
    color: #475569;
    text-decoration: none;
    font-size: 0.98rem;
}

.contact-item a:hover {
    color: #2563eb;
}

.contact-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 50px 40px;
    border-radius: 24px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 0%, rgba(37, 99, 235, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.cta-icon {
    position: relative;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.cta-icon i {
    font-size: 2rem;
    color: white;
}

.contact-cta h3 {
    position: relative;
    font-size: 1.7rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.contact-cta p {
    position: relative;
    margin-bottom: 28px;
    font-size: 1rem;
    color: #cbd5e1;
}

.btn-whatsapp-large {
    position: relative;
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
    margin-bottom: 28px;
}

.btn-whatsapp-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(37, 211, 102, 0.55);
}

.btn-google-review {
    position: relative;
    background: linear-gradient(135deg, #4285F4 0%, #1a73e8 100%);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 35px rgba(66, 133, 244, 0.35);
    margin-bottom: 28px;
}

.btn-google-review:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(66, 133, 244, 0.5);
}

.social-links {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.social-link {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-link:hover {
    background: white;
    color: #0f172a;
    transform: translateY(-3px);
}

.footer {
    background: #0f172a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.footer p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.4rem;
    text-decoration: none;
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 20px 55px rgba(37, 211, 102, 0.6);
}

@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image img {
        max-width: 380px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        font-size: 1.3rem;
        padding: 15px;
        display: block;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .logo span {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
    }
    
    .hero-wrapper {
        padding-top: 15px;
    }
    
    .btn-whatsapp-header {
        padding: 10px 16px;
        font-size: 0.88rem;
    }
    
    .btn-whatsapp-header span {
        display: none;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.1rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-google-review {
        width: 100%;
        justify-content: center;
    }
    
    .logo-img {
        height: 45px;
    }
}