:root {
    --color-pink: #ff4fa3;
    --color-pink-hover: #e63c90;
    --color-pink-light: #ff9ec9;
    --color-green-accent: #3fa66b;
    --color-green-icons: #2f6f4f;
    --color-text: #1a1a1a;
    --color-text-secondary: #555;
    --color-bg: #fafafa;
    --color-bg-alt: #f7f7f7;
    --color-footer: #121212;
    --font-primary: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.04);
    --shadow-md: 0 15px 40px rgba(0,0,0,0.06);
    --shadow-lg: 0 25px 60px rgba(0,0,0,0.08);
}

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

html {
    scroll-behavior: smooth;
}

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

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

.header {
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header.scrolled #headerLogo {
    height: 50px !important;
}

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

.logo img {
    height: 70px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--color-text);
    transition: var(--transition);
    border-radius: 2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-pink);
    transition: width 0.3s ease;
}

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

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

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle i {
    font-size: 11px;
    transition: var(--transition);
}

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

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: -20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 12px 0;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item i {
    font-size: 16px;
    color: var(--color-green-accent);
    width: 20px;
}

.dropdown-item:hover {
    background: rgba(255, 79, 163, 0.05);
    color: var(--color-pink);
}

.dropdown-item:hover i {
    color: var(--color-pink);
}

.btn-pill {
    background: var(--color-pink);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(255, 79, 163, 0.25);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-pill:hover {
    background: var(--color-pink-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 79, 163, 0.35);
}

.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 20% 20%, rgba(255,79,163,0.06), transparent 40%), #ffffff;
    padding: 140px 0 80px;
}

.hero-content {
    max-width: 780px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(17px, 2.5vw, 20px);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-pink);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 79, 163, 0.2);
}

.btn-primary:hover {
    background: var(--color-pink-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 79, 163, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--color-text);
    border: 2px solid var(--color-green-accent);
}

.btn-secondary:hover {
    background: var(--color-green-accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-secondary);
    font-size: 15px;
}

.badge i {
    font-size: 22px;
    color: var(--color-green-accent);
}

.section-header {
    margin-bottom: 64px;
}

.section-header.center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    color: var(--color-pink);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-header p {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.problem-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.problem-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.problem-card.featured {
    background: var(--color-green-accent);
    color: white;
}

.problem-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-bg-alt);
}

.problem-card.featured .problem-icon {
    background: rgba(255, 255, 255, 0.2);
}

.problem-icon i {
    font-size: 30px;
    color: var(--color-green-icons);
}

.problem-card.featured .problem-icon i {
    color: white;
}

.problem-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.problem-card.featured p {
    color: rgba(255, 255, 255, 0.95);
}

.services-section {
    padding: 80px 0;
}

.services-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.benefit {
    text-align: center;
}

.benefit i {
    font-size: 44px;
    color: var(--color-green-icons);
    margin-bottom: 20px;
}

.benefit h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.specialties-section {
    padding: 80px 0;
    background: white;
}

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

.specialty-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    overflow: hidden;
    position: relative;
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.specialty-card:hover .card-image img {
    transform: scale(1.06);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.card-icon-small {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.specialty-card:hover .card-icon-small {
    background: var(--color-pink);
}

.card-icon-small i {
    font-size: 20px;
    color: var(--color-green-icons);
    transition: var(--transition);
}

.specialty-card:hover .card-icon-small i {
    color: white;
}

.card-content {
    padding: 32px 28px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--color-text);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.card-divider {
    width: 40px;
    height: 3px;
    background: var(--color-pink);
    margin-bottom: 18px;
}

.card-content > p {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 15px;
}

.btn-ghost {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-ghost:hover {
    border-color: var(--color-pink);
    color: var(--color-pink);
    background: rgba(255, 79, 163, 0.03);
    gap: 12px;
}

.process-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: white;
    padding: 48px 32px 32px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.step-number {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: var(--color-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(255, 79, 163, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 24px auto;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 36px;
    color: var(--color-green-icons);
}

.step h3 {
    font-size: 21px;
    margin-bottom: 14px;
}

.step p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.testimonials-section {
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-section .container {
    max-width: 100%;
    padding: 0;
}

.testimonials-section .section-header {
    max-width: 1200px;
    margin: 0 auto 64px;
    padding: 0 24px;
}

.testimonials-carousel {
    position: relative;
    padding: 0 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-carousel {
    position: relative;
    padding: 0 60px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 10;
    transition: var(--transition);
    color: var(--color-pink);
    font-size: 18px;
}

.carousel-arrow:hover {
    background: var(--color-pink);
    color: white;
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 calc(25% - 18px);
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 18px;
}

.testimonial-text {
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--color-bg-alt);
}

.avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--color-green-icons);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.testimonial-author .name {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
    font-size: 15px;
}

.testimonial-author .role {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255,79,163,0.08) 0%, rgba(255,79,163,0.04) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(30px, 4vw, 40px);
    margin-bottom: 20px;
    color: var(--color-text);
    font-weight: 600;
}

.cta-content p {
    font-size: 19px;
    margin-bottom: 40px;
    color: var(--color-text-secondary);
    font-weight: 400;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: white;
    color: var(--color-pink);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    box-shadow: 0 10px 30px rgba(255, 79, 163, 0.15);
    transition: var(--transition);
}

.btn-cta-white:hover {
    background: var(--color-pink);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 79, 163, 0.25);
}

.footer {
    background: var(--color-footer);
    color: white;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 24px;
}

.footer-col h3 {
    font-size: 19px;
    margin-bottom: 20px;
    color: white;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-contact i {
    color: var(--color-green-accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    margin-bottom: 12px;
    font-family: var(--font-primary);
    font-size: 14px;
    transition: var(--transition);
}

.footer-form input:focus,
.footer-form textarea:focus {
    outline: none;
    border-color: var(--color-green-accent);
    background: rgba(255, 255, 255, 0.1);
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.checkbox {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox input {
    margin: 3px 0 0 0;
    width: auto;
}

.checkbox a {
    color: var(--color-green-accent);
    text-decoration: underline;
}

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

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.footer-legal {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.legal-links {
    font-size: 15px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--color-green-accent);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20ba5a;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: var(--color-pink);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 79, 163, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--color-pink-hover);
    transform: translateY(-4px);
}

@media (max-width: 1024px) {
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s ease;
        gap: 0;
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 8px 0 8px 20px;
        margin-top: 8px;
    }
    
    .btn-pill {
        width: 100%;
        text-align: center;
        margin-top: 16px;
    }
    
    .logo img {
        height: 55px;
    }
    
    .header.scrolled #headerLogo {
        height: 45px !important;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }
    
    .problem-section,
    .services-section,
    .specialties-section,
    .process-section,
    .testimonials-section,
    .cta-section {
        padding: 50px 0;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .services-benefits {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .map-container {
        height: 250px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .carousel-arrow {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .testimonials-carousel {
        padding: 0 60px;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .scroll-top {
        right: 24px;
        bottom: 100px;
    }
}

@media (max-width: 480px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-arrow.prev {
        left: -10px;
    }
    
    .carousel-arrow.next {
        right: -10px;
    }
    
    .testimonials-carousel {
        padding: 0 40px;
    }
}
