/* ============================================
   VARIÁVEIS E RESET
============================================ */
:root {
    --primary-color: #0A2463;
    --secondary-color: #D4AF37;
    --accent-color: #1E3A8A;
    --light-bg: #F8F9FA;
    --white: #ffffff;
    --dark-text: #2C3E50;
    --light-text: #4a5568;
    --gray: #e5e5e5;

    --font-display: 'Playfair Display', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --shadow-sm: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.05);
    --shadow-md: 0 0.3125rem 1.25rem rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 0.3125rem 1.25rem rgba(212, 175, 55, 0.3);

    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
    padding: 1.2rem 0;
    background: transparent;
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 36, 99, 0.98);
    backdrop-filter: blur(0.625rem);
    box-shadow: var(--shadow-md);
    padding: 0.8rem 0;
}

.navbar-brand .logo-img {
    height: 3.125rem;
    transition: all var(--transition-fast);
}

.navbar.scrolled .logo-img {
    height: 3.125rem;
}

.navbar-nav {
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.03125rem;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: all var(--transition-fast);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0.125rem;
    background: var(--secondary-color);
    transform: translateX(-50%);
    transition: width var(--transition-fast);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 60%;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.btn-contact {
    background: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    border-radius: 1.875rem;
    padding: 0.6rem 1.8rem !important;
    margin-left: 1rem;
    font-weight: 600;
}

.btn-contact::before {
    display: none;
}

.btn-contact:hover {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
    height: 43.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow-x: hidden;
    width: 100%;
}

.hero-section.hero-banner {
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 43.75rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: heroGlow 15s ease-in-out infinite;
}

.hero-section.hero-banner::before {
    animation: none;
    background: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.1875rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-title .highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.3125rem;
    left: 0;
    width: 100%;
    height: 0.9375rem;
    background: rgba(212, 175, 55, 0.25);
    z-index: -1;
    animation: highlightGrow 1s ease 0.8s backwards;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 37.5rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 1.875rem;
    height: 3.125rem;
    border: 0.125rem solid var(--secondary-color);
    border-radius: 0.9375rem;
    position: relative;
    animation: mouseFloat 2s ease-in-out infinite;
}

.mouse::before {
    content: '';
    position: absolute;
    width: 0.25rem;
    height: 0.625rem;
    background: var(--secondary-color);
    top: 0.625rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0.125rem;
    animation: mouseScroll 2s ease-in-out infinite;
}

/* ============================================
   BOTÕES
============================================ */
.btn-primary-custom {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 3.125rem;
    font-weight: 600;
    font-size: 1rem;
    border: 0.125rem solid var(--secondary-color);
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

.hero-buttons .btn-primary-custom {
    animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
    }

    70% {
        box-shadow: 0 0 0 1rem rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.btn-primary-custom:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.625rem 1.5625rem rgba(255, 255, 255, 0.3);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 3.125rem;
    font-weight: 600;
    font-size: 1rem;
    border: 0.125rem solid var(--white);
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-0.1875rem);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: #25D366 !important;
    color: var(--white) !important;
    padding: 1rem 2.5rem;
    border-radius: 3.125rem;
    font-weight: 600;
    font-size: 1.1rem;
    border: 0.125rem solid #25D366;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #128C7E !important;
    border-color: #128C7E;
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.625rem 1.875rem rgba(37, 211, 102, 0.4);
}

.btn-phone {
    background: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    padding: 1rem 2.5rem;
    border-radius: 3.125rem;
    font-weight: 600;
    font-size: 1.1rem;
    border: 0.125rem solid var(--secondary-color);
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-phone:hover {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    transform: translateY(-0.1875rem);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   SEÇÕES - BASE
============================================ */
section {
    padding: 6.25rem 0;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.125rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-title .highlight {
    color: var(--secondary-color);
}

.section-description {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 43.75rem;
    margin: 0 auto 3rem;
}

/* ============================================
   SOBRE SECTION
============================================ */
.sobre-section {
    background: var(--white);
}

.sobre-image {
    position: relative;
}

.sobre-image img {
    border-radius: 0.625rem;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.image-decoration {
    position: absolute;
    top: -1.25rem;
    right: -1.25rem;
    width: 100%;
    height: 100%;
    border: 0.1875rem solid var(--secondary-color);
    border-radius: 0.625rem;
    z-index: 1;
}

.stats-box {
    position: absolute;
    bottom: 1.875rem;
    right: -1.875rem;
    background: var(--secondary-color);
    padding: 2rem 2.5rem;
    border-radius: 0.625rem;
    box-shadow: var(--shadow-gold);
    z-index: 3;
    text-align: center;
}

.stats-box h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.stats-box p {
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
    font-size: 0.9rem;
}

.sobre-content {
    padding-left: 2rem;
}

.sobre-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    transition: transform var(--transition-fast);
}

.feature-item:hover {
    transform: translateX(0.625rem);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    min-width: 3.125rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--light-text);
    margin: 0;
}

/* ============================================
   ÁREAS SECTION
============================================ */
.areas-section {
    background: linear-gradient(to bottom, var(--light-bg), var(--white));
}

.area-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 0.9375rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    height: 100%;
    border-top: 0.25rem solid transparent;
}

.area-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--secondary-color);
}

