/* ==========================================================================
   ABSOLUTA — SOLUÇÕES EMPRESARIAIS & CONTABILIDADE
   100% Cross-Browser Compatible Stylesheet (Chrome, Firefox, Safari, Edge, Opera)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&family=Mukta:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600;1,700&family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
    /* Palette */
    --color-header: #131b3e;
    --color-header-scrolled: #0e1533;
    --color-hero-dark: #0a1128;
    --color-primary-blue: #1e2c5b;
    --color-secondary-blue: #172a6b;
    --color-accent-blue: #0073e6;
    --color-accent-blue-hover: #005bb5;
    --color-cyan-badge: #00a8ff;
    
    /* Gold */
    --color-gold: #cca34c;
    --color-gold-light: #e5c478;
    --color-gold-dark: #a88133;
    
    /* Backgrounds & Text */
    --color-bg-page: #f8fafc;
    --color-bg-white: #ffffff;
    --color-text-dark: #1e293b;
    --color-text-muted: #5a6a85;
    --color-text-light: #8896ab;
    --color-border: #e2e8f0;
    --color-border-light: #edf2f7;
    
    /* Typography */
    --font-heading: 'Mukta', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif-gold: 'Playfair Display', Georgia, serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 10px 30px rgba(19, 27, 62, 0.08);
    --shadow-card-hover: 0 20px 40px rgba(19, 27, 62, 0.16);
    --shadow-hero-card: 0 15px 35px rgba(10, 17, 40, 0.16);
    --shadow-glow-blue: 0 0 25px rgba(0, 115, 230, 0.35);
    
    /* Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-page);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-drag: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
}

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

/* ==========================================================================
   CROSS-BROWSER SCROLL REVEAL (Safe & Guaranteed Visibility)
   ========================================================================== */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
    -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
}

.js-loaded .reveal {
    opacity: 0;
}

.js-loaded .reveal.reveal-up {
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
}

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

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

.js-loaded .reveal.reveal-active {
    opacity: 1;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.top-nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-header);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.top-nav .container {
    max-width: 1600px;
    padding: 0 45px;
}

.top-nav.scrolled {
    background: var(--color-header-scrolled);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.top-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 105px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo img {
    height: 68px;
    max-height: 72px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.04);
    -webkit-transform: scale(1.04);
}

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

.nav-link-item {
    color: #ffffff;
    font-size: 1.12rem;
    font-weight: 600;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
    text-decoration: none;
}

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

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--color-gold);
    transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
}

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

.nav-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-social-btn {
    width: 40px;
    height: 40px;
    background: var(--color-accent-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 1.05rem;
    box-shadow: 0 2px 8px rgba(0, 115, 230, 0.3);
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    text-decoration: none;
}

.nav-social-btn:hover {
    background: var(--color-accent-blue-hover);
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    box-shadow: var(--shadow-glow-blue);
}

.nav-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.nav-hamburger:hover, .nav-hamburger:focus, .nav-hamburger:active, .nav-hamburger.active {
    background: rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--color-gold-light, #f0c961);
}

.nav-hamburger i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.25rem;
    line-height: 1;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER (Luxury Experience)
   ========================================================================== */
/* ==========================================================================
   MOBILE NAVIGATION DRAWER (Clean Minimalist Experience)
   ========================================================================== */
.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(3, 7, 18, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
    z-index: 9998;
}

.mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 88%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    background: linear-gradient(180deg, #0d1a3a 0%, #080f22 60%, #040813 100%);
    border-left: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.7);
    z-index: 9999;
    transform: translateX(105%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    visibility: hidden;
}

@media (max-width: 480px) {
    .mobile-nav-drawer {
        width: 100%;
        max-width: 100%;
        border-left: none;
    }
}

.mobile-nav-drawer.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(13, 26, 58, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-shrink: 0;
}

.mobile-nav-logo img {
    max-height: 42px;
    width: auto;
    object-fit: contain;
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-nav-close:hover, .mobile-nav-close:focus {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    color: #fca5a5;
    transform: rotate(90deg);
}

.mobile-nav-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px 18px max(24px, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-content::-webkit-scrollbar {
    width: 4px;
}
.mobile-nav-content::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: all 0.22s ease;
}

.mobile-nav-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--color-gold-light, #f0c961);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    flex-shrink: 0;
    transition: all 0.22s ease;
}

.mobile-nav-text {
    flex: 1;
}

.mobile-nav-arrow {
    font-size: 0.75rem;
    color: #94a3b8;
    opacity: 0.5;
    transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.mobile-nav-item:hover, .mobile-nav-item:active, .mobile-nav-item.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.16) 0%, rgba(0, 115, 230, 0.16) 100%);
    border-color: rgba(212, 175, 55, 0.45);
    color: #ffffff;
    transform: translateX(4px);
}

