/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 0.3rem 0;
}

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

.nav-brand h2 {
    color: #7B47D9;
    font-weight: 700;
    font-size: 1.8rem;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 200px;
}

.nav-menu {
    font-family: 'Poppins', sans-serif;
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #7B47D9;
}

.nav-cta {
    margin-left: 2rem;
}

.nav-cta .cta-btn {
    background: linear-gradient(135deg, #E67E22, #D35400);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.nav-cta .cta-btn:hover {
    background: linear-gradient(135deg, #D35400, #C0471D);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 135px 18px 72px 18px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    max-width: 1080px;
    word-break: keep-all;
    hyphens: none;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3.5rem;
    opacity: 0.9;
}

.cta-button {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    background: #E67E22;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.cta-button:hover {
    background: #D35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* Section Title */
.section-title {
    font-size: 2.25rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 2.7rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #7B47D9, #7B47D9);
    border-radius: 2px;
}

/* Serviços Section */
.servicos {
    padding: 30px 0 60px 0;
    background: #f8fafc;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.servico-card {
    background: #f5f5f5;
    padding: 1.8rem;
    border-radius: 13.5px;
    text-align: center;
    box-shadow: 0 7.2px 27px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.servico-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.6s ease;
}

.servico-card:hover::before {
    left: 100%;
}

.servico-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7B47D9, #7B47D9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.servico-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.servico-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Processo Section */
.processo {
    padding: 30px 0 60px 0;
    background: #f5f5f5;
}

.processo-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    padding: 2rem;
    position: relative;
    background: #f5f5f5;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    text-align: center;
}

.step:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E67E22, #F39C12);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Contato Section */
.contato {
    padding: 30px 0 60px 0;
    background: #f8fafc;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contato-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.contato-info p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #666;
}

.contact-item i {
    color: #7B47D9;
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 20px;
}

/* Garantir que todos os ícones tenham o mesmo formato e peso visual */
.contact-item .fa-whatsapp,
.footer-section ul li .fa-whatsapp {
    color: #7B47D9;
    font-size: 1.2rem;
    font-weight: 900;
}

/* Padronizar todos os ícones de contato */
.contact-item i,
.footer-section ul li i {
    font-weight: 900;
    display: inline-block;
    text-align: center;
}

.contato-form {
    background: #DBDBDB;
    padding: 2.25rem;
    border-radius: 13.5px;
    box-shadow: 0 4.5px 18px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.35rem;
}

.form-group label {
    display: block;
    text-align: left;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group label input[type="checkbox"] {
    margin-right: 0.5rem;
    margin-left: 0;
    text-align: left;
    display: inline;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13.5px;
    border: 1.8px solid #e2e8f0;
    border-radius: 9px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #333;
    box-shadow: 0 1.8px 3.6px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7B47D9;
}

.submit-btn {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    background: #7B47D9;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 71, 217, 0.3);
}

.submit-btn:hover {
    background: #6A3BC8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 71, 217, 0.4);
}

/* Mensagem de Status */
.status-message {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideIn 0.3s ease-out;
}

.status-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-message i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 35fr 25px 22fr 7px 25fr 16px 32fr;
    column-gap: 0;
    margin-bottom: 2rem;
    width: 100%;
}

.footer-section {
    text-align: left;
    padding: 0 0.5rem;
    box-sizing: border-box;
    min-width: 0;
}

.footer-section:nth-child(1) {
    grid-column: 1;
}

.footer-section:nth-child(2) {
    grid-column: 3;
}

.footer-section:nth-child(3) {
    grid-column: 5;
}

.footer-section:nth-child(4) {
    grid-column: 7;
}

/* Media query para tablets - mostrar todas as 4 colunas do footer */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 35fr 25px 22fr 7px 25fr 16px 32fr;
    }
    
    .footer-section:nth-child(1) {
        grid-column: 1;
    }
    
    .footer-section:nth-child(2) {
        grid-column: 3;
    }
    
    .footer-section:nth-child(3) {
        grid-column: 5;
    }
    
    .footer-section:nth-child(4) {
        grid-column: 7;
    }
}