.area-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--secondary-color), #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-fast);
}

.area-card:hover .area-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-gold);
}

.area-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.area-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.area-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.area-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.area-link:hover {
    gap: 1rem;
    color: var(--primary-color);
}

/* ============================================
   FAIXA ANIMADA (MARQUEE)
============================================ */
.marquee-section {
    background: linear-gradient(135deg, #0A2463 0%, #1E3A8A 50%, #0A2463 100%);
    padding: 2.5rem 0;
    overflow: hidden;
    position: relative;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    min-width: 100%;
    animation: scroll 40s linear infinite;
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.1875rem;
    white-space: nowrap;
}

/* ============================================
   EQUIPE SECTION
============================================ */
.equipe-section {
    background: var(--white);
}

.team-card {
    background: var(--white);
    border-radius: 0.9375rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: var(--shadow-lg);
}

.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 36, 99, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    width: 2.8125rem;
    height: 2.8125rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
    transform: translateY(1.25rem);
    opacity: 0;
}

.team-card:hover .team-social a {
    transform: translateY(0);
    opacity: 1;
}

.team-social a:nth-child(1) {
    transition-delay: 0.1s;
}

.team-social a:nth-child(2) {
    transition-delay: 0.2s;
}

.team-social a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.1);
}

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-content p {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.team-oab {
    font-size: 0.85rem;
    color: var(--light-text);
}

/* ============================================
   DEPOIMENTOS SECTION
============================================ */
.depoimentos-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.depoimentos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23D4AF37" fill-opacity="0.03" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,133.3C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.depoimentos-section .section-subtitle,
.depoimentos-section .section-title {
    color: var(--white);
}

.depoimentos-section .section-title .highlight {
    color: var(--secondary-color);
}

.depoimento-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 0.9375rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-smooth);
    position: relative;
    height: 100%;
}

.depoimento-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 0.9375rem 3.125rem rgba(0, 0, 0, 0.2);
}