.mobile-nav-item.active .mobile-nav-icon, .mobile-nav-item:hover .mobile-nav-icon {
    background: var(--color-gold, #d4af37);
    color: #080f22;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.mobile-nav-item.active .mobile-nav-arrow, .mobile-nav-item:hover .mobile-nav-arrow {
    opacity: 1;
    color: var(--color-gold-light, #f0c961);
    transform: translateX(3px);
}

/* Drawer Footer */
.mobile-nav-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-contact-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    font-size: 0.85rem;
    text-decoration: none;
    word-break: break-all;
    transition: all 0.2s ease;
}

.mobile-contact-pill i {
    color: var(--color-accent-blue, #0073e6);
    font-size: 0.92rem;
    flex-shrink: 0;
}

.mobile-contact-pill:hover, .mobile-contact-pill:active {
    background: rgba(0, 115, 230, 0.12);
    border-color: rgba(0, 115, 230, 0.35);
    color: #ffffff;
}

/* Social media pills */
.mobile-social-pills {
    display: flex;
    gap: 8px;
}

.mobile-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.mobile-social-btn:hover, .mobile-social-btn:active {
    background: var(--color-accent-blue, #0073e6);
    border-color: var(--color-accent-blue-hover, #005bb5);
    box-shadow: 0 4px 12px rgba(0, 115, 230, 0.3);
}

/* Lock scroll and hide floating button */
body.mobile-menu-open {
    overflow: hidden !important;
    touch-action: none !important;
}

body.mobile-menu-open .whatsapp-float-btn {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: scale(0.6) !important;
    transition: all 0.25s ease !important;
}

/* ==========================================================================
   HERO BANNER SECTION (Imagem Oficial Completa)
   ========================================================================== */
.hero-banner-section {
    background: #091024;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    background: #091024;
    line-height: 0;
}

.hero-banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 3 Overlapping Floating Cards */
.hero-floating-cards {
    position: relative;
    z-index: 10;
    margin-top: -65px;
    margin-bottom: 70px;
}

.hero-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.hero-f-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-md);
    padding: 34px 28px 26px;
    box-shadow: var(--shadow-hero-card);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.hero-f-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-f-card:hover {
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(19, 27, 62, 0.18);
}

.hero-f-card:hover::before {
    opacity: 1;
}

.hero-f-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.hero-f-icon {
    font-size: 1.6rem;
    color: var(--color-accent-blue);
    transition: transform 0.3s ease, color 0.3s ease;
}

.hero-f-card:hover .hero-f-icon {
    transform: scale(1.15);
    color: var(--color-gold);
}

.hero-f-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.25;
}

.hero-f-title a {
    color: var(--color-primary-blue);
    transition: color 0.2s ease;
    text-decoration: none;
}

.hero-f-title a:hover {
    color: var(--color-accent-blue);
}

.hero-f-text {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
}

.hero-f-footer {
    display: flex;
    justify-content: flex-end;
}

.hero-f-btn {
    width: 38px;
    height: 38px;
    background: var(--color-primary-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: background 0.25s ease, transform 0.25s ease;
}

.hero-f-card:hover .hero-f-btn {
    background: var(--color-accent-blue);
    transform: translateX(5px);
}

/* ==========================================================================
   SERVICES SECTION (GRID DE 6)
   ========================================================================== */
.services-block {
    padding: 70px 0 100px;
    background: #ffffff;
}

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

.section-tag-gold {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-heading-dark {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    line-height: 1.25;
    margin-bottom: 10px;
}

.section-desc-muted {
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

.services-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-box {
    background: var(--color-bg-white);
    border-radius: var(--radius-md);
    border: 1px solid #e9edf4;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.service-thumb {
    height: 190px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-box:hover .service-thumb img {
    transform: scale(1.08);
}

.service-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-body-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-body-title a {
    color: var(--color-primary-blue);
    transition: color 0.2s ease;
    text-decoration: none;
}

.service-body-title a:hover {
    color: var(--color-accent-blue);
}

.service-body-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-action-row {
    display: flex;
    justify-content: flex-end;
}

.service-arrow-btn {
    width: 36px;
    height: 36px;
    background: var(--color-primary-blue);
    color: #ffffff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background 0.25s ease, transform 0.25s ease;
}

.service-box:hover .service-arrow-btn {
    background: var(--color-accent-blue);
    transform: translateX(4px);
}

/* ==========================================================================
   QUEM SOMOS (ABOUT SECTION)
   ========================================================================== */
.about-block {
    padding: 95px 0;
    background: #f8fafc;
}

.about-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-col-left .section-tag-gold {
    text-align: left;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary-blue);
    margin-bottom: 20px;
    line-height: 1.25;
}

.about-para {
    font-size: 0.96rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-highlight-box {
    background: #ffffff;
    border-left: 4px solid var(--color-gold);
    padding: 22px 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 18px;
    margin-top: 24px;
    transition: transform 0.3s ease;
}

.about-highlight-box:hover {
    transform: translateX(6px);
}

.about-h-icon {
    color: var(--color-gold);
    font-size: 2rem;
    flex-shrink: 0;
}

.about-h-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    margin-bottom: 6px;
}

.about-h-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card-hover);
}

/* ==========================================================================
   POR QUE NOS ESCOLHER
   ========================================================================== */
.why-block {
    padding: 95px 0;
    background: #ffffff;
}

.why-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-col-left .section-tag-gold {
    text-align: left;
}

.why-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    margin-bottom: 28px;
    line-height: 1.25;
}

.why-card-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature-card {
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    gap: 18px;
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
}

.why-feature-card:hover {
    transform: translateX(8px);
    border-color: var(--color-gold);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.why-f-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #eff6ff;
    color: var(--color-accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-feature-card:hover .why-f-icon {
    background: var(--color-primary-blue);
    color: var(--color-gold);
}

.why-f-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    margin-bottom: 4px;
}

.why-f-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.why-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card-hover);
}

/* ==========================================================================
   COMO FUNCIONA (3 PASSOS)
   ========================================================================== */
.steps-block {
    padding: 95px 0;
    background: #f8fafc;
    position: relative;
}

.steps-3-grid,
.steps-4-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}
.steps-4-grid {
    grid-template-columns: repeat(4, 1fr);
}

