/* ========================================
   Monteiro & Coelho - Law Firm Stylesheet
   IMPROVED CONTRAST VERSION
   ======================================== */

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Improved Contrast */
    --navy-blue: #1a3a5c;
    --navy-blue-dark: #0f2438;
    --navy-blue-light: #2a4d75; /* Added lighter variant */
    --gold: #d4af37;
    --gold-light: #e6c563;
    --gold-dark: #b8941f; /* Added darker gold for better contrast */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --text-gray: #495057;
    --text-dark: #212529;
    --text-light: #6c757d; /* Added for secondary text */
    
    /* Fonts */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === Typography - Improved Contrast === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy-blue-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* === Layout === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section.bg-light {
    background-color: var(--light-gray);
}

.section.bg-secondary {
    background-color: var(--medium-gray);
}

/* === IMPROVED: Stats Section - Better Contrast === */
.section.stats-section {
    background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-dark));
    color: var(--white);
}

.section.stats-section .stat-label {
    color: var(--white) !important;
    opacity: 0.95 !important;
    font-weight: 500;
}

.section.stats-section .stat-number {
    color: var(--gold-light) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* === IMPROVED: CTA Section - Better Contrast === */
.section.cta-section {
    background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-dark));
    color: var(--white);
    padding: var(--spacing-xl) 0;
}

.section.cta-section h2,
.section.cta-section h3,
.section.cta-section .section-title,
.section.cta-section .cta-title,
.section.cta-section .cta-box-title {
    color: var(--white) !important;
}

.section.cta-section p,
.section.cta-section .section-text,
.section.cta-section .cta-text,
.section.cta-section .cta-box-text {
    color: rgba(255, 255, 255, 0.95) !important;
    opacity: 0.95 !important;
}

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

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 65px; /* Aumentado de 48px para 72px */
    width: auto;
    transition: var(--transition);
}

.logo a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    text-decoration: none;
    transition: var(--transition);
}

.logo a:hover {
    color: var(--gold);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* === Mobile Menu === */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--navy-blue);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--navy-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--navy-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 58, 92, 0.3);
}

.btn-accent {
    background: var(--gold);
    color: var(--white);
}

.btn-accent:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-outline {
    background: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: var(--navy-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 58, 92, 0.3);
}

.btn-outline-primary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-primary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-law-office-bright.jpg') center/cover;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.85), rgba(15, 36, 56, 0.75));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 var(--spacing-sm);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.text-accent {
    color: var(--gold-light);
}

/* === IMPROVED: Page Hero - Better Contrast === */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-dark));
    color: var(--white);
    margin-top: 70px;
}

.page-hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-hero-text {
    font-size: 1.25rem;
    opacity: 0.95;
    color: var(--white);
}

/* === Section Titles === */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--navy-blue-dark);
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 1.5rem auto;
}

/* === Cards === */
.card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--navy-blue);
}

.card-text {
    color: var(--text-gray);
    line-height: 1.7;
}

.card-title-lg {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--navy-blue);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.service-list li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.bullet {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* === Grid Layouts === */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-md);
}

/* === IMPROVED: Stats Section - Better Text Visibility === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.95;
    font-weight: 500;
}

/* === Practice Areas === */
.practice-area-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.practice-area-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.practice-area-title {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: var(--spacing-sm);
}

.practice-area-card ul {
    list-style: none;
    padding-left: 0;
}

.practice-area-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.practice-area-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* === Team Section === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.team-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: var(--spacing-md);
}

