/* Reset e Variáveis CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --azul-escuro: #003868;
    --azul-medio: #004d8f;
    --laranja-vibrante: #D58435;
    --laranja-fechado: #CB622C;
    --cinza-claro: #f8f9fa;
    --cinza-texto: #6c757d;
    --branco: #ffffff;
    --verde-sucesso: #28a745;
    --dourado: #FFD700;
    --erro: #dc3545;
    --sucesso: #28a745;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Floating Badge */
.floating-badge {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--verde-sucesso);
    color: var(--branco);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    z-index: 1001;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 56, 104, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 56, 104, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    color: var(--branco);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 37px;
    width: auto;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar-menu a {
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-menu a:hover {
    color: var(--laranja-vibrante);
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--laranja-vibrante);
    transition: width 0.3s ease;
}

.navbar-menu a:hover::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--branco);
    font-size: 1.5rem;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-medio) 100%);
    color: var(--branco);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(213, 132, 53, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.commission-highlight {
    background: var(--laranja-vibrante);
    color: var(--branco);
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(213, 132, 53, 0.4);
    animation: fadeInDown 0.8s ease-out;
}

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

h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.earning-calculator {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.calculator-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.calculator-title-numeros {
    font-size: 1.3rem;
    margin-bottom: 20px;
    margin-left: 40px;
    font-weight: 600;
}

.trust-bar .calculator-title-numeros {
    text-align: left;
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.calc-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.calc-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.calc-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.calc-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--laranja-vibrante);
}

.cta-container {
    display: flex;
    gap: 20px;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cta-primary {
    background: var(--laranja-vibrante);
    color: var(--branco);
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(213, 132, 53, 0.4);
}

.cta-primary:hover {
    background: var(--laranja-fechado);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(213, 132, 53, 0.5);
}

.cta-whatsapp {
    background: var(--verde-sucesso);
    color: var(--branco);
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.cta-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(40, 167, 69, 0.4);
}

/* Trust Indicators */
.trust-bar {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    margin-top: 60px;
    text-align: center;
    border-radius: 12px;
}

.trust-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 120px;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--laranja-vibrante);
    display: block;
    min-height: 48px;
    line-height: 1.1;
}

.trust-label {
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
    max-width: 180px;
    word-break: break-word;
    white-space: normal;
    margin: 0 auto;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section:nth-child(odd) {
    background: var(--cinza-claro);
}

h2 {
    font-size: 3rem;
    color: var(--azul-escuro);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--cinza-texto);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Como Funciona */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: var(--branco);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--laranja-vibrante);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--laranja-vibrante);
}

.step-title {
    font-size: 1.3rem;
    color: var(--azul-escuro);
    margin-bottom: 15px;
    font-weight: 600;
}

.step-description {
    color: var(--cinza-texto);
    line-height: 1.6;
}

/* Perfil Ideal */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-card {
    background: var(--branco);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.profile-icon {
    font-size: 2.5rem;
    color: var(--laranja-vibrante);
}

.profile-content h3 {
    font-size: 1.2rem;
    color: var(--azul-escuro);
    margin-bottom: 5px;
}

.profile-content p {
    color: var(--cinza-texto);
    font-size: 0.95rem;
}

/* Benefícios */
.benefits-showcase {
    background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-medio) 100%);
    color: var(--branco);
    padding: 60px 40px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.benefits-showcase h2 {
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.benefits-showcase .section-subtitle {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.benefits-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--laranja-vibrante);
}

.benefit-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-text {
    opacity: 0.9;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Comparison Table */
.comparison-section {
    background: var(--branco);
    padding: 100px 0;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--branco);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
    background: var(--azul-escuro);
    color: var(--branco);
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table .feature {
    text-align: left;
    font-weight: 600;
    color: var(--azul-escuro);
}

.comparison-table .bms {
    background: rgba(40, 167, 69, 0.1);
    color: var(--verde-sucesso);
    font-weight: 600;
}

.comparison-table .others {
    background: rgba(220, 53, 69, 0.1);
    color: var(--erro);
    font-weight: 600;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--branco);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 25px 30px;
    background: var(--azul-escuro);
    color: var(--branco);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--azul-medio);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--cinza-texto);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

/* Formulário */
.form-section {
    background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-medio) 100%);
    color: var(--branco);
    padding: 100px 0;
}

.form-container {
    background: var(--branco);
    color: #333;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2rem;
    color: var(--azul-escuro);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--cinza-texto);
    font-size: 1.1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--azul-escuro);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--branco);
}

.form-group input[type="url"],
.form-group input[type="email"] {
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--laranja-vibrante);
    box-shadow: 0 0 0 3px rgba(213, 132, 53, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--erro);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: var(--sucesso);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: var(--cinza-texto);
}

.form-group .error-message {
    color: var(--erro);
    font-size: 0.85rem;
    margin-top: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-group .error-message.show {
    opacity: 1;
}

fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.form-submit {
    background: var(--laranja-vibrante);
    color: var(--branco);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(213, 132, 53, 0.3);
}

.form-submit:hover {
    background: var(--laranja-fechado);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(213, 132, 53, 0.4);
}

.form-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Loading styles */
.form-submit.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
    background: var(--laranja-fechado) !important;
}

.form-submit.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid var(--branco);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

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

/* Garantir que o texto fique invisível durante loading */
.form-submit.loading span,
.form-submit.loading {
    color: transparent !important;
}