.step-box {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 38px 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid #e9edf4;
    position: relative;
    transition: all 0.3s ease;
}

.step-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.step-pill-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    background: var(--color-cyan-badge);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-box-icon {
    font-size: 2rem;
    color: var(--color-accent-blue);
    margin-bottom: 18px;
}

.step-box-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    margin-bottom: 12px;
}

.step-box-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.steps-bottom-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 28px 40px;
    box-shadow: var(--shadow-card);
    border: 1px solid #edf2f7;
    position: relative;
}

.steps-b-text h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    margin-bottom: 4px;
}

.steps-b-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.steps-chart-arrow-img {
    position: absolute;
    right: 35px;
    bottom: -20px;
    width: 100px;
    pointer-events: none;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

/* ==========================================================================
   MID BANNER (SEGURANÇA DIGITAL & DUAS CAIXAS)
   ========================================================================== */
.sec-banner {
    position: relative;
    padding: 200px 0 0;
    min-height: 640px;
    background: linear-gradient(rgba(10, 22, 60, 0.35), rgba(8, 16, 45, 0.45)),
                url('../assets/atendimento.png') center center / cover no-repeat;
    background-blend-mode: multiply;
    color: #ffffff;
    text-align: center;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sec-banner-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: #0084ff;
    max-width: 900px;
    margin: 0 auto 14px;
    line-height: 1.25;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.sec-banner-sub {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 110px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.sec-2-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    bottom: -45px;
    z-index: 10;
}

.sec-floating-box {
    background: #ffffff;
    color: var(--color-text-dark);
    padding: 24px 28px;
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    border: 1px solid #eef2f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sec-floating-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.sec-f-icon {
    font-size: 2rem;
    color: #1e293b;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}

.sec-f-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    line-height: 1.2;
}

.sec-f-info p {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.5;
}

/* ==========================================================================
   CERTIFICAÇÃO DIGITAL & PLANOS
   ========================================================================== */
.certs-block {
    padding: 95px 0;
    background: #ffffff;
}

.certs-top-cta {
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 26px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #edf2f7;
    margin-bottom: 50px;
    box-shadow: var(--shadow-sm);
}

.certs-top-cta-text h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    margin-bottom: 4px;
}

.certs-top-cta-text p {
    font-size: 0.94rem;
    color: var(--color-text-muted);
}

.btn-cert-cta {
    background: var(--color-primary-blue);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulseCta 2.5s infinite;
    display: inline-block;
    transition: background 0.25s ease, transform 0.25s ease;
}

@keyframes pulseCta {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(30, 44, 91, 0.4); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 14px rgba(30, 44, 91, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(30, 44, 91, 0); }
}

.btn-cert-cta:hover {
    background: var(--color-accent-blue);
    transform: translateY(-2px);
}

.certs-3-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 55px;
}

