:root {
    /* Color Palette - Institucional, Sóbria e Tecnológica */
    --bg-main: #f8f9fa; /* Off-white */
    --bg-alt: #ffffff; /* Branco */
    --bg-dark: #0a192f; /* Azul-marinho profundo */
    --bg-darker: #060f1d; /* Azul mais escuro/grafite */
    
    --primary: #0a192f; /* Azul-marinho */
    --primary-light: #162a4d;
    --secondary: #bfa15f; /* Dourado discreto */
    --secondary-dark: #9c8248;
    
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #f1f5f9;
    --text-light-muted: #cbd5e1;
    
    --border-light: rgba(0, 0, 0, 0.08);
    --border-dark: rgba(255, 255, 255, 0.1);
    
    /* Effects & Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s ease;
}

/* ──────────────────────────────────────────────
   Resets & Globals
────────────────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ──────────────────────────────────────────────
   Typography & Elements
────────────────────────────────────────────── */
.badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    background: rgba(191, 161, 95, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

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

/* ──────────────────────────────────────────────
   Buttons
────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(10, 25, 47, 0.05);
    color: var(--primary-light);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: none;
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: #20bc5a;
}

/* ──────────────────────────────────────────────
   Header / Navbar
────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 40px; /* Deslocado para baixo para dar espaço ao ticker de segurança */
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.header.scrolled {
    padding: 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary);
}

.btn-cta-nav {
    background: var(--primary) !important;
    color: var(--text-light) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
}

.btn-cta-nav:hover {
    background: var(--primary-light) !important;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* ──────────────────────────────────────────────
   Hero Section
────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 180px 0 100px 0;
    background: var(--bg-alt);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 100%;
    text-align: left;
    margin: 0;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.legal-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}

.photo-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 0 0 auto;
    position: relative;
}

.photo-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    z-index: 0;
}

.lawyer-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: block;
}

/* ──────────────────────────────────────────────
   Sobre o Advogado
────────────────────────────────────────────── */
.about-lawyer {
    padding: 100px 0;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border-light);
}

.about-lawyer-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-lawyer-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-lawyer-text .lead-oab {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.about-lawyer-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.about-lawyer-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 0 0 auto;
}

.about-lawyer-image-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    z-index: 0;
}

.about-lawyer-image-container {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.lawyer-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 5;
    display: block;
}

/* ──────────────────────────────────────────────
   Services / Áreas de Atuação
────────────────────────────────────────────── */
.services {
    padding: 100px 0;
    background: var(--bg-alt);
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.services-block {
    width: 100%;
}

.block-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 0.6rem;
    color: var(--primary);
}

.services-grid-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card-new {
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    padding: 2rem;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    text-align: left;
}

.service-card-new:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(191, 161, 95, 0.3);
}

