*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1B3A6B;
    --navy-dark: #0f2244;
    --navy-mid: #2a4f8f;
    --red: #C41E3A;
    --red-hover: #e02444;
    --gold: #F59E0B;
    --cream: #f8f6f0;
    --whatsapp: #25D366;
    --whatsapp-hover: #1da851;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: #000;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
}

@media (min-width: 768px) {
    .site-header {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        border-bottom: 1px solid #f3f4f6;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }
}

@media (max-width: 767px) {
    .site-header.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        border-bottom: 1px solid #f3f4f6;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }
}

.header-inner {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 16px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .header-inner {
        padding: 0 24px;
    }
}

@media (min-width: 768px) {
    .header-inner {
        height: 80px;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 640px) {
    .logo-link {
        gap: 12px;
    }
}

.logo-img-wrap {
    display: none;
    width: 80px;
    height: 80px;
    overflow: hidden;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .logo-img-wrap {
        display: block;
    }
}

@media (min-width: 768px) {
    .logo-img-wrap {
        width: 96px;
        height: 96px;
    }
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.9);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    color: #fff;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .logo-name {
        color: #1B3A6B;
    }
}

@media (max-width: 767px) {
    .site-header.scrolled .logo-name {
        color: #1B3A6B;
    }
}

.logo-subtitle {
    font-size: 12px;
    line-height: 1.25;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .logo-subtitle {
        color: #6b7280;
    }
}

@media (max-width: 767px) {
    .site-header.scrolled .logo-subtitle {
        color: #6b7280;
    }
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.desktop-nav a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .desktop-nav a {
        color: #4b5563;
    }
    .desktop-nav a:hover {
        color: #1B3A6B;
    }
}

.desktop-nav a:hover {
    color: #fff;
}

.header-cta {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 9999px;
    transition: all 0.3s ease;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
    .header-cta {
        display: flex;
        background: #1B3A6B !important;
        color: #fff !important;
        border: none;
    }
    .header-cta:hover {
        background: #0f2244 !important;
        color: #fff !important;
    }
}

.header-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff !important;
}

.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    padding: 8px;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
}

@media (max-width: 767px) {
    .site-header.scrolled .mobile-toggle {
        color: #1B3A6B;
    }
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 100;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-close {
    align-self: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy);
    padding: 8px;
    margin-bottom: 16px;
}

.mobile-link {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-link:hover {
    color: var(--red);
}

.mobile-cta {
    margin-top: 16px;
    background: var(--navy);
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 9999px;
    border-bottom: none;
    font-weight: 600;
}

.mobile-cta:hover {
    background: var(--navy-mid);
    color: #fff;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 40px;
    background: linear-gradient(135deg, #0f2244 0%, #1B3A6B 60%, #2a4f8f 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-watermark.png');
    background-repeat: repeat;
    background-size: 120px;
    opacity: 0.15;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-logo {
        margin-bottom: 32px;
    }
}

.hero-logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 9999px;
    background: #fff;
    border: 4px solid #1B3A6B;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 0 0 4px #fff;
}

@media (min-width: 640px) {
    .hero-logo-circle {
        width: 112px;
        height: 112px;
    }
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.9);
}

.hero-label {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    font-style: italic;
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--red);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--red-hover);
    transform: scale(1.05);
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* ========== SECTIONS ========== */
.section {
    padding: 96px 24px;
}

.section-cream {
    background: var(--cream);
}

.section-white {
    background: #fff;
}

.section-dark {
    background: var(--navy-dark);
}

.section-navy {
    background: var(--navy);
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title-white {
    color: #fff;
}

.section-subtitle {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 48px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 64px;
}

.section-header-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    width: 48px;
    height: 2px;
    background: var(--red);
    margin-bottom: 32px;
}

.section-divider-center {
    width: 48px;
    height: 2px;
    background: var(--red);
    margin: 0 auto 32px;
}

.section-divider-long {
    width: 64px;
    height: 2px;
    background: var(--red);
    margin: 0 auto 24px;
}

/* ========== QUEM SOMOS ========== */
.quem-somos-grid {
    display: grid;
    gap: 64px;
    max-width: 1152px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .quem-somos-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.quem-somos-text p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.8;
    margin-bottom: 16px;
}

.valores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.valor-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    background: var(--cream);
    border-radius: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.valor-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.valor-emoji {
    font-size: 28px;
    margin-bottom: 4px;
    display: block;
}

.valor-modal-emoji {
    font-size: 48px;
    margin-bottom: 16px;
}

.emoji-img {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

.valor-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.valor-link {
    font-size: 11px;
    color: var(--red);
    font-weight: 500;
}

/* ========== MODAL VALORES ========== */
.valor-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.valor-modal.open {
    opacity: 1;
    visibility: visible;
}

.valor-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.valor-modal-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.valor-modal.open .valor-modal-content {
    transform: scale(1) translateY(0);
}

.valor-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.4);
    padding: 4px;
    transition: color 0.3s ease;
}