.cert-product-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 38px 28px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    border-top: 4px solid var(--color-accent-blue);
    transition: all 0.3s ease;
}

.cert-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-top-color: var(--color-gold);
}

.cert-p-icon-img {
    width: 76px;
    height: 76px;
    margin-bottom: 18px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.cert-product-card:hover .cert-p-icon-img {
    transform: scale(1.1);
}

.cert-p-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    margin-bottom: 4px;
}

.cert-p-sub {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent-blue);
    margin-bottom: 22px;
}

.cert-p-checklist {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin-bottom: 24px;
}

.cert-p-checklist li {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cert-p-checklist li i {
    color: #10b981;
    font-size: 0.9rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Google Reviews Mini Bar */
.google-reviews-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-mini-item {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: var(--radius-md);
    border: 1px solid #edf2f7;
    transition: transform 0.25s ease;
}

.review-mini-item:hover {
    transform: translateY(-4px);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.review-m-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto 10px;
    background: var(--color-primary-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--color-gold);
}

.review-m-name {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    margin-bottom: 4px;
}

.review-m-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.review-m-quote {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    font-style: italic;
}

/* ==========================================================================
   MID MEETING QUOTE BANNER
   ========================================================================== */
.meeting-quote-banner {
    position: relative;
    padding: 270px 0;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(10, 22, 60, 0.35), rgba(8, 16, 45, 0.45)),
                url('../assets/the-team-that-wins-768x513-1.jpg') center center / cover no-repeat;
    background-blend-mode: multiply;
    color: #ffffff;
    text-align: center;
}

.meeting-quote-banner h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    max-width: 950px;
    margin: 0 auto;
    line-height: 1.3;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.7);
}

/* ==========================================================================
   POLÍTICA DA EMPRESA & FAQ
   ========================================================================== */
.faq-policy-block {
    padding: 95px 0;
    background: #f8fafc;
}

.faq-policy-2col {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
}

.policy-card-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid #e9edf4;
    box-shadow: var(--shadow-card);
    margin-bottom: 20px;
    display: flex;
    gap: 18px;
    transition: all 0.3s ease;
}

.policy-card-item:hover {
    transform: translateX(6px);
    border-color: var(--color-gold);
}

.policy-c-icon {
    color: var(--color-accent-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.policy-c-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    margin-bottom: 4px;
}

.policy-c-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.faq-container-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.faq-card-acc {
    background: #ffffff;
    border-radius: var(--radius-sm);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card-acc.active {
    border-color: var(--color-accent-blue);
    box-shadow: var(--shadow-card);
}

.faq-btn-trigger {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    background: none;
    border: none;
    cursor: pointer;
    user-select: none;
}

.faq-icon-toggle {
    font-size: 1.2rem;
    color: var(--color-accent-blue);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-card-acc.active .faq-icon-toggle {
    transform: rotate(45deg);
    color: var(--color-gold);
}

.faq-collapse-body {
    padding: 0 24px 22px;
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    display: none;
}

.faq-card-acc.active .faq-collapse-body {
    display: block;
}

/* ==========================================================================
   BLOG CAROUSEL & CARDS
   ========================================================================== */
.blog-block {
    padding: 95px 0;
    background: #ffffff;
}

.blog-carousel-wrapper {
    position: relative;
    max-width: 100%;
    padding: 0 45px;
    margin-top: 20px;
}

.blog-carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 15px 0 25px;
}

.blog-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.blog-carousel-slide {
    flex: 0 0 calc(33.333% - 20px);
    margin-right: 30px;
    box-sizing: border-box;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--color-primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.15rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    z-index: 10;
    transition: all 0.25s ease;
}

.carousel-arrow:hover {
    background: var(--color-primary-blue);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(30, 44, 91, 0.35);
    transform: translateY(-50%) scale(1.08);
}

.carousel-arrow.prev {
    left: -8px;
}

.carousel-arrow.next {
    right: -8px;
}

.blog-post-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid #e9edf4;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.blog-p-img {
    height: 200px;
    overflow: hidden;
    background: #f1f5f9;
}

.blog-p-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-card:hover .blog-p-img img {
    transform: scale(1.08);
}

.blog-p-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-p-cat {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.blog-p-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
}

.blog-p-title a {
    color: var(--color-primary-blue);
    transition: color 0.2s ease;
    text-decoration: none;
}

.blog-p-title a:hover {
    color: var(--color-accent-blue);
}

.blog-p-excerpt {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.blog-card-link-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--color-accent-blue);
    transition: gap 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.blog-card-link-more:hover {
    gap: 10px;
    color: #005bb5;
}

.blog-view-all-wrap {
    text-align: center;
    margin-top: 45px;
}

/* ==========================================================================
   TESTIMONIALS AUTO-CAROUSEL
   ========================================================================== */
.testimonials-block {
    padding: 80px 0;
    background-color: #f8f9fc;
    overflow: hidden;
}

.testimonials-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 30px;
    width: max-content;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.test-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 30px;
    width: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.test-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background-color: var(--color-header);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    border: 3px solid var(--color-gold);
    object-fit: cover;
}

