/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0a3847;
    background-color: #fff;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.btn-primary {
    background: #8ee478;
    color: #0a3847;
    box-shadow: 0 4px 15px rgba(142, 228, 120, 0.3);
}

.btn-primary:hover {
    background: #7dd965;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 228, 120, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #0a3847;
    border: 2px solid #8ee478;
}

.btn-secondary:hover {
    background: #8ee478;
    color: #0a3847;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 56, 71, 0.95);
    color: white;
    padding: 20px;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-link {
    color: #8ee478;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie-accept,
.btn-cookie-close {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

.btn-cookie-accept {
    background: #8ee478;
    color: #0a3847;
}

.btn-cookie-close {
    background: transparent;
    color: white;
    border: 1px solid #8ee478;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 15px 0;
}

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

.nav-logo img {
    height: 90px;
}

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

.nav-link {
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #f1f5f9;
    color: #16a34a;
}

.nav-cta {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #84CC16, #65A30D);
    color: rgb(245, 243, 243);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(132, 204, 22, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(132, 204, 22, 0.4);
    background: linear-gradient(135deg, #65A30D, #84CC16);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #0a3847;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(142, 228, 120, 0.1) 0%, rgba(10, 56, 71, 0.05) 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #0a3847;
}

.highlight {
    color: #8ee478;
    background: linear-gradient(135deg, #8ee478, #7dd965);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.feature-icon {
    color: #8ee478;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
    min-width: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #0a3847;
    font-weight: 600;
}

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

.hero-img {
    width: 100%;
    max-width: 420px;
    border-radius: 30% 0% 20% 0% / 30% 30% 20% 70%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-left: 70px;
    display: block;
    transform: none;
}

/* Section Styles */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #0a3847;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #0a3847;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8fffe;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #8ee478;
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a3847;
    margin-bottom: 15px;
}

.service-card p {
    color: #0a3847;
    opacity: 0.8;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    background: #f8fffe;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #8ee478;
}

.team-info h3 {
    font-size: 1.5rem;
    color: #0a3847;
    margin-bottom: 5px;
    font-weight: 700;
}

.team-info p {
    color: #0a3847;
    margin-bottom: 10px;
}

.team-description {
    opacity: 0.8;
    line-height: 1.6;
}

/* Plans Section */
.plans-section {
    padding: 100px 0;
    background: #f8fffe;
}

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

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.plan-card.premium {
    border-color: #8ee478;
    background: linear-gradient(135deg, rgba(142, 228, 120, 0.05), rgba(142, 228, 120, 0.02));
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8ee478, #7dd965);
    color: #0a3847;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a3847;
    margin-bottom: 10px;
}

.plan-subtitle {
    color: #0a3847;
    opacity: 0.7;
    margin-bottom: 20px;
}

.plan-price {
    margin-bottom: 20px;
}

.price-old {
    color: #a0aec0;
    text-decoration: line-through;
    font-size: 1rem;
}

.price-current {
    color: #0a3847;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 5px;
}

.price-period {
    color: #0a3847;
    font-size: 1.2rem;
    opacity: 0.7;
}

.plan-description {
    color: #0a3847;
    margin-bottom: 30px;
    opacity: 0.8;
}

.plan-features {
    margin-bottom: 30px;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #0a3847;
}

.feature::before {
    content: "✓";
    color: #8ee478;
    font-weight: bold;
    margin-right: 10px;
    min-width: 20px;
}

/* How it Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: white;
}

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

.step {
    background: #f8fffe;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8ee478, #7dd965);
    color: #0a3847;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    color: #0a3847;
    margin-bottom: 15px;
    font-weight: 700;
}

.step p {
    color: #0a3847;
    line-height: 1.6;
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f8fffe;
}

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

.contact-info h3 {
    font-size: 2rem;
    color: #0a3847;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
    min-width: 40px;
}

.contact-item strong {
    color: #0a3847;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    color: #0a3847;
    opacity: 0.8;
    margin: 0;
}

.contact-cta {
    text-align: center;
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-cta h3 {
    font-size: 2rem;
    color: #0a3847;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-cta p {
    color: #0a3847;
    opacity: 0.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #0a3847;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    color: #8ee478;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #8ee478;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

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

.whatsapp-btn span:first-child {
    font-size: 1.2rem;
}

/* Responsive Design - MELHORADO */
@media (max-width: 1024px) {
    .nav-logo img {
        height: 70px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header mobile */
    .nav-logo img {
        height: 60px;
    }
    
    .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: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero mobile */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero-img {
        margin-left: 0;
        max-width: 300px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Sections mobile */
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-member {
        padding: 30px 20px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .plan-card {
        padding: 30px 20px;
    }
    
    .price-current {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step {
        padding: 30px 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-cta {
        padding: 40px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Header extra small */
    .nav-logo img {
        height: 50px;
    }
    
    /* Hero extra small */
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .feature-item {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .hero-img {
        max-width: 250px;
    }
    
    /* Sections extra small */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .hero-section,
    .services-section,
    .team-section,
    .plans-section,
    .how-it-works-section,
    .contact-section {
        padding: 50px 0;
    }
    
    .service-card,
    .team-member,
    .plan-card,
    .step {
        padding: 25px 15px;
    }
    
    .service-card h3,
    .team-info h3,
    .plan-title,
    .step h3 {
        font-size: 1.3rem;
    }
    
    .price-current {
        font-size: 2rem;
    }
    
    .price-period {
        font-size: 1rem;
    }
    
    /* WhatsApp button mobile */
    .whatsapp-btn span:last-child {
        display: none;
    }
    
    .whatsapp-btn {
        padding: 15px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
    
    /* Cookie banner mobile */
    .cookie-banner {
        padding: 15px;
    }
    
    .btn-cookie-accept,
    .btn-cookie-close {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Touch improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-link,
    .service-card,
    .team-member,
    .plan-card,
    .step {
        transition: none;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    .service-card:active,
    .team-member:active,
    .plan-card:active,
    .step:active {
        transform: scale(0.98);
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #8ee478;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

