* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E4070;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2E4070;
    cursor: pointer;
    padding: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #2E4070;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2E4070;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-fale-conosco,
.btn-seja-revendedor {
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-fale-conosco {
    background: #89C33F;
    color: white;
}

.btn-fale-conosco:hover {
    background: #7AB332;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(137, 195, 63, 0.3);
}

.btn-seja-revendedor {
    background: #4ECFED;
    color: white;
}

.btn-seja-revendedor:hover {
    background: #3BB5D4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 207, 237, 0.3);
}

/* Navbar Responsivo */
@media (max-width: 968px) {
    .nav-links {
        gap: 20px;
    }
    
    .nav-buttons {
        gap: 8px;
    }
    
    .btn-fale-conosco,
    .btn-seja-revendedor {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-links.active {
        max-height: 300px;
    }
    
    .nav-links li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 20px;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2E4070 0%, #587AD6 100%);
    color: white;
    
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 0;
}

.hero-text {
    padding-left: 10px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 0.95;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #ffffff;
    font-weight: 400;
}

.hero-formula {
    margin-top: 30px;
}

.formula-image {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.15));
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image .background-group {
    position: absolute;
    width: 100%;
    height: auto;
    max-width: 500px;
    z-index: 1;
    opacity: 0.95;
}

.hero-image .pessoa-cartao {
    width: 100%;
    height: auto;
    max-width: 450px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 2;
}

.hero-bottom {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.hero-card {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

/* Renda Extra Section */
.renda-extra {
    padding: 80px 0;
    background: #f8f9fa;
}

.renda-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.renda-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.renda-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

.renda-text {
    padding-left: 20px;
}

.renda-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: #4ECFED;
}

.renda-text h2 {
    font-size: 4rem;
    color: #4ECFED;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.renda-description {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2E4070;
    font-weight: 500;
    line-height: 1.4;
}

.renda-info {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #666;
    font-weight: 400;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #2E4070;
    font-weight: 500;
}

.benefits-list i {
    color: #4ECFED;
    font-size: 1rem;
    width: 20px;
}

/* Vantagens Section */
.vantagens {
    padding: 80px 0;
    background: white;
}

.vantagens-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.vantagens-header h2 {
    font-size: 2.5rem;
    color: #2E4070;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.3;
}

.vantagens-header .highlight {
    color: #2E4070;
    font-weight: 800;
}

.vantagens-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

.vantagens-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Plano Uni Plus Section */
.plano-uni-plus {
    padding: 0;
    background: #89C33F;
    color: white;
    overflow: hidden;
}

.plano-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 450px;
}

.plano-grid > .container {
    padding: 40px 60px 40px 0;
}

.plano-content {
    max-width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plano-content h2 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.plano-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.plano-tipo {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
    letter-spacing: 0.5px;
}

.plano-especialidades {
    font-size: 1rem;
    margin-bottom: 25px;
    color: white;
}

.plano-especialidades strong {
    font-weight: 700;
}

.plano-beneficios {
    list-style: none;
    padding: 0;
    font-size: 1rem;
}

.plano-beneficios li {
    margin-bottom: 10px;
    color: white;
    font-weight: 400;
}

.plano-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.plano-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
}

/* Mais que Renda Extra Section */
.mais-que-renda {
    padding: 130px 0;
    background: #5070C4;
    text-align: center;
    color: white;
}

.mais-que-renda-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.coracao-icon {
    margin-bottom: 20px;
}

.coracao-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.mais-que-renda h2 {
    font-size: 3rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.mais-que-renda p {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.3;
}

/* Passo a Passo Section */
.passo-a-passo {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.passos-header {
    margin-bottom: 60px;
}

.passos-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d5aa0;
    margin: 0;
}

.passos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.passo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.passo-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.passo-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.passo-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d5aa0;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.passo-content p {
    font-size: 1.1rem;
    font-weight: 400;
    color: #2d5aa0;
    margin: 0;
    line-height: 1.4;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-icon {
    margin-bottom: 20px;
}

.faq-icon i {
    font-size: 4rem;
    color: #4ECFED;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: #2E4070;
    font-weight: 600;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    transition: background-color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f8f9fa;
}

.question-indicator {
    color: #89C33F;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    width: 20px;
    text-align: center;
}

.faq-question span:last-child {
    font-size: 1.1rem;
    color: #2E4070;
    font-weight: 500;
    flex: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-item.active .question-indicator {
    transform: rotate(90deg);
}

.faq-item.active .faq-question {
    background: #f8f9fa;
}

/* Renda Extra Section */
.renda-extra {
    padding: 80px 0;
    background: #f8f9fa;
}

.renda-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.renda-text h2 {
    font-size: 3rem;
    color: #00B4D8;
    margin-bottom: 20px;
    font-weight: 700;
}

.renda-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.benefits-list i {
    color: #28a745;
    font-size: 1.2rem;
}

.renda-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 15px;
}

/* Credito e Facilidade Section */
.credito-facilidade {
    padding: 80px 0;
    background: white;
}

.credito-facilidade h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
}

.testimonial {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-content blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
}

.testimonial-content cite {
    font-weight: 600;
    color: #00B4D8;
}

/* Vantagens Section */
.vantagens {
    padding: 80px 0;
    background: #fff;
    color: white;
}

.vantagens-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vantagens-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.vantagens-list {
    list-style: none;
}

.vantagens-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.vantagens-list i {
    color: #FFD700;
    font-size: 1.2rem;
}

.vantagens-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 15px;
}

/* Formulario Section */
.formulario {
    padding: 80px 0;
    background: #2E4070;
    color: white;
}

/* Formulario Middle (versão do meio da página) */
.formulario-middle {
    padding: 50px 0;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Layout de 3 colunas para formulários */
.form-content-3col {
    grid-template-columns: 0.9fr 1.3fr 0.9fr;
    gap: 35px;
}

.form-content-3col .form-info {
    padding-right: 0;
}

.form-info {
    padding-right: 20px;
}

.form-icon {
    margin-bottom: 20px;
}

.form-icon i {
    font-size: 3rem;
    color: white;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 600;
}

.form-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.form-note {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-buttons {
    margin-top: 30px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #20b358;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

.form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Coluna do disclaimer */
.form-disclaimer-col {
    display: flex;
    align-items: flex-start;
    padding-top: 0;
}

.form-content-3col .form-container {
    padding: 25px 20px;
}

.form-content-3col .contact-form {
    gap: 12px;
}

.form-content-3col .form-group input,
.form-content-3col .form-group textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
}

.form-content-3col .btn-submit {
    padding: 12px 20px;
    font-size: 0.95rem;
}

.form-content-3col .form-disclaimer {
    margin-top: 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: white;
    color: #333;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select option:first-child {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ECFED;
    box-shadow: 0 0 0 2px rgba(78, 207, 237, 0.2);
}

.form-group select option {
    background: white;
    color: #333;
}

.btn-submit {
    background: #89C33F;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
}

.btn-submit:hover {
    background: #7AB332;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(137, 195, 63, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-disclaimer {
    margin-top: 20px;
    font-size: 0.8rem;
    line-height: 1.4;
    opacity: 0.9;
}

.form-content-3col .form-disclaimer {
    margin-top: 0;
    font-size: 0.75rem;
}

.form-disclaimer p {
    margin-bottom: 10px;
}

.form-disclaimer strong {
    font-weight: 600;
}



/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.modal-body {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.modal-body h3 {
    margin-bottom: 15px;
    color: #333;
}

.modal-body p {
    color: #666;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .form-content-3col {
        grid-template-columns: 1fr 1.5fr;
        gap: 30px;
    }
    
    .form-content-3col .form-disclaimer-col {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    .plano-grid {
        gap: 0;
        min-height: auto;
    }
    
    .plano-grid > .container {
        padding-right: 40px;
    }
    
    .plano-content {
        padding: 30px 0;
    }
}

@media (max-width: 768px) {
    .hero-content,
    .renda-content,
    .plano-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .plano-grid {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }
    
    .plano-grid > .container {
        padding: 40px 20px;
        order: 2;
    }

    .plano-content {
        padding: 0;
    }
    
    .plano-image {
        height: 400px;
        order: 1;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    
    .hero {
        padding: 40px 0 30px;
    }
    
    .renda-extra,
    .vantagens,
    .faq {
        padding: 60px 0;
    }
    
    .plano-uni-plus {
        padding: 0;
    }
    
    .hero-text,
    .renda-text {
        padding-left: 0;
        order: 2;
    }
    
    .hero-image,
    .renda-image {
        order: 1;
    }
    
    .hero-subtitle,
    .renda-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-text h1,
    .renda-text h2 {
        font-size: 2.8rem;
    }
    
    .hero-description,
    .renda-description {
        font-size: 1rem;
    }
    
    .renda-image img {
        max-width: 300px;
    }
    
    .vantagens-header h2 {
        font-size: 2rem;
    }
    
    .vantagens-description {
        font-size: 1rem;
    }
    
    .vantagens-header {
        margin-bottom: 40px;
    }
    
    .plano-content h2 {
        font-size: 2.2rem;
    }
    
    .plano-image {
        order: 1;
    }
    
    .plano-content {
        order: 2;
        text-align: center;
    }
    
    .plano-beneficios {
        text-align: left;
        display: inline-block;
    }
    
    .plano-subtitle {
        font-size: 1.3rem;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-icon i {
        font-size: 3rem;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .hero-formula {
        text-align: center;
    }
    
    .formula-image {
        max-width: 250px;
    }
    
    .mais-que-renda {
        padding: 60px 0;
    }
    
    .mais-que-renda h2 {
        font-size: 2.2rem;
    }
    
    .mais-que-renda p {
        font-size: 1.4rem;
    }
    
    .coracao-icon img {
        width: 60px;
        height: 60px;
    }
    
    .passo-a-passo {
        padding: 60px 0;
    }
    
    .passos-header h2 {
        font-size: 2.2rem;
    }
    
    .passos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .passo-icon {
        width: 100px;
        height: 100px;
    }
    
    .passo-icon img {
        width: 100px;
        height: 100px;
    }
    
    .hero-card {
        max-width: 250px;
    }
    
    .form-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .form-content-3col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-content-3col .form-info {
        order: 1;
    }
    
    .form-content-3col .form-container {
        order: 2;
        padding: 20px 15px;
    }
    
    .form-content-3col .form-disclaimer-col {
        order: 3;
        text-align: left;
        padding: 0 20px;
    }
    
    .form-content-3col .form-disclaimer {
        border-left: none;
        border-top: 3px solid rgba(255, 255, 255, 0.3);
    }
    
    .formulario {
        padding: 60px 0;
    }
    
    .formulario-middle {
        padding: 40px 0;
    }
    
    .form-info {
        padding-right: 0;
        order: 1;
    }
    
    .form-container {
        padding: 25px 20px;
        order: 2;
    }
    
    .form-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 30px 0 20px;
    }
    
    .plano-uni-plus {
        padding: 0;
    }
    
    .plano-image {
        height: 250px;
    }
    
    .hero-subtitle,
    .renda-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-text h1,
    .renda-text h2 {
        font-size: 2.2rem;
    }
    
    .hero-description,
    .renda-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .renda-image img {
        max-width: 250px;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
    
    .vantagens-header h2 {
        font-size: 1.8rem;
    }
    
    .vantagens-description {
        font-size: 0.95rem;
    }
    
    .video-container {
        max-width: 100%;
        margin: 0 15px;
    }
    
    .plano-content h2 {
        font-size: 1.8rem;
    }
    
    .plano-image {
        height: 300px;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .plano-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .plano-subtitle {
        font-size: 1.2rem;
    }
    
    .plano-tipo,
    .plano-especialidades,
    .plano-beneficios li {
        font-size: 1rem;
    }
    
    .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-icon i {
        font-size: 2.5rem;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question span:last-child {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .formula-image {
        max-width: 200px;
    }
    
    .mais-que-renda h2 {
        font-size: 1.8rem;
    }
    
    .mais-que-renda p {
        font-size: 1.2rem;
    }
    
    .coracao-icon img {
        width: 50px;
        height: 50px;
    }
    
    .passos-header h2 {
        font-size: 1.8rem;
    }
    
    .passos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .passo-icon {
        width: 80px;
        height: 80px;
    }
    
    .passo-icon img {
        width: 80px;
        height: 80px;
    }
    
    .passo-content h3,
    .passo-content p {
        font-size: 1rem;
    }
    
    .hero-card {
        max-width: 200px;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 30px 20px;
    }
    
    .form-info h2 {
        font-size: 1.8rem;
    }
    
    .form-icon i {
        font-size: 2.5rem;
    }
    
    .form-container {
        padding: 20px 15px;
    }
    
    .form-disclaimer {
        font-size: 0.75rem;
    }
    
    .form-content-3col {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-content-3col .form-info {
        order: 1;
        padding-right: 0;
        text-align: center;
    }
    
    .form-content-3col .form-container {
        order: 2;
        padding: 20px 15px;
    }
    
    .form-content-3col .form-disclaimer-col {
        order: 3;
        text-align: left;
        padding: 0 15px;
    }
    
    .form-content-3col .form-disclaimer {
        border-left: none;
        border-top: 3px solid rgba(255, 255, 255, 0.3);
        padding-top: 20px;
    }
}

/* Botão Flutuante */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.btn-revendedor {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #2E4070 0%, #1e2a4a 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(46, 64, 112, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.btn-revendedor:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 64, 112, 0.4);
    background: linear-gradient(135deg, #1e2a4a 0%, #2E4070 100%);
    border-color: #4ECFED;
}

.btn-revendedor i {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #4ECFED 0%, #0EA5E9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-text {
    white-space: nowrap;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 64, 112, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 64, 112, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 64, 112, 0);
    }
}

/* Responsividade do Botão Flutuante */
@media (max-width: 768px) {
    .floating-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .btn-revendedor {
        padding: 12px 18px;
        font-size: 0.85rem;
        gap: 8px;
        max-width: 200px;
    }
    
    .btn-text {
        font-size: 0.8rem;
        line-height: 1.1;
    }
}

@media (max-width: 480px) {
    .floating-btn {
        bottom: 15px;
        right: 15px;
    }
    
    .btn-revendedor {
        padding: 10px 14px;
        font-size: 0.75rem;
        gap: 6px;
        border-radius: 35px;
        max-width: 160px;
        white-space: nowrap;
        overflow: hidden;
    }
    
    .btn-text {
        font-size: 0.7rem;
        line-height: 1.1;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .btn-revendedor i {
        font-size: 0.9rem;
        flex-shrink: 0;
    }
}

@media (max-width: 360px) {
    .floating-btn {
        bottom: 10px;
        right: 10px;
    }
    
    .btn-revendedor {
        padding: 12px;
        font-size: 0.7rem;
        gap: 5px;
        max-width: 50px;
        min-width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
    }
    
    .btn-text {
        display: none;
    }
    
    .btn-revendedor i {
        font-size: 1.2rem;
        margin: 0;
    }
    
    .form-content-3col {
        gap: 20px;
    }
    
    .form-content-3col .form-info {
        order: 1;
    }
    
    .form-content-3col .form-container {
        order: 2;
    }
    
    .form-content-3col .form-disclaimer-col {
        order: 3;
        padding: 0 10px;
    }
}

/* Tooltip para versão só com ícone */
@media (max-width: 360px) {
    .btn-revendedor::after {
        content: "Quero me tornar Revendedor";
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 8px 12px;
        border-radius: 20px;
        font-size: 0.7rem;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        pointer-events: none;
        z-index: 1001;
    }
    
    .btn-revendedor:hover::after {
        opacity: 1;
        visibility: visible;
        right: 55px;
    }
}

/* Esconder o botão quando estiver na seção do formulário */
.floating-btn.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}