/* Contact Info */
.contact-info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.contact-info h4 {
    color: var(--azul-escuro);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-method {
    padding: 15px;
    background: var(--cinza-claro);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-method svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.contact-method a {
    color: var(--azul-escuro);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    font-size: 0.88rem;
}

.contact-method a:hover {
    color: var(--laranja-vibrante);
    background: rgba(213, 132, 53, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(213, 132, 53, 0.2);
}

.contact-method a svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.contact-method a:hover svg {
    transform: scale(1.1);
}

footer {
    background: var(--azul-escuro);
    color: var(--branco);
    padding: 40px 0;
    text-align: center;
}

.social-icons a {
    color: var(--branco);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--laranja-vibrante);
}

.footer-content p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--branco);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--laranja-vibrante);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .calculator-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Navbar Mobile */
    .navbar-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 56, 104, 0.98);
        flex-direction: column;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-toggle {
        display: block;
    }
    
    .navbar-brand img {
        height: 30px; /* Logo menor no mobile */
    }
    
    /* Hero */
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .commission-highlight {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-container {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-primary, .cta-whatsapp {
        width: 100%;
        text-align: center;
    }
    
    .trust-items {
        flex-direction: column;
        gap: 20px;
    }
    
    .trust-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    /* Form */
    .form-container {
        padding: 30px 20px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    /* Benefits */
    .benefits-showcase {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    /* Comparison Table */
    .comparison-table {
        margin: 0 20px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Profile Grid - Mobile */
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Benefits Grid - Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .contact-method {
        padding: 10px;
        font-size: 0.98rem;
    }
    .contact-method a {
        padding: 10px;
        font-size: 0.98rem;
    }
    .contact-method svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar-brand img {
        height: 25px; /* Logo ainda menor em telas muito pequenas */
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .commission-highlight {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .earning-calculator {
        padding: 20px;
    }
    
    .calc-value {
        font-size: 1.5rem;
    }
    
    .step-card,
    .profile-card {
        padding: 20px;
    }
    
    .form-container {
        padding: 20px 15px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .contact-method {
        padding: 8px;
        font-size: 0.93rem;
    }
    .contact-method a {
        padding: 8px;
        font-size: 0.93rem;
    }
    .contact-method svg {
        width: 18px;
        height: 18px;
    }
    .contact-method span {
        word-break: break-all;
        font-size: 0.93rem;
    }
    
    .contact-info h4 {
        font-size: 1.05rem;
    }
}

/* WhatsApp Flutuante */
.ht-ctc {
    transition: all 0.3s ease;
}

.ht-ctc:hover {
    transform: scale(1.1);
}

.ht-ctc svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.ht-ctc:hover svg {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

/* Responsividade do WhatsApp Flutuante */
@media (max-width: 768px) {
    .ht-ctc {
        bottom: 15px !important;
        right: 15px !important;
    }
    
    .ht-ctc svg {
        height: 45px !important;
        width: 45px !important;
    }
}

@media (max-width: 480px) {
    .ht-ctc {
        bottom: 10px !important;
        right: 10px !important;
    }
    
    .ht-ctc svg {
        height: 40px !important;
        width: 40px !important;
    }
    
    .floating-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* Video Carousel */
.video-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.carousel-btn {
    background: var(--azul-escuro);
    color: var(--branco);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.carousel-btn:hover {
    background: var(--laranja-vibrante);
}

.carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 900px;
    max-width: 100%;
    height: 380px;
}

.carousel-video {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.6s cubic-bezier(.4,2,.6,1), opacity 0.4s;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-radius: 16px;
    overflow: hidden;
    opacity: 1;
}

.carousel-video--left {
    left: 0;
    opacity: 0.4;
    filter: blur(1px) grayscale(60%);
    z-index: 1;
    width: 320px;
    height: 180px;
    pointer-events: none;
    transform: translateY(-50%) scale(0.9) translateX(-40px);
}

.carousel-video--center {
    left: 50%;
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
    z-index: 3;
    width: 640px;
    height: 360px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.carousel-video--right {
    right: 0;
    opacity: 0.4;
    filter: blur(1px) grayscale(60%);
    z-index: 1;
    width: 320px;
    height: 180px;
    pointer-events: none;
    transform: translateY(-50%) scale(0.9) translateX(40px);
}

@media (max-width: 900px) {
    .carousel-track {
        width: 100%;
        height: 220px;
    }
    .carousel-video--center {
        width: 95vw;
        height: 200px;
    }
    .carousel-video--left, .carousel-video--right {
        width: 40vw;
        height: 100px;
    }
}

.contact-info, .contact-methods, .contact-method {
    max-width: 100%;
    box-sizing: border-box;
}
.contact-method span {
    word-break: break-word;
}

@media (max-width: 768px) {
    .contact-info, .contact-methods, .contact-method {
        max-width: 100%;
        box-sizing: border-box;
    }
    .contact-methods {
        width: 100%;
        overflow-x: auto;
    }
    .contact-method {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .contact-info, .contact-methods, .contact-method {
        max-width: 100%;
        box-sizing: border-box;
    }
    .contact-methods {
        width: 100%;
        overflow-x: auto;
    }
    .contact-method {
        width: 100%;
        min-width: 0;
    }
}

.parceirobms-destaque {
    color: var(--laranja-vibrante);
    
    font-weight: 700;
} 

/* Select: cor cinza claro para placeholder e preto para selecionado */
select:required:invalid {
    color: #b0b0b0 !important;
}
select {
    color: #222;
}
option[value=""] {
    color: #b0b0b0;
}

/* Ajuste de centralização do botão WhatsApp flutuante */
.whatsapp-circle {
    background: #25d366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}
.whatsapp-circle svg {
    width: 36px !important;
    height: 36px !important;
    display: block;
}