.test-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-header);
    margin-bottom: 5px;
}

.test-stars {
    color: var(--color-gold);
    font-size: 14px;
    margin-bottom: 20px;
}

.test-text {
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 768px) {
    .test-card {
        width: 320px;
        padding: 30px 20px;
    }
}

/* ==========================================================================
   CONTATO & MAPA
   ========================================================================== */
.contact-block {
    padding: 95px 0;
    background: #141b3a;
    color: #ffffff;
}

.contact-2col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

.contact-tag-white {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 8px;
}

.contact-heading-blue {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    color: #2185ff;
    line-height: 1.25;
    margin-bottom: 26px;
}

.contact-box-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item-row {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
}

.contact-item-row:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #2185ff;
}

.contact-i-icon {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: #0073e6;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-i-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #2185ff;
    margin-bottom: 2px;
}

.contact-i-info p {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.45;
}

.contact-map-iframe {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: #1e293b;
    display: flex;
}

.contact-map-iframe iframe {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: 0;
    flex: 1;
}

/* ==========================================================================
   FOOTER (Paleta Escura Oficial, 5 Colunas com Divisórias Verticais)
   ========================================================================== */
.footer-main {
    background: #080f24;
    color: #ffffff;
    padding: 70px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
}

.footer-main .container {
    max-width: 1600px;
    padding: 0 45px;
}

.footer-5col {
    display: grid;
    grid-template-columns: 1.1fr 1.8fr 1.6fr 0.9fr 1.3fr;
    gap: 0;
    padding-bottom: 50px;
}

.footer-col {
    padding: 0 35px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

.footer-col:first-child {
    padding-left: 0;
}

.footer-col:last-child {
    border-right: none;
    padding-right: 0;
}

.footer-col-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo-wrap img {
    max-width: 220px;
    height: auto;
    object-fit: contain;
}

.footer-title-h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.25;
}

.footer-services-subcols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}

