/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #EAB308;
    --primary-dark: #CA8A04;
    --secondary-color: #004E89;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --success-color: #28A745;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-icon svg {
    width: 48px;
    height: 48px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #001F3F;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.85rem;
    font-weight: 400;
    color: #666666;
    margin: 0;
    line-height: 1.2;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: pointer;
    white-space: nowrap;
}

.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-header {
    font-size: 0.85rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-white);
    color: #001F3F;
    border: 2px solid #001F3F;
    justify-content: center;
    text-align: center;
}

.btn-header:hover {
    background: #001F3F;
    color: var(--bg-white);
}

.btn-large {
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
    display: inline-flex;
    justify-content: center;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #001F3F 0%, #003366 100%);
    color: var(--bg-white);
    padding: 4rem 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.btn-hero {
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
    margin-top: 1rem;
    background: #25D366;
    color: var(--bg-white);
    border: none;
    justify-content: center;
    text-align: center;
    display: inline-flex;
    gap: 0.5rem;
}

.btn-hero svg {
    flex-shrink: 0;
}

.btn-hero:hover {
    background: #20BA5A;
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-note {
    font-size: 1rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

/* Intro Section */
.intro-section {
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-icon-blue {
    color: #2563EB;
}

.benefit-icon-green {
    color: #10B981;
}

.benefit-icon-orange {
    color: #EAB308;
}

.benefit-icon-purple {
    color: #8B5CF6;
}

.benefit-icon-red {
    color: #EF4444;
}

.benefit-icon-light-green {
    color: #22C55E;
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    background: linear-gradient(135deg, #FEFCE8 0%, var(--bg-white) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-size {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.pricing-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    background: var(--bg-light);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.step-number {
    background: var(--primary-color);
    color: var(--bg-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.steps-note {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
}

/* Discard Section */
.discard-section {
    background: var(--bg-white);
}

.discard-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.discard-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.discard-note {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 2rem;
    font-style: italic;
}

/* Additional Info Section */
.additional-info-section {
    background: var(--bg-white);
    padding: 3rem 0;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--bg-light);
}

/* Region Section */
.region-section {
    background: var(--bg-white);
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 5rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.final-cta-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta-section .btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: none;
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
    justify-content: center;
    text-align: center;
    display: inline-flex;
}

.final-cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    font-size: 1.1rem;
    margin: 0;
}

.footer-contact a {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite, bounce-float 2s infinite;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Animação combinada de pulo e brilho */
@keyframes bounce-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .btn-header {
        width: 100%;
        font-size: 0.85rem;
        padding: 0.875rem 1rem;
        justify-content: center;
        text-align: center;
    }
    
    .btn-header svg {
        width: 18px;
        height: 18px;
    }
    
    .logo {
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .hero {
        padding: 3rem 0;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-text {
        font-size: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1.5rem 1rem;
    }
    
    .benefit-item h3 {
        font-size: 1.1rem;
    }
    
    .benefit-item p {
        font-size: 0.95rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .discard-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-text {
        font-size: 1.25rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .btn-large {
        font-size: 1rem;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 400px;
        justify-content: center;
        margin: 0 auto;
        display: flex;
    }
    
    .final-cta-section .btn-primary {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .pricing-size {
        font-size: 2rem;
    }

    .pricing-price {
        font-size: 1.75rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-links {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .logo-title {
        font-size: 1.1rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
    }
    
    .btn-header {
        font-size: 0.8rem;
        padding: 0.75rem 0.875rem;
    }
    
    .btn-header svg {
        width: 16px;
        height: 16px;
    }
    
    .btn-hero {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    .btn-hero svg {
        width: 18px;
        height: 18px;
    }
    
    .btn-large {
        font-size: 0.95rem;
        padding: 1rem 1.5rem;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    .btn-large svg {
        width: 20px;
        height: 20px;
    }
    
    .final-cta-section .btn-primary {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .benefit-item {
        padding: 1.25rem 1rem;
    }
    
    .benefit-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    .benefit-item h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .step-item {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact {
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