.valor-modal-close:hover {
    color: var(--navy);
}

.valor-modal-emoji {
    font-size: 48px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.valor-modal-emoji .emoji-img {
    width: 48px;
    height: 48px;
}

.valor-modal-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.valor-modal-desc {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
}

/* ========== PILARES ========== */
.pilares-grid {
    display: grid;
    gap: 24px;
    max-width: 1152px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pilares-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pilar-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.pilar-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.pilar-icon {
    width: 40px;
    height: 40px;
    background: rgba(27, 58, 107, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--navy);
}

.pilar-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.pilar-card p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
}

/* ========== SERVICOS ========== */
.servicos-grid {
    display: grid;
    gap: 32px;
    max-width: 1152px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .servicos-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.servico-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.servico-card:hover {
    border-color: var(--navy);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.servico-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: #f1f3f7;
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.servico-card:hover .servico-number {
    color: rgba(196, 30, 58, 0.1);
}

.servico-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.servico-card p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.625;
}

/* ========== MIGRATION CTA ========== */
.migration-inner {
    max-width: 1152px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.migration-content {
    flex: 1;
    min-width: 280px;
}

.migration-content .section-label {
    color: rgba(255, 255, 255, 0.6);
}

.migration-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
    margin-bottom: 12px;
}

.migration-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 0;
}

.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--red);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-red:hover {
    background: var(--red-hover);
    transform: scale(1.05);
    color: #fff;
}

/* ========== REFORMA TRIBUTARIA ========== */
.reforma-inner {
    max-width: 1152px;
    margin: 0 auto;
}

.reforma-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: #C41E3A;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 9999px;
    margin-bottom: 20px;
}

.reforma-grid {
    display: grid;
    gap: 16px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .reforma-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.reforma-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.reforma-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.reforma-card-icon {
    margin-bottom: 12px;
    color: var(--gold);
}

.reforma-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.reforma-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.reforma-warning {
    margin-top: 24px;
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.reforma-warning h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.reforma-warning p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.reforma-cta {
    margin-top: 32px;
    text-align: center;
}

.btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-white-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ========== DEPOIMENTOS ========== */
.depoimentos-grid {
    display: grid;
    gap: 24px;
    max-width: 1152px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .depoimentos-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.depoimento-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.depoimento-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.depoimento-stars svg {
    color: var(--gold);
}

.depoimento-card blockquote {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: normal;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.depoimento-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.depoimento-info {
    display: flex;
    flex-direction: column;
}

.depoimento-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.depoimento-role {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}

/* ========== GOOGLE REVIEWS ========== */
.google-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.google-stars {
    display: flex;
    gap: 2px;
}

.google-stars svg {
    color: var(--gold);
}

.google-rating {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
}

.google-count {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

.reviews-grid {
    display: grid;
    gap: 20px;
    max-width: 1152px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.review-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.review-badge {
    font-size: 11px;
    color: var(--navy);
    background: rgba(27, 58, 107, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.review-stars svg {
    color: var(--gold);
}

.review-card p {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.reviews-cta {
    text-align: center;
    margin-top: 32px;
}

.btn-blue-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    border-radius: 9999px;
    border: 2px solid var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-blue-outline:hover {
    background: var(--navy);
    color: #fff;
}

/* ========== CONTATO ========== */
.contato-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.contato-icon-circle {
    width: 56px;
    height: 56px;
    background: rgba(27, 58, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contato-office-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #1B3A6B;
    margin-bottom: 4px;
}

.contato-phone-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #25D366;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
}

.contato-pills {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

@media (min-width: 640px) {
    .contato-pills {
        flex-direction: row;
    }
}

.contato-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contato-pill:hover {
    border-color: #1B3A6B;
    color: #1B3A6B;
}

.contato-pill-icon {
    width: 32px;
    height: 32px;
    background: rgba(27, 58, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--navy-dark);
    padding: 40px 24px;
}

.footer-inner {
    max-width: 1152px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #1B3A6B;
    outline: 2px solid #fff;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.9);
}

.footer-logo .logo-name {
    color: #fff;
}

.footer-logo .logo-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.footer-center p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-right {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* ========== WHATSAPP FAB ========== */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
}

.whatsapp-fab.visible {
    opacity: 1;
    transform: scale(1);
}

.whatsapp-fab:hover {
    background: var(--whatsapp-hover);
    transform: scale(1.1);
    color: #fff;
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-up-sm {
    transform: translateY(20px);
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 767px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 64px 20px;
    }

    .quem-somos-grid {
        gap: 40px;
    }

    .migration-inner {
        text-align: center;
        justify-content: center;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-center {
        order: 3;
        width: 100%;
    }

    .footer-right {
        order: 2;
    }
}
