/* --- VARIÁVEIS OFICIAIS C'ÉVOLU --- */
:root {
    --cor-texto: #5f4c63;
    --cor-roxo-claro: #faf0fc;
    --cor-roxo: #9b3eb4;
    --cor-roxo-escuro: #681c7e; 
    --cor-roxo-mais-escuro: #4b0f5c;
    --cor-verde: #00c767;
    --cor-verde-escuro: #018948;
    --cor-laranja: #ff6b00; 
    --cor-laranja-escuro: #e65c00;
    --container-width: 1200px;
    --bg-card: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* TRAVA DE OVERFLOW REFORÇADA PARA MOBILE */
html, body { 
    overflow-x: hidden; 
    width: 100%; 
    margin: 0; 
    padding: 0; 
    position: relative; 
}

body, input, button, select, textarea { font-family: 'Montserrat', sans-serif !important; }
body { color: var(--cor-texto); background-color: var(--cor-roxo-claro); line-height: 1.6; font-weight: 500; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; width: 100%; }

/* UTILITÁRIOS */
.mt-20 { margin-top: 20px; display: inline-block; }
.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }
.text-gradient { background: linear-gradient(135deg, var(--cor-roxo-mais-escuro), var(--cor-roxo)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.badge-premium { background: rgba(155, 62, 180, 0.08); color: var(--cor-roxo-escuro); padding: 8px 18px; border-radius: 30px; font-size: 0.9rem; font-weight: 700; display: inline-block; margin-bottom: 10px; border: 1px solid rgba(155, 62, 180, 0.15); }

/* BLOBS DE FUNDO */
.bg-blob { position: absolute; border-radius: 50%; filter: blur(100px); z-index: -1; opacity: 0.4; pointer-events: none;}
.blob-1 { top: -10%; right: -5%; width: 500px; height: 500px; background: var(--cor-roxo); }
.blob-2 { top: 40%; left: -10%; width: 400px; height: 400px; background: rgba(0, 199, 103, 0.3); }

/* NAVBAR */
.navbar { padding: 40px 0; position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.3s ease; }
.navbar.scrolled { background: rgba(250, 240, 252, 0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(155, 62, 180, 0.1); padding: 15px 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; } 
.logo-img { height: 120px; width: auto; object-fit: contain; transition: height 0.3s ease; }
.navbar.scrolled .logo-img { height: 80px; }

/* BOTÕES */
.btn { display: inline-flex; justify-content: center; align-items: center; padding: 14px 30px; border-radius: 8px; font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer; transition: all 0.3s ease; border: none; text-align: center; }
.btn-large { padding: 18px 40px; font-size: 1.1rem; }
.btn-success { background-color: var(--cor-verde); color: #ffffff; }
.btn-success:hover { background-color: var(--cor-verde-escuro); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--cor-roxo-escuro); border: 2px solid var(--cor-roxo-escuro); }
.btn-outline:hover { background: var(--cor-roxo-escuro); color: white; }
.glow-btn { box-shadow: 0 10px 30px rgba(0, 199, 103, 0.3); }
.w-100 { width: 100%; }

/* HERO B2B SECTION */
.hero-b2b { padding: 190px 0 80px 0; position: relative; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-content { text-align: left; }
.new-hero-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: #2d2330; margin: 15px 0; line-height: 1.25; letter-spacing: -0.5px; }
.hero-subtitle { font-size: 1.1rem; font-weight: 500; color: #726275; margin-bottom: 30px; line-height: 1.6; }
.hero-cta-group { margin-top: 15px; margin-bottom: 30px; }
.micro-copy-hero { font-size: 0.85rem; color: #726275; font-weight: 600; margin-top: 15px; display: flex; align-items: center; gap: 6px; }

.hero-image { position: relative; display: flex; justify-content: center; }
.floating-img { max-width: 100%; height: auto; animation: float 6s ease-in-out infinite; filter: drop-shadow(0 20px 30px rgba(155, 62, 180, 0.2)); }
.soft-dashboard { border-radius: 40px; filter: drop-shadow(0 25px 50px rgba(155, 62, 180, 0.15)); }

@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

/* SEÇÕES CLARAS PADRÃO */
.section-light { background: var(--bg-card); padding: 80px 0; }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 50px auto; }
.section-header h2 { font-size: clamp(2rem, 3.5vw, 2.5rem); color: var(--cor-roxo-mais-escuro); font-weight: 800; margin-bottom: 15px; }
.section-header p { font-size: 1.1rem; color: #726275; }

/* PONTOS DE DOR (PAIN CARDS) */
.pain-points-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pain-card { background: #fff; padding: 30px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid rgba(255, 107, 0, 0.2); border-top: 5px solid var(--cor-laranja); text-align: center; transition: transform 0.3s ease; }
.pain-card:hover { transform: translateY(-5px); }
.pain-icon { font-size: 2.5rem; color: var(--cor-laranja); margin-bottom: 20px; }
.pain-card p { font-size: 1.05rem; color: var(--cor-texto); line-height: 1.6; }

/* 3 PILARES E VÍDEO YOUTUBE */
.features { padding: 80px 0; }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; border-radius: 16px; box-shadow: 0 15px 40px rgba(0,0,0,0.2); background: #000; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.benefit-card { background: #fff; padding: 35px; border-radius: 16px; border: 1px solid rgba(155, 62, 180, 0.15); transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(155, 62, 180, 0.1); border-color: var(--cor-roxo); }
.icon-wrapper { width: 60px; height: 60px; background: var(--cor-roxo-claro); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.icon-wrapper i { font-size: 24px; color: var(--cor-roxo); }
.benefit-card h3 { color: var(--cor-roxo-escuro); font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.benefit-card p { font-size: 0.95rem; color: #726275; }

/* RISCO ZERO (DARK SECTION) */
.section-dark { background-color: var(--cor-roxo-mais-escuro); padding: 80px 0; color: #fff; }
.title-dark { font-size: 2.5rem; color: #fff; font-weight: 800; margin-bottom: 25px; }
.subtitle-dark { font-size: 1.15rem; color: rgba(255,255,255,0.85); max-width: 850px; margin: 0 auto; line-height: 1.8; }
.highlight-text-dark { font-size: 1.2rem; font-weight: 700; color: #00c767; margin-top: 30px; margin-bottom: 20px; }

/* PRICING E DESTAQUE ROYALTIES */
.pricing-section { padding: 80px 0; }
.pricing-card { max-width: 800px; margin: 0 auto; background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(75, 15, 92, 0.1); border: 1px solid rgba(155, 62, 180, 0.2); }
.pricing-header { background: var(--cor-roxo); color: #fff; padding: 40px; text-align: center; }
.pricing-header h2 { font-size: 2rem; margin-bottom: 10px; font-weight: 800; }
.pricing-body { padding: 50px; text-align: center; }
.price-strike { font-size: 1.2rem; color: #a093a3; text-decoration: line-through; margin-bottom: 5px; font-weight: 600; }
.price-current { font-size: 3.5rem; font-weight: 800; color: var(--cor-roxo-mais-escuro); line-height: 1; }
.price-current span { font-size: 1.2rem; font-weight: 500; color: #726275; }
.price-installments { font-size: 1.2rem; color: #5f4c63; margin-top: 10px; }

.bold-royalties { font-size: 1.3rem; font-weight: 800; background: rgba(0, 199, 103, 0.15); border: 2px solid #00c767; color: var(--cor-verde-escuro); padding: 20px; border-radius: 12px; }
.pricing-description { color: #726275; font-size: 1rem; line-height: 1.6; }
.pricing-footnote { color: #666; font-size: 0.75rem; line-height: 1.5; font-style: italic; }

/* QUEM SOMOS */
.about-box p { font-size: 1.1rem; color: #5f4c63; max-width: 850px; margin: 0 auto; line-height: 1.8; }

/* MODAL / POPUP */
.cevolu-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(75, 15, 92, 0.85); backdrop-filter: blur(8px); }
.modal-content-box { position: relative; background-color: #fff; margin: 3% auto; padding: 0; width: 90%; max-width: 1200px; height: 85vh; border-radius: 16px; box-shadow: 0 25px 50px rgba(0,0,0,0.5); animation: slideDown 0.4s ease-out; overflow: hidden; }
.close-modal-btn { position: absolute; top: 15px; right: 25px; color: #fff; background: var(--cor-laranja); border-radius: 50%; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: bold; cursor: pointer; z-index: 10; border: none; box-shadow: 0 4px 10px rgba(0,0,0,0.2); transition: transform 0.2s;}
.close-modal-btn:hover { transform: scale(1.1); background: var(--cor-laranja-escuro); }
.modal-iframe { width: 100%; height: 100%; border: none; background: #fff;}
@keyframes slideDown { from {opacity: 0; transform: translateY(-50px);} to {opacity: 1; transform: translateY(0);} }

/* FAQ ACCORDION */
.faq-wrapper { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: #fff; border: 1px solid rgba(155, 62, 180, 0.2); border-radius: 12px; overflow: hidden; transition: all 0.3s ease; }
.faq-item[open] { border-color: var(--cor-roxo); box-shadow: 0 5px 15px rgba(155, 62, 180, 0.1); }
.faq-item summary { padding: 20px 25px; font-weight: 700; font-size: 1.1rem; color: var(--cor-roxo-escuro); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--cor-roxo); transition: transform 0.3s ease; }
.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); color: #fff; background-color: var(--cor-roxo); width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%;}
.faq-content { padding: 0 25px 20px 25px; color: #726275; font-size: 1rem; line-height: 1.6; border-top: 1px solid transparent; }
.faq-item[open] .faq-content { border-top: 1px solid rgba(155, 62, 180, 0.1); padding-top: 20px; }


/* ==========================================================
   FORM SECTION INLINE
   ========================================================== */
.form-section { padding: 80px 0; background: var(--bg-card); }
.form-container { max-width: 560px; margin: 0 auto; background: #fff; border-radius: 24px; padding: 48px 40px; box-shadow: 0 20px 50px rgba(75, 15, 92, 0.08); border: 1px solid rgba(155, 62, 180, 0.12); }
.form-header { text-align: center; margin-bottom: 32px; }
.form-header h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.form-header p { font-size: 1rem; color: #726275; }

/* Campos de preenchimento (Inputs Elegantes) */
.slide-form-fields { padding: 0; }
.slide-field { margin-bottom: 20px; }
.slide-label { display: block; font-size: 0.85rem; font-weight: 700; color: #4b0f5c; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }

.slide-input { 
    width: 100%; padding: 15px 18px; 
    border: 2px solid transparent; border-radius: 12px; 
    font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 600; color: var(--cor-roxo-mais-escuro); 
    background: #f3eff5; transition: all 0.3s ease; outline: none; 
}
.slide-input::placeholder { color: #b0a4b5; font-weight: 500; }
.slide-input:focus { 
    border-color: var(--cor-roxo); 
    background: #ffffff; 
    box-shadow: 0 8px 25px rgba(155, 62, 180, 0.15); 
    transform: translateY(-2px);
}

.slide-form-disclaimer { font-size: 0.8rem; color: #8e8093; font-weight: 600; margin: 10px 0 24px 0; text-align: center; }

/* Botão de Envio */
.slide-form-submit { 
    width: 100%; padding: 18px; 
    background: #c0b5c4; 
    color: #fff; border: none; border-radius: 14px; 
    font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 800; 
    cursor: not-allowed; transition: all 0.3s ease; 
    box-shadow: none; 
    display: flex; align-items: center; justify-content: center; gap: 12px; 
}
.slide-form-submit:not(:disabled) { 
    background: linear-gradient(135deg, #00c767, #00a656); 
    cursor: pointer; 
    box-shadow: 0 8px 25px rgba(0, 199, 103, 0.35); 
}
.slide-form-submit:not(:disabled):hover { 
    background: linear-gradient(135deg, #00d970, #018948); 
    transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0, 199, 103, 0.5); 
}
.slide-form-submit:active { transform: translateY(0); }
.slide-submit-icon { transition: transform 0.3s ease; }
.slide-form-submit:not(:disabled):hover .slide-submit-icon { transform: translateX(5px); }

.slide-spinner { width: 22px; height: 22px; border: 3px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: slideSpin 0.7s linear infinite; }
@keyframes slideSpin { to { transform: rotate(360deg); } }

/* ==========================================================
   SLIDE-UP FORM PANEL
   ========================================================== */

/* Overlay escuro por trás do painel */
.slide-form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(75, 15, 92, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.slide-form-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Painel principal — sobe do fundo */
.slide-form-panel {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%); /* escondido completamente */
    width: 100%;
    max-width: 560px;
    background: #fff;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 50px rgba(75, 15, 92, 0.2);
    z-index: 1999;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    pointer-events: none;
}
.slide-form-panel.open {
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Aba de arraste (handle) */
.slide-form-handle {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(135deg, var(--cor-roxo-mais-escuro), var(--cor-roxo));
    flex-shrink: 0;
}

/* Botão toggle da aba */
.slide-form-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0 20px;
}
.slide-form-arrow {
    transition: transform 0.4s ease;
}
.slide-form-panel.open .slide-form-arrow {
    transform: rotate(180deg);
}

/* Área de conteúdo com scroll */
.slide-form-content {
    padding: 28px 32px 32px;
    overflow-y: auto;
    max-height: 80vh;
    -webkit-overflow-scrolling: touch;
}

/* Cabeçalho do formulário */
.slide-form-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
}
.slide-form-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.slide-form-subtitle {
    font-size: 0.9rem;
    color: #726275;
    font-weight: 500;
}

/* Botão de fechar (X) */
.slide-form-close {
    background: #f3eff5;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
    color: var(--cor-roxo-escuro);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease;
    margin-left: 12px;
}
.slide-form-close:hover {
    background: #e4dfe8;
}

/* === SUCCESS MODAL === */
.success-modal-overlay { position: fixed; inset: 0; background: rgba(75, 15, 92, 0.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 10001; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; padding: 24px; }
.success-modal-overlay.active { opacity: 1; pointer-events: auto; }

.success-modal-card { background: #fff; border-radius: 24px; padding: 48px 40px; max-width: 480px; width: 100%; text-align: center; box-shadow: 0 25px 60px rgba(75, 15, 92, 0.3); transform: scale(0.9) translateY(20px); transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); position: relative; overflow: hidden; }
.success-modal-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--cor-roxo), var(--cor-verde)); }
.success-modal-overlay.active .success-modal-card { transform: scale(1) translateY(0); }

.success-modal-icon { margin-bottom: 24px; }
.success-modal-icon svg { animation: successPop 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both; }
.success-check-path { stroke-dasharray: 50; stroke-dashoffset: 50; animation: successDraw 0.6s ease 0.5s forwards; }

.success-modal-title { font-size: 1.4rem; font-weight: 800; color: var(--cor-roxo-mais-escuro); margin-bottom: 12px; line-height: 1.3; }
.success-modal-text { font-size: 1rem; color: #726275; margin-bottom: 32px; line-height: 1.6; }

.success-modal-actions { display: flex; gap: 12px; }
.success-btn { flex: 1; padding: 14px 20px; border-radius: 12px; font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; }
.success-btn-close { background: #f0ecf2; color: var(--cor-roxo-escuro); border: 2px solid rgba(155, 62, 180, 0.15); }
.success-btn-close:hover { background: #e4dfe8; border-color: var(--cor-roxo); }
.success-btn-whatsapp { background: var(--cor-verde); color: #fff; box-shadow: 0 6px 20px rgba(0, 199, 103, 0.3); }
.success-btn-whatsapp:hover { background: var(--cor-verde-escuro); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 199, 103, 0.4); }

@keyframes successPop { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes successDraw { to { stroke-dashoffset: 0; } }

/* FOOTER ORIGINAL */
.footer-premium { background-color: var(--cor-roxo-mais-escuro); color: #ffffff; padding: 40px 0; width: 100%; position: relative; z-index: 20; }
.footer-title { font-size: 1.5rem; text-align: center; margin-top: 2rem; margin-bottom: 1rem; font-weight: 600; }
.partners-grid, .awards-grid { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 40px; margin-bottom: 4rem; padding: 0 16px; }
.partner-img { height: 5rem; width: auto; margin: 0 auto; object-fit: contain; }
.award-item { display: flex; flex-direction: column; align-items: center; max-width: 180px; }
.award-img { height: 7rem; width: auto; margin: 0 auto; object-fit: contain; }
.award-text { font-size: 0.75rem; text-align: center; margin-top: 8px; font-weight: 400; line-height: 1.4; }
.footer-contact-area { display: flex; flex-direction: column; align-items: center; gap: 24px; margin-top: 24px; }
.social-icons { display: flex; justify-content: center; gap: 24px; }
.social-icons a { color: #ffffff; font-size: 1.5rem; transition: transform 0.3s ease; text-decoration: none; }
.footer-address { text-align: center; font-size: 1rem; font-weight: 400; line-height: 1.6; padding: 0 24px; }
.footer-phone { margin-top: 8px; font-size: 1.05rem; font-weight: 600; }
.inpi-text { text-align: center; font-size: 0.85rem; font-weight: 300; opacity: 0.8; margin-top: 40px; margin-bottom: 8px; padding: 0 16px; }

/* ANIMAÇÕES */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; } .delay-2 { transition-delay: 0.3s; } .delay-3 { transition-delay: 0.45s; }

/* RESPONSIVIDADE (MOBILE E TABLETS) */
@media (max-width: 992px) {
    .hero-grid, .two-cols, .benefits-grid, .pain-points-grid { grid-template-columns: 1fr; flex-direction: column; gap: 30px; }
    .hero-content { text-align: center; }
    .hero-cta-group { display: flex; flex-direction: column; align-items: center; }
    .hero-b2b { padding: 150px 0 60px 0; }
    .hero-image { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .hero-image img { max-width: 90%; }
    .pricing-body { padding: 30px 20px; }
    .modal-content-box { height: 90vh; width: 95%; margin: 5% auto; }
    .close-modal-btn { top: -15px; right: -5px; }

    /* Painel ocupa tela toda em mobile */
    .slide-form-panel { max-width: 100%; border-radius: 20px 20px 0 0; }
    .slide-form-content { padding: 24px 20px 28px; }
}

@media (max-width: 600px) {
    .navbar { padding: 20px 0; }
    .logo-img { height: 90px; }
    .new-hero-title { font-size: 2rem; }
    .btn-large { width: 100%; font-size: 1rem; padding: 15px; }
    
    .pricing-card { margin: 0; width: 100%; } 
    .pricing-body { padding: 30px 15px; }
    .price-current { font-size: 2.2rem; word-wrap: break-word; }
    .price-current span { display: block; font-size: 1rem; margin-top: 5px; }
    .bold-royalties { font-size: 1rem; padding: 15px 10px; word-wrap: break-word; }
    
    .partners-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 30px; margin-bottom: 3rem; }
    .partner-img { height: 3rem; max-width: 45%; }
    
    .awards-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px; margin-bottom: 2rem; }
    .award-item { max-width: 45%; display: flex; flex-direction: column; align-items: center; }
    .award-img { height: 5rem; max-width: 100%; }
    .award-text { font-size: 0.65rem; text-align: center; }
    
    .title-dark { font-size: 2rem; }

    /* FORM RESPONSIVO */
    .form-container { padding: 36px 24px; border-radius: 20px; }

    /* SUCCESS MODAL RESPONSIVO */
    .success-modal-card { padding: 36px 24px; border-radius: 20px; }
    .success-modal-title { font-size: 1.2rem; }
    .success-modal-actions { flex-direction: column; }
    .success-btn { width: 100%; }
}