.team-name {
    font-size: 2rem;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1.125rem;
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.team-bio {
    color: var(--text-gray);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.team-expertise,
.team-education {
    margin-top: var(--spacing-sm);
}

.team-expertise h4,
.team-education h4 {
    font-size: 1.125rem;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.team-expertise ul,
.team-education ul {
    list-style: none;
    padding-left: 0;
}

.team-expertise li,
.team-education li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.team-expertise li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.team-education li::before {
    content: '📚';
    position: absolute;
    left: 0;
}

.team-social {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-sm);
}

.team-social a {
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.team-social a:hover {
    color: var(--gold);
}

/* === Values Section === */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.value-item {
    text-align: center;
    padding: var(--spacing-md);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.value-title {
    font-size: 1.25rem;
    color: var(--navy-blue);
    margin-bottom: var(--spacing-sm);
}

.value-text {
    color: var(--text-gray);
}

/* === Testimonials === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-weight: 600;
    color: var(--navy-blue);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* === FAQ === */
.faq-list {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: var(--spacing-sm);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--navy-blue);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* === Contact Form === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-info {
    background: var(--navy-blue);
    color: var(--white);
    padding: var(--spacing-md);
    border-radius: 8px;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.contact-item {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.contact-item strong {
    color: var(--gold-light);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--navy-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--medium-gray);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-blue);
}

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

.form-message {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: var(--spacing-sm);
    display: none;
}

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

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

/* === IMPROVED: CTA Box - Better Contrast === */
.cta-box {
    background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-dark));
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.95);
    opacity: 0.95;
}

.cta-box-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.cta-box-text {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.95);
    opacity: 0.95;
}

/* === Footer === */
.footer {
    background: var(--white); /* Cor branca */
    color: var(--text-dark); /* Texto escuro para contraste */
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid var(--medium-gray); /* Linha sutil no topo para separação */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-blue); /* Azul para o logo */
    margin-bottom: var(--spacing-sm);
}

.footer-title {
    font-size: 1.25rem;
    color: var(--navy-blue); /* Azul para os títulos */
    margin-bottom: var(--spacing-sm);
}

.footer-text {
    opacity: 0.9;
    line-height: 1.8;
    color: var(--text-gray); /* Cinza para texto normal */
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: var(--text-gray); /* Cinza para links */
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--gold); /* Dourado no hover */
}

.footer-contact {
    opacity: 0.9;
    line-height: 1.8;
    color: var(--text-gray); /* Cinza para informações de contato */
}

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

.footer-social a {
    color: var(--navy-blue); /* Azul para ícones sociais */
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-social a:hover {
    opacity: 1;
    color: var(--gold); /* Dourado no hover */
}

.footer-bottom {
    border-top: 1px solid var(--medium-gray); /* Linha cinza para separação */
    padding-top: var(--spacing-md);
    text-align: center;
    opacity: 0.8;
    color: var(--text-light); /* Cinza mais claro para o texto inferior */
}
/* === Animations === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

/* === Responsive === */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-md);
        transition: var(--transition);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-content > .btn {
        display: none;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    /* Mobile contrast improvements */
    .section.stats-section .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-title,
    .cta-box-title {
        font-size: 2rem;
    }
}
 /* Estilos do botão do WhatsApp */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 3px 3px 5px #666;
        }

        .whatsapp-float i {
            margin-top: 2px;
        }

        /* Tooltip - CORRIGIDO */
        .whatsapp-tooltip {
            position: fixed;
            bottom: 110px; /* Agora fica acima do botão */
            right: 40px;
            background: #333;
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 14px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 1000;
            white-space: nowrap;
        }

        .whatsapp-float:hover + .whatsapp-tooltip {
            opacity: 1;
        }

        /* Seta do tooltip */
        .whatsapp-tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            right: 20px;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #333 transparent transparent transparent;
        }

        /* Para dispositivos móveis */
        @media screen and (max-width: 767px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }

            .whatsapp-tooltip {
                bottom: 80px; /* Ajustado para mobile */
                right: 20px;
                font-size: 12px;
            }
        }
     /* === National Presence Styles === */
.national-presence {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    margin-top: var(--spacing-sm);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    flex-wrap: wrap;
    justify-content: center;
}

.national-presence i {
    font-size: 1.125rem;
    opacity: 0.9;
}

.whatsapp-link {
    text-decoration: none;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--white);
    font-weight: 600;
    border-radius: 50%;
    background: #25d366;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .national-presence {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
    }
    
    .whatsapp-btn {
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-btn i {
        font-size: 1.25rem;
    }
}


