<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset e configuraÃ§Ãµes base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2c1810;
    background-color: #fefefe;
    overflow-x: hidden;
}

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

/* Main Content */
.main-content {
    background: #fefefe;
}

/* Title Section - Nova seÃ§Ã£o com tÃ­tulo e botÃµes */
.title-section {
    padding: 100px 0 150px;
    background: #202020;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.title-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.title-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #fefefe 0%, transparent 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 50%);
}

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

.main-title {
    font-family: "Lexend Deca", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.main-subtitle {
    font-family: "Lexend Deca", sans-serif;
    font-size: clamp(1.125rem, 2.5vw, 1.75rem);
    font-weight: 400;
    margin-bottom: 60px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Destaques com cor #FF9540 */
.highlight {
    color: #FF9540;
    font-weight: 600;
}

/* BotÃµes em destaque - Layout simplificado */
.main-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.button-description {
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 320px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    width: 100%;
    justify-content: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 149, 64, 0.2), transparent);
    transition: left 0.8s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #374B5C;
    color: #FF9540;
    border-color: #FF9540;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 149, 64, 0.3);
    border-color: #FF9540;
    background: #374B5C;
}

.btn-secondary {
    background: #2C5530;
    color: #4ADE80;
    border-color: #4ADE80;
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(74, 222, 128, 0.3);
    border-color: #4ADE80;
    background: #2C5530;
}

.btn-tertiary {
    background: #4C1D95;
    color: #A78BFA;
    border-color: #A78BFA;
}

.btn-tertiary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(167, 139, 250, 0.3);
    border-color: #A78BFA;
    background: #4C1D95;
}

.btn-large {
    padding: 22px 44px;
    font-size: 1.2rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #fefefe;
    position: relative;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.intro-text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #4a3420;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(217, 119, 6, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.05) 0%, rgba(234, 88, 12, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(217, 119, 6, 0.15);
    border-color: rgba(217, 119, 6, 0.2);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.3);
    position: relative;
    z-index: 1;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #f59e0b, #d97706, #ea580c);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

.feature-card h3 {
    font-family: "Lexend Deca", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c1810;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #6b4f3a;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    background: #202020;
    color: white;
    padding: 100px 0;
    border-radius: 40px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: "Lexend Deca", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.cta-content p {
    font-size: 1.4rem;
    margin-bottom: 60px;
    opacity: 0.9;
    line-height: 1.6;
}

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

/* Footer */
.footer {
    background: #2c1810;
    color: white;
    padding: 80px 0 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 12px;
}

.footer-logo p {
    opacity: 0.8;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-link:hover {
    color: #FF9540;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #4a3420;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* AnimaÃ§Ãµes */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.title-content {
    animation: fadeInUp 1.2s ease-out;
}

.feature-card {
    animation: slideInLeft 1s ease-out;
}

.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.4s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* SeleÃ§Ã£o de texto */
::selection {
    background: #FF9540;
    color: white;
}

/* Focus states para acessibilidade */
.btn:focus,
.footer-link:focus {
    outline: 2px solid #FF9540;
    outline-offset: 2px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .main-buttons {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
    }
    
    .button-description {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 20px;
        max-width: 100%;
        padding: 15px;
        border-radius: 10px;
        font-size: 0.9rem;
    }
    
    .button-description::before {
        display: none;
    }
    
    .button-group:hover .button-description {
        top: auto;
    }
    
    .btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .title-section,
    .features-section {
        padding: 80px 0;
    }
    
    .title-section {
        padding-bottom: 120px;
    }
    
    .content-wrapper {
        margin-bottom: 40px;
    }
    
    .hero-banner-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .btn {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .button-description {
        font-size: 0.85rem;
        padding: 12px;
    }
    
    .feature-card {
        padding: 40px 24px;
    }
    
    .title-content {
        padding: 0 16px;
    }
    
    .main-buttons {
        gap: 30px;
    }
    
    .title-section {
        padding-bottom: 100px;
    }
    
    .content-wrapper {
        margin-bottom: 30px;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .hero-banner-section {
        padding: 40px 0;
    }
}

/* Hero Banner Section */
.hero-banner-section {
    padding: 80px 0;
    background: #fefefe;
}

.hero-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.hero-banner-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-banner-image:hover {
    transform: scale(1.02);
}

.button-group:nth-child(1) .button-description {
    border-color: rgba(255, 149, 64, 0.3);
}

.button-group:nth-child(2) .button-description {
    border-color: rgba(74, 222, 128, 0.3);
}

.button-group:nth-child(3) .button-description {
    border-color: rgba(167, 139, 250, 0.3);
}

.title-content .btn {
    border-radius: 10px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    text-align: center;
}

.title-content .btn-primary {
    background: #FFDA00;
    color: #2c1810;
    border-color: #FFDA00;
}

.title-content .btn-primary:hover {
    background: #FFDA00;
    color: #2c1810;
    border-color: #FFDA00;
    box-shadow: 0 15px 35px rgba(255, 218, 0, 0.3);
}

.title-content .btn-secondary {
    background: #FF9540;
    color: white;
    border-color: #FF9540;
}

.title-content .btn-secondary:hover {
    background: #FF9540;
    color: white;
    border-color: #FF9540;
    box-shadow: 0 15px 35px rgba(255, 149, 64, 0.3);
}

.title-content .btn-tertiary {
    background: #2C5530;
    color: white;
    border-color: #2C5530;
}

.title-content .btn-tertiary:hover {
    background: #2C5530;
    color: white;
    border-color: #2C5530;
    box-shadow: 0 15px 35px rgba(44, 85, 48, 0.3);
}

.cta-section .btn {
    border-radius: 10px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    text-align: center;
}

.cta-section .btn-primary {
    background: #FFDA00;
    color: #2c1810;
    border-color: #FFDA00;
}

.cta-section .btn-primary:hover {
    background: #FFDA00;
    color: #2c1810;
    border-color: #FFDA00;
    box-shadow: 0 15px 35px rgba(255, 218, 0, 0.3);
}

.cta-section .btn-secondary {
    background: #FF9540;
    color: white;
    border-color: #FF9540;
}

.cta-section .btn-secondary:hover {
    background: #FF9540;
    color: white;
    border-color: #FF9540;
    box-shadow: 0 15px 35px rgba(255, 149, 64, 0.3);
}

.cta-section .btn-tertiary {
    background: #2C5530;
    color: white;
    border-color: #2C5530;
}

.cta-section .btn-tertiary:hover {
    background: #2C5530;
    color: white;
    border-color: #2C5530;
    box-shadow: 0 15px 35px rgba(44, 85, 48, 0.3);
} </pre></body></html>