/* Media query para dispositivos móveis - mostrar apenas a primeira coluna do footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 1rem 20px;
        overflow-x: hidden;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    .footer-section:nth-child(1),
    .footer-section:nth-child(2),
    .footer-section:nth-child(3),
    .footer-section:nth-child(4) {
        grid-column: unset;
    }
    
    .footer-section:nth-child(2),
    .footer-section:nth-child(3),
    .footer-section:nth-child(4) {
        display: none;
    }
    
    .footer-section:first-child {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        flex-shrink: 0;
    }
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #9F7AEA;
}

.footer-section p {
    color: #a0aec0;
    margin-bottom: 1.5rem;
}

.footer-section:nth-child(4) p {
    margin-bottom: 0.75rem;
}

.footer-section p i {
    display: inline-block;
    margin-right: 0.5rem;
    color: #7B47D9;
    width: 1.2rem;
    text-align: center;
    vertical-align: middle;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #7B47D9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links a i {
    font-size: 1.2rem;
    color: white;
}

.social-links a:hover {
    background: #7B47D9;
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: #a0aec0;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #7B47D9;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: #7B47D9;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a0aec0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.6rem;
    color: #a0aec0;
}

.footer-bottom a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.6rem;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #9F7AEA;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #f5f5f5;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-cta {
        margin-left: 0;
        order: 5;
        margin-top: 1.5rem;
    }
    
    .nav-cta .cta-btn {
        width: 80%;
        text-align: center;
    }
    
    .hero {
        background-image: url('/assets/images/banner_mobile.jpg');
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .processo-steps {
        grid-template-columns: 1fr;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .servico-card,
    .contato-form {
        padding: 1.5rem;
    }
    
    /* Prevenir zoom automático em campos de formulário no iOS */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important;
        transform: translateZ(0);
        -webkit-appearance: none;
    }
    
    .submit-btn {
        font-family: 'Poppins', sans-serif;
        font-size: 16px !important;
        transform: translateZ(0);
        -webkit-appearance: none;
    }
    
    .footer-bottom {
        padding: 0.8rem 1rem;
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .footer-bottom p,
    .footer-bottom a {
        font-size: 0.55rem;
        line-height: 1.2;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        min-width: 35px;
        min-height: 35px;
        flex-shrink: 0;
    }
    
    .social-links a i {
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.servico-card,
.step,
.contato-form {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading animation for form submission */
.submit-btn.loading {
    background: #a0aec0;
    cursor: not-allowed;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.modal-header {
    background-color: #7B47D9;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.2rem;
}

.close {
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.close:hover,
.close:focus {
    opacity: 1;
    outline: none;
}

.modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
    line-height: 1.6;
}

.modal-body h3 {
    color: #7B47D9;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-body p {
    margin-bottom: 1rem;
    text-align: justify;
}

.modal-body ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 1.5rem;
        max-height: 65vh;
    }
}

.submit-btn.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilos para página de análise */
.formulario-page {
    padding: 120px 0 80px;
    background-image: url('../images/fundo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
}

.formulario-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.formulario-header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    position: relative;
    z-index: 2;
}

.formulario-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.formulario-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.formulario-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.formulario-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.formulario-info h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-item i {
    color: #7B47D9;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.analise-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.checkbox-group {
    margin: 1.5rem 0;
    text-align: left;
    display: block;
    width: 100%;
}

.checkbox-label {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left !important;
    width: 100% !important;
    gap: 0.5rem;
    margin: 0 !important;
    padding: 0 !important;
}

.form-group label {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    width: 100% !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.checkbox-label {
    font-size: 12px !important;
}

.form-group label input[type="checkbox"] {
    margin: 0 0.5rem 0 0 !important;
    display: inline !important;
    vertical-align: middle !important;
    float: none !important;
    flex-shrink: 0 !important;
    width: auto !important;
}

.checkbox-label input[type="checkbox"] {
    margin: 0 0.5rem 0 0 !important;
    position: relative !important;
    left: 0 !important;
    transform: none !important;
}

/* Estilo personalizado para checkmark */
.checkmark {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #fff;
    border: 2px solid #7B47D9;
    border-radius: 3px;
    margin-right: 8px;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #7B47D9;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label a {
    color: #7B47D9;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}
    flex-shrink: 0;
}

p.form-note {
    text-align: center !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    color: #666 !important;
    margin-top: 1rem !important;
    line-height: 1.4 !important;
}

/* Especificidade extra para garantir aplicação */
.formulario-content p.form-note,
.container p.form-note {
    text-align: center !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    color: #666 !important;
    margin-top: 1rem !important;
    line-height: 1.4 !important;
}

.form-note a {
    color: #7B47D9;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

/* Responsive para página de análise */
@media (max-width: 768px) {
    .formulario-page {
        padding: 100px 0 60px;
    }
    
    .formulario-header h1 {
        font-size: 2rem;
    }
    
    .formulario-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .formulario-info {
        order: 2;
    }
    
    .analise-form {
        order: 1;
        padding: 2rem;
    }
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.whatsapp-float i {
    margin: 0;
}

/* Responsivo para o botão WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .whatsapp-float i {
        margin: 0;
    }
}

/* Posicionar badge do reCAPTCHA v3 no canto inferior esquerdo */
.grecaptcha-badge {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    position: fixed !important;
    bottom: 14px !important;
    left: 14px !important;
    right: auto !important;
    z-index: 1000 !important;
    transform: scale(0.9) !important;
    transform-origin: 0 0 !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
}

/* Ocultar badge do reCAPTCHA */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}.grecaptcha-badge { visibility: hidden !important; }