.quote-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.stars {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.stars i {
    font-size: 1.1rem;
}

.depoimento-text {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 0.125rem solid var(--secondary-color);
}

.depoimento-author img {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    border: 0.1875rem solid var(--secondary-color);
}

.depoimento-author h5 {
    font-family: var(--font-display);
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
}

.depoimento-author span {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* ============================================
   CTA SECTIONS
============================================ */
.cta-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.cta-section.cta-alt {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.cta-box {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 1.25rem;
    box-shadow: var(--shadow-lg);
}

.cta-section.cta-alt .cta-box {
    background: rgba(255, 255, 255, 0.95);
}

.cta-box h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.cta-box .btn-primary-custom {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 3.125rem;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

.cta-box .btn-primary-custom:hover {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    transform: translateY(-0.1875rem);
    box-shadow: var(--shadow-gold);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
    background: var(--white);
    padding: 6.25rem 0;
}

.accordion-item {
    background: var(--white);
    border: none;
    border-radius: 0.9375rem !important;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-header {
    border: none;
}

.accordion-button {
    background: var(--white);
    color: var(--primary-color);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.5rem 2rem;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230A2463'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230A2463'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 2rem;
    color: var(--light-text);
    font-size: 1.05rem;
    line-height: 1.8;
    border-top: 0.0625rem solid var(--gray);
}

.accordion-button i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.accordion-button:not(.collapsed) i {
    color: var(--primary-color);
}

/* ============================================
   CONTATO SECTION
============================================ */
.contato-section {
    background: var(--light-bg);
}

/* ── Cards de WhatsApp e Telefone ── */
.contact-cta-row {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.contact-cta-row .col-md-6 {
    display: flex;
}

.contact-cta-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    text-align: center;
    text-decoration: none;
    border: 0.1875rem solid transparent;
}

.contact-cta-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.whatsapp-card:hover {
    border-color: #25D366;
}

.phone-card:hover {
    border-color: var(--secondary-color);
}

.contact-cta-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all var(--transition-fast);
}

.whatsapp-card .contact-cta-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.phone-card .contact-cta-icon {
    background: rgba(212, 175, 55, 0.1);
    color: var(--secondary-color);
}

.contact-cta-card:hover .contact-cta-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-cta-card h4 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-cta-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.contact-cta-action {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.whatsapp-card:hover .contact-cta-action {
    color: #25D366;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.info-item-modern {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.9375rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.info-item-modern:hover {
    transform: translateY(-0.3125rem);
    box-shadow: var(--shadow-md);
}

.info-item-modern .info-icon {
    width: 3.75rem;
    height: 3.75rem;
    background: linear-gradient(135deg, var(--secondary-color), #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-item-modern .info-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-item-modern h5 {
    font-family: var(--font-display);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-item-modern p {
    color: var(--light-text);
    margin: 0;
    line-height: 1.7;
}

.info-item-modern a {
    color: var(--light-text);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.info-item-modern a:hover {
    color: var(--secondary-color);
}

.social-links-contact {
    margin-top: 3rem;
}

.social-links-contact p {
    color: var(--light-text);
    font-weight: 500;
}

.social-links-center {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links-center a {
    width: 3.125rem;
    height: 3.125rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
    font-size: 1.2rem;
    text-decoration: none;
}

.social-links-center a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-0.3125rem);
    box-shadow: var(--shadow-gold);
    text-decoration: none;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.footer-about {
    padding-right: 2rem;
    text-align: center;
}

.footer-about .footer-logo {
    margin: 0 auto;
}

.footer-logo {
    max-height: 3.125rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links h5 {
    font-family: var(--font-display);
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 0.3125rem;
}

.footer-schedule li {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.privacy-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
}

.privacy-link:hover {
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-0.1875rem);
    text-decoration: none;
}

/* ============================================
   WHATSAPP FLOAT
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 1.875rem;
    right: 1.875rem;
    width: 3.75rem;
    height: 3.75rem;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0.3125rem 1.25rem rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all var(--transition-fast);
    animation: pulse 2s ease-in-out infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
    color: var(--white);
    box-shadow: 0 0.5rem 1.875rem rgba(37, 211, 102, 0.6);
    text-decoration: none;
}

/* ============================================
   BOTÃO VOLTAR AO TOPO
============================================ */
.back-to-top {
    position: fixed;
    bottom: 8.125rem;
    right: 1.875rem;
    width: 3.125rem;
    height: 3.125rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-gold);
    z-index: 1000;
    cursor: pointer;
    transition: all var(--transition-fast);
    opacity: 0;
    visibility: hidden;
    text-decoration: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-0.3125rem) scale(1.1);
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 0.5rem 1.875rem rgba(212, 175, 55, 0.5);
    text-decoration: none;
}

/* ============================================
   OFFCANVAS MOBILE MENU
============================================ */
.navbar-toggler.offcanvas-toggler {
    border: none;
    background: transparent;
    padding: 0.4rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    outline: none;
    box-shadow: none !important;
}

.hamburger-line {
    display: block;
    width: 1.625rem;
    height: 0.125rem;
    background: var(--white);
    border-radius: 0.125rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

body.offcanvas-open .hamburger-line:nth-child(1) {
    transform: translateY(0.4375rem) rotate(45deg);
}

body.offcanvas-open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

body.offcanvas-open .hamburger-line:nth-child(3) {
    transform: translateY(-0.4375rem) rotate(-45deg);
}

.offcanvas-mobile-menu {
    width: 85vw !important;
    max-width: 400px !important;
    background: var(--primary-color);
    border-left: 0.0625rem solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: -0.5rem 0 3rem rgba(0, 0, 0, 0.4) !important;
    overflow-y: auto;
}

.offcanvas-backdrop {
    backdrop-filter: blur(0.25rem);
    background-color: rgba(10, 36, 99, 0.6) !important;
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.8rem;
    background: rgba(0, 0, 0, 0.15);
    position: relative;
    min-height: 5rem;
}

.offcanvas-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.offcanvas-logo {
    height: 2.2rem;
    object-fit: contain;
}

.offcanvas-close-btn {
    position: absolute;
    right: 1.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.25rem;
    opacity: 0.85;
    transition: opacity var(--transition-fast);
    flex-shrink: 0;
}

.offcanvas-close-btn:hover {
    color: var(--white);
    opacity: 1;
    background: transparent;
    border: none;
    transform: translateY(-50%);
}

.offcanvas-divider {
    height: 0.0625rem;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 0;
    opacity: 1;
}

.offcanvas-body {
    background: #F8F9FA;
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.offcanvas-body .offcanvas-divider {
    background: linear-gradient(to right, transparent, rgba(10, 36, 99, 0.3), transparent);
    opacity: 1;
    margin: 1.5rem 0;
}

.offcanvas-nav {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 2rem;
}

.offcanvas-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 0;
    text-decoration: none;
    position: relative;
    border-bottom: 0.0625rem solid #e0e0e0;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    background: transparent !important;
}

.offcanvas-nav-link:last-child {
    border-bottom: none;
}

.offcanvas-nav-link::before {
    display: none;
}

.offcanvas-nav-link:hover,
.offcanvas-nav-link:focus,
.offcanvas-nav-link:active {
    background: transparent !important;
    outline: none;
}

.nav-link-text {
    flex: 1;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: #2c2c2c;
    font-weight: 500;
}

.offcanvas-nav-link:hover .nav-link-text {
    color: #2c2c2c;
}

.offcanvas-social {
    display: flex;
    gap: 0.7rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.offcanvas-social-link {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: 0.09375rem solid rgba(10, 36, 99, 0.25);
    background: transparent;
    color: rgba(44, 44, 44, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.offcanvas-social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-0.1875rem);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

/* ============================================
   FADE IN DOS CARDS
============================================ */
.area-card,
.team-card,
.depoimento-card {
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.area-card.visible,
.team-card.visible,
.depoimento-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   KEYFRAMES
============================================ */
@keyframes heroGlow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes highlightGrow {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(1.875rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mouseFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-0.625rem);
    }
}

@keyframes mouseScroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(1.25rem);
    }
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 1rem rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-1.875rem);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(1.875rem);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(1.875rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   LGPD COOKIE BANNER
============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -0.25rem 1.5rem rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text h5 {
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
}

.cookie-banner-text h5 i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cookie-banner-text a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: opacity var(--transition-fast);
}

.cookie-banner-text a:hover {
    opacity: 0.8;
    color: var(--secondary-color);
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn-accept {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    padding: 0.65rem 1.8rem;
    font-weight: 700;
    border-radius: 3.125rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.cookie-btn-accept:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 0.65rem 1.8rem;
    font-weight: 600;
    border-radius: 3.125rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVO
   Ordem: telas grandes → desktop → tablet → mobile
============================================ */

/* Telas grandes (1200px - 1920px) */
@media (min-width: 1200px) and (max-width: 1920px) {

    .hero-section,
    .hero-section.hero-banner {
        height: 700px;
    }
}

/* Desktop - ocultar offcanvas (992px+) */
@media (min-width: 992px) {
    .offcanvas-mobile-menu {
        display: none !important;
        visibility: hidden !important;
    }

    .navbar-toggler.offcanvas-toggler {
        display: none !important;
    }
}

/* Tablets landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {

    .hero-section,
    .hero-section.hero-banner {
        height: 550px;
    }
}

/* Tablets portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {

    .hero-section,
    .hero-section.hero-banner {
        height: 500px;
        background-position: center center;
    }
}

/* Tablets e abaixo (max 991px) */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .sobre-content {
        padding-left: 0;
        margin-top: 3rem;
    }

    .stats-box {
        right: 1.25rem;
        bottom: 1.25rem;
    }

    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }

    .marquee-content {
        font-size: 1rem;
        letter-spacing: 0.125rem;
    }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
    section {
        padding: 3.75rem 0;
        max-width: 100vw;
    }

    .container {
        max-width: 100%;
    }

    /* Hero */
    .hero-section,
    .hero-section.hero-banner {
        height: 50rem;
        background-position: center top;
        background-size: cover;
        width: 100%;
        align-items: flex-start;
        padding-top: 5rem !important;
        padding-bottom: 14rem;
    }

    .hero-section.hero-banner {
        background-image: url('../images/banner-mobile.png');
    }

    .hero-section .container {
        width: 100%;
        max-width: 100%;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .hero-section .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }

    .hero-section .row {
        align-items: flex-start;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .hero-content {
        text-align: center;
        width: 100%;
    }

    .hero-subtitle {
        text-align: center;
        margin-top: 0 !important;
        padding-top: 0 !important;
        font-size: 0.75rem;
        letter-spacing: 0.15rem;
    }

    .hero-title {
        font-size: 1.6rem;
        text-align: center;
        margin-top: 0 !important;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.9rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        flex-direction: column;
        justify-content: center;
    }

    .btn-outline-custom {
        display: none !important;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }

    .highlight {
        white-space: nowrap;
    }

    /* Sobre */
    .sobre-content {
        text-align: left;
    }

    .sobre-content>.section-subtitle,
    .sobre-content>.section-title,
    .sobre-content>.section-description {
        text-align: center;
        display: block;
    }

    .image-decoration {
        display: none;
    }

    .stats-box {
        position: static;
        margin-top: 2rem;
    }

    /* Animações AOS */
    [data-aos="fade-up"] {
        transform: translateY(1.25rem) !important;
    }

    [data-aos="fade-up"].aos-animate {
        transform: translateY(0) !important;
    }

    [data-aos="fade-left"] {
        transform: translateX(0.9375rem) !important;
    }

    [data-aos="fade-left"].aos-animate {
        transform: translateX(0) !important;
    }

    [data-aos="fade-right"] {
        transform: translateX(-0.9375rem) !important;
    }

    [data-aos="fade-right"].aos-animate {
        transform: translateX(0) !important;
    }

    [data-aos="fade-down"] {
        transform: translateY(-1.25rem) !important;
    }

    [data-aos="fade-down"].aos-animate {
        transform: translateY(0) !important;
    }

    /* Animações dos cards */
    .area-card {
        animation: slideInLeft 0.6s ease-out backwards;
    }

    .area-card:nth-child(2) {
        animation: slideInRight 0.6s ease-out 0.1s backwards;
    }

    .area-card:nth-child(3) {
        animation: slideInLeft 0.6s ease-out 0.2s backwards;
    }

    .team-card:nth-child(odd) {
        animation: slideInLeft 0.6s ease-out backwards;
    }

    .team-card:nth-child(even) {
        animation: slideInRight 0.6s ease-out backwards;
    }

    .depoimento-card:nth-child(1) {
        animation: slideInLeft 0.6s ease-out backwards;
    }

    .depoimento-card:nth-child(2) {
        animation: slideInUp 0.6s ease-out 0.1s backwards;
    }

    .depoimento-card:nth-child(3) {
        animation: slideInRight 0.6s ease-out 0.2s backwards;
    }

    .area-card {
        padding: 1.5rem;
    }

    .areas-section {
        padding: 2rem 0;
    }

    .team-card {
        transform: none !important;
    }

    .team-card:hover {
        transform: translateY(-0.625rem) !important;
    }

    /* Marquee */
    .marquee-section {
        padding: 2rem 0;
    }

    .marquee-content {
        font-size: 1.1rem;
        letter-spacing: 0.09375rem;
    }

    /* CTA */
    .cta-section {
        padding: 2.5rem 0 3.5rem;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
        box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.15);
        border: none;
        filter: none;
    }

    .cta-box h3 {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-whatsapp,
    .btn-phone {
        width: 100%;
        justify-content: center;
    }

    /* Accordion */
    .accordion-button {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
    }

    .accordion-body {
        padding: 1.5rem;
    }

    /* Contato */
    .contact-info-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-cta-row {
        max-width: 100%;
    }

    /* Footer */
    .footer .container {
        padding-left: 2.2rem !important;
        padding-right: 2.2rem !important;
    }

    .footer .row>[class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }

    .footer-social {
        justify-content: center;
    }

    /* Botões flutuantes */
    .whatsapp-float {
        width: 3.125rem;
        height: 3.125rem;
        font-size: 1.5rem;
        bottom: 1.25rem;
        right: 1.25rem;
    }

    /* Cookie Banner */
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-content {
        gap: 1rem;
    }

    .cookie-banner-text h5 {
        font-size: 1rem;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-btn-accept,
    .cookie-btn-reject {
        flex: 1;
        justify-content: center;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}