.card-icon-new {
    font-size: 1.5rem;
    background: rgba(191, 161, 95, 0.08);
    color: var(--secondary);
    padding: 0.5rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card-new h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.service-card-new p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

/* ──────────────────────────────────────────────
   Highlight: Reforma Tributária
────────────────────────────────────────────── */
.highlight-section {
    padding: 100px 0;
    background: var(--bg-dark);
    color: var(--text-light);
}

.highlight-section h2 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.highlight-content p {
    color: var(--text-light-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    max-width: 900px;
}

.highlight-list {
    margin-top: 2rem;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.highlight-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.highlight-list li::before {
    content: '•';
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

/* ──────────────────────────────────────────────
   Como Funciona o Atendimento
────────────────────────────────────────────── */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
}

.how-it-works-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.how-it-works-image-wrapper {
    position: relative;
    width: 100%;
}

.how-it-works-image-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    z-index: 0;
}

.how-it-works-image-container {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.how-it-works-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    display: block;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    background: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.step-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* ──────────────────────────────────────────────
   SaaS Hub / Tecnologia
────────────────────────────────────────────── */
.technology {
    padding: 100px 0;
    background: var(--bg-alt);
}

.saas-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.saas-card {
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2.5rem;
    transition: var(--transition);
}

.saas-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(191, 161, 95, 0.5); /* secondary */
}

.saas-header {
    margin-bottom: 1rem;
}

.saas-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.saas-title h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
}

.saas-icon {
    font-size: 2rem;
}

.saas-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-saas {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary) 0%, #1a4f8b 100%);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 43, 73, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-saas::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.btn-saas:hover {
    background: linear-gradient(135deg, #1a4f8b 0%, var(--primary) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(13, 43, 73, 0.4);
    color: #ffffff;
}

.btn-saas:hover::after {
    left: 150%;
}

.btn-disabled {
    opacity: 0.5;
    pointer-events: none;
    border-color: var(--text-muted);
    color: var(--text-muted);
}

.legal-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

/* ──────────────────────────────────────────────
   About / Diferenciais
────────────────────────────────────────────── */
.about {
    padding: 100px 0;
    background: var(--bg-main);
    border-top: 1px solid var(--border-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ──────────────────────────────────────────────
   FAQ Section
────────────────────────────────────────────── */
.faq {
    padding: 100px 0;
    background: var(--bg-main);
    border-top: 1px solid var(--border-light);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    outline: none;
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--secondary);
    font-weight: bold;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 1.5rem;
    background: var(--bg-alt);
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    padding-bottom: 1.25rem;
    margin: 0;
}

.faq-item.active {
    border-color: rgba(191, 161, 95, 0.3);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-item.active .faq-question {
    color: var(--secondary);
}

/* ──────────────────────────────────────────────
   Contact Section
────────────────────────────────────────────── */
.contact {
    padding: 100px 0;
    background: var(--bg-darker);
    color: var(--text-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    color: var(--text-light);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    color: var(--text-light-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-item p {
    color: var(--text-light-muted);
    margin: 0;
}

.contact-form-container {
    background: var(--bg-alt);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: var(--bg-main);
    color: var(--text-dark);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 25, 47, 0.1);
}

.btn-block {
    width: 100%;
}

.form-response-msg {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

/* ──────────────────────────────────────────────
   Footer
────────────────────────────────────────────── */
.footer {
    padding: 4rem 0 2rem 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-dark);
    color: var(--text-light-muted);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-contact-info p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-links-grid-two-cols {
    grid-template-columns: repeat(2, 1fr);
}

.footer-links-col h4 {
    color: var(--secondary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links-col ul a {
    color: var(--text-light-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links-col ul a:hover {
    color: var(--secondary);
}

.footer-links-col p {
    font-size: 0.88rem;
    color: var(--text-light-muted);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.footer-disclaimer {
    border-top: 1px solid var(--border-dark);
    padding-top: 2rem;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    text-align: justify;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ──────────────────────────────────────────────
   Responsive Adjustments
────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid, .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content .security-alert {
        margin: 1.5rem auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .photo-wrapper {
        margin: 0 auto;
    }
    

}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero, .about-lawyer, .services, .highlight-section, .how-it-works, .technology, .about, .faq, .contact {
        padding: 60px 0 !important;
    }

    h2 {
        font-size: 2rem !important;
        line-height: 1.3;
    }

    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid var(--border-light);
        transition: var(--transition);
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        padding: 3rem 0;
        gap: 2rem;
    }
    
    /* Hero section */
    .hero {
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .photo-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }

    /* Sobre o Advogado */
    .about-lawyer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .about-lawyer-image-wrapper {
        margin: 0 auto;
        max-width: 300px;
    }

    /* Áreas de Atuação */
    .services-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-card-new {
        padding: 1.5rem;
    }

    .saas-showcase, .highlight-list {
        grid-template-columns: 1fr;
    }

    .services-grid, .features-grid {
        grid-template-columns: 1fr;
    }

    /* Como funciona o atendimento */
    .how-it-works-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .how-it-works-image-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .how-it-works-image-wrapper::before {
        left: 10px;
        top: 10px;
    }

    /* Contato */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-container {
        padding: 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-links-grid, .footer-links-grid-two-cols {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
}

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.delay-2 {
    transition-delay: 0.2s;
}

/* ──────────────────────────────────────────────
   Anti-Copying and Security Alert Styles
   ────────────────────────────────────────────── */
body, img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Permite a seleção de textos específicos nos inputs do formulário de contato */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.security-alert {
  background: #fff1f1;
  border-left: 4px solid #d93025;
  color: #8a1f17;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  line-height: 1.6;
}

.security-alert h3,
.security-alert strong {
  color: #b3261e;
}

.security-alert h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
}

.security-alert p {
  margin: 0.4rem 0;
}

.security-alert-card {
  border: 1px solid rgba(217, 48, 37, 0.2) !important;
  border-left: 4px solid #d93025 !important;
}

.btn-preliminar {
  border-color: rgba(10, 25, 47, 0.25) !important;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 150px; /* Ajustado para ticker (40px) + header (80px) */
}

main {
  padding-top: 120px; /* Ajustado para ticker (40px) + header (80px) */
}

/* ──────────────────────────────────────────────
   Faixa de Alerta em Movimento (Ticker)
   ────────────────────────────────────────────── */
.ticker-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 1005; /* Acima do header (1000) */
    background: linear-gradient(90deg, #ffe6e6 0%, #fff0f0 100%);
    border-bottom: 1px solid #ffa6a6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    align-items: center;
    white-space: nowrap;
    user-select: none;
}

/* Gradientes sutis nas laterais para suavizar o texto */
.ticker-container::before,
.ticker-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.ticker-container::before {
    left: 0;
    background: linear-gradient(to right, #ffe6e6, transparent);
}
.ticker-container::after {
    right: 0;
    background: linear-gradient(to left, #fff0f0, transparent);
}

.ticker-wrap {
    display: inline-block;
    padding-left: 100%;
    animation: ticker-animation 35s linear infinite;
}

.ticker-container:hover .ticker-wrap {
    animation-play-state: paused;
    cursor: pointer;
}

.ticker-text {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #cc0000;
    font-family: 'Inter', sans-serif;
}

.ticker-badge {
    background-color: #d93838;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    margin-right: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    vertical-align: middle;
}

.ticker-phone {
    background-color: #25d366; /* Verde oficial do WhatsApp */
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 6px;
    display: inline-block;
}

.ticker-divider {
    margin: 0 40px;
    color: #ffa6a6;
    font-weight: 300;
}

@keyframes ticker-animation {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

@media (max-width: 768px) {
    .ticker-text {
        font-size: 0.8rem;
    }
    .ticker-container {
        height: 35px;
    }
    .ticker-wrap {
        animation-duration: 25s;
    }
    .header {
        top: 35px !important;
    }
    main {
        padding-top: 105px !important; /* Ticker 35px + Header 70px */
    }
    section[id] {
        scroll-margin-top: 125px !important;
    }
}
