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

:root {
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary: #004E89;
    --dark: #1A1A1A;
    --dark-light: #2D2D2D;
    --text: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --success: #10B981;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(255, 107, 53, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo img {
    height: 100px;
    border: 1px solid red;
    width: auto;
}

.btn-whatsapp-header {
    background: var(--success);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp-header:hover {
    background: #0D9668;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight {
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 40px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.check-icon {
    background: var(--success);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 32px 0;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 53, 0.7);
    }
}

.hero-guarantee {
    margin-top: 24px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: var(--gray);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
}

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

.problem-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.problem-card p {
    color: var(--text-light);
}

/* Solution Section */
.solution-section {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.solution-intro {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Packages Section */
.packages-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.packages-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 16px;
}

.packages-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.package-card {
    min-width: 0; /* Permite que o card encolha */
    background: var(--white);
    border-radius: 16px;
    padding: 30px 20px; /* Reduzi padding lateral */
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.package-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.package-card.premium {
    border-color: #FFD700;
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.package-card.premium .package-badge {
    background: #FFD700;
    color: var(--dark);
}

.package-card.premium:hover {
    border-color: #FFD700;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

/* Card Landing Page PRO */
.package-card.landing-pro {
    border-color: #10B981;
}

.package-card.landing-pro .package-badge {
    background: #10B981;
    color: var(--white);
}

.package-card.landing-pro:hover {
    border-color: #10B981;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
}

/* Card Personalizado - nova cor (roxo) */
.package-card.personalized {
    border-color: #764ba2;
}

.package-card.personalized .package-badge {
    background: #764ba2;
    color: var(--white);
}

.package-card.personalized:hover {
    border-color: #764ba2;
    box-shadow: 0 8px 30px rgba(118, 75, 162, 0.3);
}

.package-header {
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray);
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.package-price {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-old {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 1rem;
}

.price-new {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}

.price-note {
    color: var(--text-light);
    font-size: 0.9rem;
}

.package-features {
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.feature .check {
    color: var(--success);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-package {
    display: block;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s;
    margin-bottom: 16px;
}

.btn-package:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.package-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--white);
}

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

.benefit-card {
    text-align: center;
    padding: 30px;
    background: var(--gray);
    border-radius: 12px;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

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

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.benefit-card p {
    color: var(--text-light);
}

/* Social Proof */
.social-proof {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.social-proof .section-title {
    color: var(--white);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}


/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--gray);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--dark);
}

.faq-toggle {
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Final */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-final p {
    font-size: 1.3rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-note {
    margin-top: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo img {
    height: 60px;
    width: auto;
    /* filter: brightness(0) invert(1); */
}

.footer-info p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--success);
    color: var(--white);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .price-new {
        font-size: 2rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
}

/* Responsivo para tablets */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 0;
    background: #f8f9fa;
    border-top: 3px solid var(--primary);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.disclaimer-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.disclaimer-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1rem;
}

.disclaimer-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.disclaimer-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

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

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.testimonial-content {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-badge {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-badge span {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.testimonial-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
    line-height: 1.2;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid #f0f0f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.company-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.company-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-placeholder {
    font-size: 2.5rem;
}

.company-details h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 800;
}

.company-type {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 1rem;
}

.company-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-badge-company {
    flex-shrink: 0;
}

.testimonial-badge-company span {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.testimonial-body {
    position: relative;
    margin-bottom: 30px;
}

.quote-icon {
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
    font-weight: bold;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.highlight-icon {
    font-size: 1.3rem;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-meta {
    flex: 1;
    min-width: 250px;
}

.testimonial-meta p {
    margin-bottom: 4px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-meta .meta-company {
    color: var(--text);
    font-weight: 600;
}

.testimonial-verify {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-weight: 600;
    font-size: 0.9rem;
}

.verify-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--success);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.testimonial-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: var(--text);
    padding: 20px;
    background: #f0fdf4;
    border-left: 4px solid var(--success);
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .company-info {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .testimonial-highlights {
        grid-template-columns: 1fr;
    }
    
    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}