.footer-nav-list a {
    color: #94a3b8;
    font-size: 0.86rem;
    line-height: 1.4;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-nav-list a:hover {
    color: var(--color-gold-light);
    transform: translateX(3px);
}

.footer-desc-text {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.65;
}

.footer-social-icons {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.footer-hours-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.footer-hours-desc {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.5;
}

.footer-bottom-copy {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: right;
    font-size: 0.84rem;
    color: #64748b;
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    transition: transform 0.3s ease;
    animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float-btn:hover {
    transform: scale(1.12);
    color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Mobile, Tablet & Desktop)
   ========================================================================== */

/* Tablets & Small Desktops (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    .top-nav {
        height: 90px;
    }
    .nav-logo img {
        max-height: 58px;
    }
    .hero-cards-row,
    .services-grid-6,
    .steps-3-grid,
    .steps-4-grid,
    .certs-3-cards,
    .google-reviews-row,
    .blog-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .about-row,
    .why-row,
    .faq-policy-2col,
    .contact-2col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .blog-carousel-slide {
        flex: 0 0 calc(50% - 15px);
        margin-right: 30px;
    }
    .footer-5col {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .footer-col {
        border-right: none;
        padding: 0 15px;
    }
    .footer-bottom-copy {
        text-align: center;
    }
}

/* Mobile & Tablets Verticais (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    /* Header Mobile & Tablet */
    .top-nav {
        height: 76px;
    }
    .top-nav .container {
        padding: 0 16px;
    }
    .nav-logo img {
        max-height: 46px;
        width: auto;
    }
    .nav-socials {
        display: none !important;
    }
    .nav-links.desktop-nav-links {
        display: none !important;
    }
    .nav-hamburger {
        display: flex !important;
    }

    /* Headings */
    .section-heading-dark,
    .section-heading-white,
    .about-title-h2 {
        font-size: 1.7rem;
        line-height: 1.25;
    }
    .section-desc-muted {
        font-size: 0.92rem;
    }

    /* Hero Cards & Services */
    .hero-cards-row,
    .services-grid-6,
    .steps-3-grid,
    .steps-4-grid,
    .sec-2-boxes,
    .certs-3-cards,
    .google-reviews-row,
    .footer-5col {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-cards-section {
        margin-top: 20px;
    }
    .hero-f-card {
        padding: 24px 20px;
    }

    .service-thumb {
        height: 190px;
    }

    /* Blog Carousel Mobile: 1 Post por vez */
    .blog-carousel-wrapper {
        padding: 0 40px;
    }
    .blog-carousel-slide {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin-right: 20px;
    }
    .carousel-arrow {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
    }
    .carousel-arrow.prev {
        left: -8px;
    }
    .carousel-arrow.next {
        right: -8px;
    }

    /* About Section */
    .about-img-frame img {
        max-height: 340px;
        width: 100%;
        object-fit: cover;
    }
    .about-stats-row {
        flex-direction: column;
        gap: 16px;
    }

    /* Banners */
    .mid-banner-sec {
        padding: 60px 0 50px;
        min-height: auto;
    }
    .quote-meeting-banner {
        padding: 60px 20px;
    }
    .quote-meeting-text {
        font-size: 1.35rem;
        line-height: 1.35;
    }

    .certs-top-cta,
    .steps-bottom-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .steps-chart-arrow-img {
        display: none;
    }

    /* Contact & Map */
    .contact-2col {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .map-box-wrap {
        height: 320px;
        min-height: 320px;
    }

    /* Footer Mobile */
    .footer-main {
        padding: 45px 0 0;
    }
    .footer-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0 0 22px 0;
    }
    .footer-col:last-child {
        border-bottom: none;
    }
    .footer-services-subcols {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .footer-bottom-copy {
        text-align: center;
        padding: 18px 0;
    }

    /* Floating WhatsApp */
    .whatsapp-float-btn {
        bottom: 18px;
        right: 18px;
        width: 54px;
        height: 54px;
        font-size: 1.7rem;
    }

    /* Cookie Modal Mobile */
    .cookie-consent-modal {
        left: 14px;
        right: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
        max-width: none;
        padding: 20px 18px;
    }
    .cookie-btns-row {
        flex-direction: column;
        gap: 8px;
    }
    .btn-cookie-accept,
    .btn-cookie-reject,
    .btn-cookie-prefs {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ==========================================================================
   COOKIE CONSENT MODAL (Gerenciar Consentimento)
   ========================================================================== */
.cookie-consent-modal {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 520px;
    width: calc(100% - 48px);
    background: #ffffff;
    color: #1e293b;
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.06);
    z-index: 10000;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
}

.cookie-consent-modal.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-consent-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    text-align: center;
}

.cookie-consent-text {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-cookie-accept {
    flex: 1;
    background: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 11px 16px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-cookie-accept:hover {
    background: #1557b0;
    transform: translateY(-1px);
}

.btn-cookie-reject,
.btn-cookie-prefs {
    flex: 1;
    background: #f8fafc;
    color: #334155;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 11px 12px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-cookie-reject:hover,
.btn-cookie-prefs:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

@media (max-width: 600px) {
    .cookie-consent-modal {
        left: 15px;
        right: 15px;
        bottom: 15px;
        width: auto;
        padding: 20px;
    }
    .cookie-consent-actions {
        flex-direction: column;
        gap: 8px;
    }
    .btn-cookie-accept,
    .btn-cookie-reject,
    .btn-cookie-prefs {
        width: 100%;
    }
}

/* ==========================================================================
   BLOG PORTAL & POST DETAIL PAGES STYLES
   ========================================================================== */
.blog-page-hero {
    background: linear-gradient(135deg, rgba(9, 16, 36, 0.75) 0%, rgba(19, 27, 62, 0.85) 100%),
                var(--bg-desktop, linear-gradient(135deg, #091024 0%, #131b3e 100%)) center center / cover no-repeat;
    padding: 120px 0 60px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 768px) {
    .blog-page-hero {
        background: linear-gradient(135deg, rgba(9, 16, 36, 0.75) 0%, rgba(19, 27, 62, 0.85) 100%),
                    var(--bg-mobile, var(--bg-desktop, linear-gradient(135deg, #091024 0%, #131b3e 100%))) center center / cover no-repeat;
    }
}

.post-header-banner {
    background: linear-gradient(135deg, #091024 0%, #131b3e 100%);
    padding: 120px 0 60px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-hero-tag,
.post-category-badge {
    display: inline-block;
    background: rgba(0, 115, 230, 0.2);
    border: 1px solid rgba(0, 115, 230, 0.4);
    color: #38bdf8;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.blog-hero-title,
.post-main-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 14px;
    max-width: 860px;
}

.blog-hero-desc {
    font-size: 1.05rem;
    color: #94a3b8;
    max-width: 650px;
    line-height: 1.6;
}

.post-breadcrumbs {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 18px;
}

.post-breadcrumbs a {
    color: #38bdf8;
}

.post-meta-bar {
    display: flex;
    gap: 24px;
    font-size: 0.88rem;
    color: #94a3b8;
    margin-top: 16px;
}

.post-meta-bar span i {
    color: var(--color-gold);
    margin-right: 6px;
}

/* Main Layouts */
.blog-main-section,
.post-content-section {
    padding: 60px 0 90px;
    background: #f8fafc;
    color: #1e293b;
}

.blog-layout-grid,
.post-layout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 45px;
    align-items: start;
}

/* Blog Cards */
.blog-card-full {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 35px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
}

.blog-card-full-img {
    display: block;
    height: 320px;
    overflow: hidden;
}

.blog-card-full-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-full:hover .blog-card-full-img img {
    transform: scale(1.04);
}

.blog-card-full-body {
    padding: 30px 32px;
}

.blog-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.blog-date {
    font-size: 0.82rem;
    color: #64748b;
}

.blog-date i {
    color: var(--color-gold);
}

.blog-card-full-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
}

.blog-card-full-title a {
    color: #0f172a;
    transition: color 0.2s ease;
}

.blog-card-full-title a:hover {
    color: #0073e6;
}

.blog-card-full-excerpt {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 20px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0073e6;
    transition: gap 0.2s ease, color 0.2s ease;
}

.btn-read-more:hover {
    color: #005bb5;
    gap: 12px;
}

/* ==========================================================================
   ENHANCED BLOG DESIGN & LAYOUT
   ========================================================================== */

/* Featured Blog Card (Horizontal) */
.blog-card-featured {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.blog-card-featured-img {
    flex: 1.2;
    height: 380px;
    overflow: hidden;
    display: block;
}

.blog-card-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-featured:hover .blog-card-featured-img img {
    transform: scale(1.03);
}

.blog-card-featured-body {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.blog-badge.badge-featured {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #16a34a;
    font-size: 0.72rem;
    padding: 2px 10px;
    margin-bottom: 10px;
}

.blog-card-featured-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 12px 0;
}

.blog-card-featured-title a {
    color: #0f172a;
    transition: color 0.2s ease;
}

.blog-card-featured-title a:hover {
    color: #0073e6;
}

.blog-card-featured-excerpt {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 24px;
}

/* Blog Posts Grid (2 Columns) */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card-grid {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-grid:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.blog-card-grid-img {
    height: 210px;
    overflow: hidden;
    display: block;
}

.blog-card-grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-grid:hover .blog-card-grid-img img {
    transform: scale(1.04);
}

.blog-card-grid-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-grid-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 12px 0;
    flex-grow: 0;
}

.blog-card-grid-title a {
    color: #0f172a;
    transition: color 0.2s ease;
}

.blog-card-grid-title a:hover {
    color: #0073e6;
}

.blog-card-grid-excerpt {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-grid-date {
    font-size: 0.8rem;
    color: #64748b;
}

.blog-grid-date i {
    color: var(--color-gold);
    margin-right: 4px;
}

.btn-read-more-grid {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #0073e6;
    transition: gap 0.2s ease, color 0.2s ease;
    margin-top: auto;
}

.btn-read-more-grid:hover {
    color: #005bb5;
    gap: 10px;
}

/* Sidebar Search Widget */
.sidebar-search-form {
    margin-top: 10px;
}

.search-input-wrap {
    display: flex;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    transition: border-color 0.2s;
}

.search-input-wrap:focus-within {
    border-color: #0073e6;
}

.search-input-wrap input {
    flex: 1;
    border: none;
    padding: 10px 14px;
    font-size: 0.9rem;
    outline: none;
    color: #1e293b;
    background: transparent;
}

.search-input-wrap button {
    border: none;
    background: #0073e6;
    color: #ffffff;
    padding: 0 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-input-wrap button:hover {
    background: #005bb5;
}

/* Sidebar Category States */
.sidebar-cat-list li a.active {
    color: #0073e6;
    font-weight: 700;
}

.sidebar-cat-list li a span {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    margin-left: 4px;
}

/* No Results fallback */
.blog-no-results {
    text-align: center;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px dashed #cbd5e1;
    width: 100%;
}

.blog-no-results i {
    font-size: 3rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

.blog-no-results p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 24px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .blog-card-featured {
        flex-direction: column;
    }
    .blog-card-featured-img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .blog-layout-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }
    .blog-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    .blog-card-featured-body {
        padding: 24px;
    }
    .blog-card-featured-title {
        font-size: 1.45rem;
    }
}

/* Post Detail */
.post-body-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 36px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.post-featured-image-wrap {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.post-featured-image-wrap img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.post-article-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155;
}

.post-article-text .lead-paragraph {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #0f172a;
    font-weight: 500;
    margin-bottom: 24px;
    border-left: 4px solid var(--color-gold);
    padding-left: 18px;
}

.post-article-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 32px 0 16px;
}

.post-article-text p {
    margin-bottom: 18px;
}

.article-check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-check-list li {
    position: relative;
    padding-left: 28px;
    font-size: 1rem;
    line-height: 1.6;
    color: #334155;
}

.article-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 900;
    font-size: 1.1rem;
}

.article-highlight-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 5px solid #10b981;
    border-radius: 8px;
    padding: 22px 26px;
    margin: 30px 0;
}

.article-highlight-box h4 {
    color: #166534;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-highlight-box p {
    color: #15803d;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.post-share-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin: 40px 0 30px;
    font-weight: 600;
    color: #475569;
}

.post-share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    padding: 8px 18px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn:hover {
    opacity: 0.9;
}

.btn-back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: #334155;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-back-to-blog:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* Sidebar Styles */
.sidebar-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 26px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 25px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-gold);
}

.sidebar-cta-box {
    background: linear-gradient(135deg, #091024 0%, #131b3e 100%);
    color: #ffffff;
    border: none;
}

.sidebar-cta-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.sidebar-cta-text {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 18px;
}

.btn-sidebar-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease;
}

.btn-sidebar-whatsapp:hover {
    transform: translateY(-2px);
}

.sidebar-cat-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-cat-list a {
    color: #475569;
    font-size: 0.92rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.sidebar-cat-list a:hover {
    color: #0073e6;
    transform: translateX(4px);
}

.sidebar-post-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.sidebar-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-post-thumb {
    width: 75px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-info {
    display: flex;
    flex-direction: column;
}

.sidebar-post-date {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 4px;
}

.sidebar-post-info h5 {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.3;
}

.sidebar-post-info h5 a {
    color: #0f172a;
    transition: color 0.2s ease;
}

.sidebar-post-info h5 a:hover {
    color: #0073e6;
}

@media (max-width: 991px) {
    .blog-layout-grid,
    .post-layout-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SERVICE DETAILS PAGE STYLES
   ========================================================================== */
.service-cta-banner {
    background: linear-gradient(135deg, #091024 0%, #131b3e 100%);
    border-radius: 12px;
    padding: 35px 38px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-cta-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.service-cta-text p {
    font-size: 0.92rem;
    color: #cbd5e1;
    margin-bottom: 0;
}

.btn-primary-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s ease, background 0.2s ease;
    text-decoration: none;
}

.btn-primary-whatsapp-large:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    color: #ffffff;
}

@media (max-width: 768px) {
    .service-cta-banner {
        flex-direction: column;
        text-align: center;
    }
}
