/* ===== VARIÁVEIS CSS (CSS CUSTOM PROPERTIES) ===== */
:root {
    /* Fontes */
    --font-primary: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Cores Primárias */
    --color-primary: #00E66E;
    --color-primary-dark: #00B356;
    --color-primary-light: #D5F5E3;
    /* Verde clarinho */

    /* Cores Neutras */
    --color-white: #FFFFFF;
    /* Branco puro */
    --color-cream: #FFF8F1;
    /* Creme suave */
    --color-warm-beige: #EDE3D9;
    /* Bege quente */
    --color-black: #272423;
    /* Preto suave */
    --color-black-dark: #121217;
    /* Preto absoluto */

    /* Cores Secundárias */
    --color-secondary: #4DDBAC;
    /* Cinza muito claro - Fundos */
    --color-accent: #D4A373;
    /* Laranja - Destaques e CTAs */
    --color-success: #27ae60;
    /* Verde - Sucesso */
    --color-warning: #f39c12;
    /* Amarelo - Avisos */
    --color-danger: #e74c3c;
    /* Vermelho - Erros */
    /* Escala de Cinzas */
    --color-gray: #EBEBEF;
    --color-gray-50: #f9fafb;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-900: #111827;

    /* Cores específicas do WhatsApp */
    --color-whatsapp-green: #00e676;
    --color-whatsapp-green-light: rgba(37, 211, 102, 0.6);
    --color-whatsapp-red: rgb(255, 0, 0);

    /* Cores de seções */
    --color-section-dark: #2c2c2c;
    --color-section-gray: #666666;
    --color-section-gray-light: #666;
    --color-section-pink: #ff6b9d;

    /* Cores de overlays e transparências */
    --color-overlay-dark: rgba(0, 0, 0, 0.4);
    --color-overlay-light: rgba(255, 255, 255, 0.15);
    --color-overlay-white-light: rgba(255, 255, 255, 0.1);
    --color-overlay-white-medium: rgba(255, 255, 255, 0.2);
    --color-overlay-white-strong: rgba(255, 255, 255, 0.3);
    --color-overlay-white-stronger: rgba(255, 255, 255, 0.6);
    --color-overlay-white-strongest: rgba(255, 255, 255, 0.9);
    --color-overlay-white-backdrop: rgba(255, 255, 255, 0.98);
    --color-overlay-black-light: rgba(0, 0, 0, 0.3);
    --color-overlay-black-medium: rgba(0, 0, 0, 0.08);
    --color-overlay-black-strong: rgba(0, 0, 0, 0.1);
    --color-overlay-warm-beige: rgba(237, 227, 217, 0.3);
    --color-overlay-warm-beige-strong: rgba(237, 227, 217, 0.4);

    /* Cores Semânticas */
    --color-text-primary: var(--color-black);
    /* Texto principal */
    --color-text-secondary: var(--color-gray-600);
    /* Texto secundário */
    --color-text-muted: var(--color-gray-500);
    /* Texto atenuado */
    --color-text-inverse: var(--color-white);
    /* Texto invertido */

    --color-background-primary: var(--color-white);
    /* Fundo principal */
    --color-background-secondary: var(--color-gray-50);
    /* Fundo secundário */
    --color-background-dark: var(--color-gray-900);
    /* Fundo escuro */

    --color-border-light: var(--color-gray-200);
    /* Bordas claras */
    --color-border-medium: var(--color-gray-300);
    /* Bordas médias */
    --color-border-dark: var(--color-gray-400);
    /* Bordas escuras */

    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
    --shadow-2xl: 0 20px 40px rgba(0, 0, 0, 0.25);

    /* Transições */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;

    /* Z-Index */
    --z-base: 1;
    --z-dropdown: 10;
    --z-sticky: 20;
    --z-fixed: 30;
    --z-navbar: 40;
    --z-navbar-mobile: 50;
    --z-navbar-toggler: 60;
    --z-modal-backdrop: 70;
    --z-modal: 80;
    --z-popover: 90;
    --z-tooltip: 100;
    --z-whatsapp: 110;
}


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

body {
    margin: 0;
    padding: 25px;
    background-color: var(--color-cream);
    min-height: 100vh;
    font-family: var(--font-primary);
}

/* Bloquear scroll quando navbar mobile estiver aberto */
body.navbar-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}



/* Bloquear scroll quando navbar mobile estiver aberto - aplicado no breakpoint 1199px */
@media (max-width: 1199px) {
    /* Força o body a não ter scroll quando navbar está aberto */
    body:has(.navbar-collapse.show) {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    /* Força o html também a não ter scroll */
    html:has(.navbar-collapse.show) {
        overflow: hidden !important;
    }
    
    /* Bloquear scroll em todos os elementos quando navbar está aberto */
    .navbar-collapse.show ~ * {
        overflow: hidden !important;
    }
    
    /* Bloquear scroll do body quando navbar está aberto - solução mais robusta */
    body.navbar-scroll-locked {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
    }
}

.text-primary{color: var(--color-primary) !important;}
.btn-b2p {
    background: var(--color-primary);
    color: var(--color-black);
    border-radius: 50px !important;
    -webkit-border-radius: 50px !important;
    -moz-border-radius: 50px !important;
    -ms-border-radius: 50px !important;
    -o-border-radius: 50px !important;
    border: none;
    font-weight: 600;
    font-size: 1rem;
}

.btn-b2p:hover {
    background: var(--color-primary-dark);
    color: var(--color-black);
}

/* Header fixo */
.navbar {
    background-color: transparent !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-navbar);
    height: 70px;
    display: flex;
    align-items: center;
    border-radius: var(--radius-lg);
    margin: 0;
    width: calc(100% - 40px);
    max-width: 1000px;
    transition: var(--transition-normal);
    overflow: visible;
}

/* Box shadow sutil quando o header está com scroll */
.navbar.scrolled {
    background-color: var(--color-black) !important;
    box-shadow: 0 2px 20px var(--color-overlay-black-medium);
}

.navbar.scrolled .logo-book2pay {
    filter: brightness(1) invert(0) !important;
    -webkit-filter: brightness(1) invert(0) !important;
}

/* Container interno do navbar com padding lateral */
.navbar .container {
    padding-left: 40px;
    padding-right: 40px;
    min-width: 0;
    flex-wrap: nowrap;
}


.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--color-text-primary) !important;
}

/* Estilos de logo-text removidos - não utilizados no HTML atual */


.navbar-nav .nav-link {
    color: var(--color-black) !important;
    font-weight: 600;
    margin: 0 25px;
    font-size: 0.9rem;
    transition: var(--transition-normal);
    position: relative;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-transform: uppercase;
    flex-shrink: 0;
    min-width: 0;
    display: inline-block;
    padding: 8px 0 12px 0;
    overflow: visible;
}


.navbar-nav {
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
    height: 100%;
}

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

.navbar-nav .nav-link:hover {
    color: var(--color-gray-700) !important;
    /* transform: translateY(-1px); */
    text-decoration: none;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
    background-color: var(--color-primary);
}

.navbar-nav .nav-link.active {
    color: var(--color-primary) !important;
}

/* Hero Banner */
.banner-section {
    height: 710px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    border-radius: 0;
    -webkit-border-radius: var(--radius-lg);
    -moz-border-radius: var(--radius-lg);
    -ms-border-radius: var(--radius-lg);
    -o-border-radius: var(--radius-lg);
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.banner-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 2;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.banner-slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--color-overlay-dark) 0%, transparent 50%);
    pointer-events: none;
    z-index: 3;
}

.banner-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.6" numOctaves="3" stitchTiles="stitch"/></filter></defs><rect width="100" height="100" filter="url(%23noise)" opacity="0.08"/></svg>');
    opacity: 0.4;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 4;
}


/* Global Carousel Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    z-index: var(--z-dropdown);
    padding: 12px 16px;
    background: var(--color-overlay-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid var(--color-overlay-white-medium);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--color-overlay-white-strong);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-dot:hover {
    border-color: var(--color-overlay-white-strongest);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--color-white);
    border-color: var(--color-white);
    box-shadow: 0 0 10px var(--color-overlay-white-medium);
}

.carousel-dot.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid var(--color-overlay-white-strong);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Global Carousel Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: var(--z-dropdown);
    pointer-events: none;
}


/* Global Carousel Navigation Buttons */
.carousel-nav-prev,
.carousel-nav-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-overlay-white-strong);
    border: 2px solid var(--color-overlay-white-strong);
    color: var(--color-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: all;
}

.carousel-nav-prev:hover,
.carousel-nav-next:hover {
    background: var(--color-overlay-white-strong);
    border-color: var(--color-overlay-white-stronger);
    transform: scale(1.1);
}

/* Carousel Navigation Button Sizes */
.carousel-nav--small .carousel-nav-prev,
.carousel-nav--small .carousel-nav-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    padding: 0 10px;
}

.carousel-nav--large .carousel-nav-prev,
.carousel-nav--large .carousel-nav-next {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
}


.banner-section .carousel-nav {
    padding: 0 20px;
}




/* ==========================================================================
Whatsapp
========================================================================== */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.wa_popup .whatsapp-main {
    display: inline-block;
    position: fixed;
    bottom: 0px;
    z-index: var(--z-whatsapp);
    left: 2.5rem;
    right: auto;
    display: none;
}

@media (max-width: 576px) {
    .wa_popup .whatsapp-main {
        bottom: 1rem;
    }
}

.wa_popup .whatsapp-popup-button {
    height: 64px;
    box-shadow: rgb(0 0 0 / 15%) 0px 3px 12px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    position: relative;
    outline: transparent;
    background-color: var(--color-whatsapp-green);
    margin-bottom: 40px;
    margin-right: 30px;
    width: 64px;
    z-index: 2;
}

@media (max-width: 768px) {
    .wa_popup .whatsapp-popup-button {
        margin-bottom: 24px;
    }
}



.wa_popup .whatsapp-popup-button::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: var(--color-whatsapp-green-light);
    animation: 2s infinite pulse;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.whatsapp-button-main {
    font-size: 30px;
    position: relative;
    z-index: 3;
}

.whatsapp-button-main i {
    color: var(--color-white);
}

.wa_popup .whatsapp-notify {
    width: 10px;
    height: 10px;
    background-color: var(--color-whatsapp-red);
    display: block;
    position: absolute;
    z-index: 3;
    border-radius: 50%;
    right: 4px;
    top: 4px;
}


/* ===== PRELOAD ===== */
.preload {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-navbar-mobile);
    transition: opacity 0.5s ease;
}

.preload-spinner {
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 991px) {
    .navbar {  
        max-width: 700px;
    }
    .navbar-nav {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        justify-content: center;
        align-items: center;
        min-height: calc(100vh - 70px);
        padding: 120px 0 40px 0;
    }
    
    /* Estilos para os botões de ação no mobile */
    .navbar-actions-mobile {
        margin-top: 25px;
        padding: 0 20px;
        gap: 12px;
    }

    .navbar-actions-mobile .btn {
        width: 100%;
        justify-content: center;
        margin: 0;
        padding: 14px 20px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 10px;
        transition: var(--transition-normal);
    }

    .navbar-actions-mobile .btn-outline-light {
        background: transparent !important;
        color: var(--color-white) !important;
        border: 1px solid var(--color-overlay-white-medium);
    }

    .navbar-actions-mobile .btn-outline-light:hover {
        background: var(--color-overlay-white-light);
        color: var(--color-white) !important;
        border-color: var(--color-white) !important;
    }

    .navbar-actions-mobile .btn-light {
        background: var(--color-primary) !important;
        color: var(--color-black) !important;
        border: 1px solid var(--color-primary) !important;
    }

    .navbar-actions-mobile .btn-light:hover {
        transform: translateY(-1px);
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--color-black) !important;
        border: none !important;
        border-radius: 0;
        box-shadow: none !important;
        outline: none !important;
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: var(--z-navbar-mobile);
        padding: 0;
        overflow-y: auto;
        overflow-x: hidden;
        transform: translateX(-100%);
        margin: 0 !important;
        max-width: none !important;
        min-width: 100vw !important;
        min-height: 100vh !important;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-overflow-scrolling: touch;
    }

    .navbar-collapse.show {
        left: 0;
        transform: translateX(0);
        box-shadow: none !important;
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        width: 100vw !important;
        height: 100vh !important;
        margin: 0 !important;
        max-width: none !important;
        min-width: 100vw !important;
        min-height: 100vh !important;
        position: fixed !important;
        top: 0 !important;
        z-index: var(--z-navbar-mobile) !important;
        visibility: visible;
    }

    .navbar-collapse:not(.show) {
        left: -100%;
        transform: translateX(-100%);
        visibility: hidden;
        position: fixed !important;
        top: 0 !important;
        z-index: var(--z-navbar-mobile) !important;
    }

    .navbar-collapse::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--color-black) !important;
        z-index: -1;
        opacity: 1;
        transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        pointer-events: none;
    }

    .navbar-collapse.show::before {
        opacity: 1;
        pointer-events: none;
    }

    .navbar-collapse.show::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: transparent;
        z-index: var(--z-navbar-mobile);
        pointer-events: none;
    }

    .navbar-toggler {
        border: none;
        padding: 8px;
        background: transparent;
        position: relative;
        z-index: var(--z-navbar-toggler);
        display: block !important;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    .navbar-toggler .navbar-toggler-icon {
        background-image: none;
        position: relative;
        width: 24px;
        height: 2px;
        background: var(--color-primary);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .navbar-toggler .navbar-toggler-icon::before,
    .navbar-toggler .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background: var(--color-primary);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .navbar-toggler .navbar-toggler-icon::before {
        top: -8px;
    }

    .navbar-toggler .navbar-toggler-icon::after {
        bottom: -8px;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background: transparent;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg);
        top: 0;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    .navbar-collapse.show ~ .navbar-toggler,
    .navbar-toggler[aria-expanded="true"] {
        z-index: var(--z-navbar-toggler) !important;
        position: relative !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0;
        opacity: 1;
        transform: translateX(0);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        text-align: center;
        justify-content: center;
        align-items: center;
        min-height: auto;
        padding: 0;
    }

    .navbar-collapse.show .navbar-nav .nav-item {
        animation: slideInItem 0.4s ease forwards;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(4) {
        animation-delay: 0.4s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(5) {
        animation-delay: 0.5s;
    }

    @keyframes slideInItem {
        from {
            opacity: 0;
            transform: translateX(20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .navbar-nav .nav-item {
        height: auto;
        margin: 0;
        border-bottom: none;
        text-align: center;
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    /* Estilo específico para o item que contém os botões */
    .navbar-nav .nav-item.d-lg-none {
        margin-top: 35px;
        width: 100%;
        max-width: 320px;
    }

    .navbar-nav .nav-link {
        color: var(--color-text-primary) !important;
        font-size: 1.8rem;
        font-weight: 600;
        padding: 20px 30px;
        margin: 0;
        transition: var(--transition-normal);
        border-radius: 0;
        position: relative;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
        display: block;
        border: none;
        box-shadow: none;
    }

    .navbar-nav .nav-link:hover {
        color: var(--color-primary) !important;
        background: transparent;
        transform: none;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }
}


@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .navbar {
        top: 15px;
        width: calc(100% - 50px);
        height: 60px;
    }


    .banner-section {
        margin-top: 0;
        height: 600px;
    }

    img {
        image-rendering: auto;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .banner-section {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center !important;
    }

    * {
        animation-duration: 0.2s !important;
        animation-delay: 0s !important;
        transition-duration: 0.2s !important;
    }

    /* Exceção para animações do divider - manter durações originais */
    .divider-icon {
        animation-duration: 3s !important;
    }
    
    .divider-icon::before {
        animation-duration: 2s !important;
    }
    
    .divider-icon i {
        animation-duration: 4s !important;
    }


    .navbar {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background-color: var(--color-overlay-white-backdrop);
    }


    .glide__slide {
        transition: opacity 0.3s ease !important;
    }

    .banner-section::after {
        display: none;
    }
}

@media (max-width: 1200px) {

    .navbar-overlay .nav-link-overlay i {
        display: none !important;
    }

    .navbar-overlay .nav-link-overlay {
        padding: 12px 10px !important;
    }
}
@media (min-width: 1200px) {
    .navbar {
        max-width: 1200px;
    }
    
   
}

/* Prefer reduced motion para acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== HEADER SOBREPOSTO ===== */
.navbar-container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-navbar);
    width: 90%;
    max-width: 1200px;
}

.navbar-overlay {
    background: var(--color-overlay-black-light);
    backdrop-filter: none;
    border-radius: 50px;
    padding: 15px 30px;
    transition: all 0.3s ease;
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
}

.navbar-overlay .navbar-brand {
    margin-right: 0;
    margin-left: 0;
}

.navbar-overlay .logo-book2pay {
    height: 50px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.navbar-overlay .nav-link-overlay {
    color: var(--color-white)!important;
    font-weight: 500;
    padding: 12px 20px !important;
    border-radius: 25px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    margin: 0 3px;
    font-size: 0.9rem;
}
.header-int{
    background-color: var(--color-black) !important;
    box-shadow: 0 2px 20px var(--color-overlay-black-medium);
    max-width: 900px;
}

.header-int .container {
    max-width: 900px !important;
}

/* .header-int #navbarNav>ul>li:nth-child(n)>a {
    color: var(--color-black) !important;
}

.header-int.scrolled #navbarNav>ul>li:nth-child(n)>a {
    color: var(--color-white) !important;
}

.header-int.scrolled #navbarNav>ul>li:nth-child(n)>a:hover {
    color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    background: transparent !important;
}
.header-int #navbarNav>div>a{
    color: var(--color-black) !important;
    border-color: var(--color-black) !important;
}
.header-int.scrolled #navbarNav>div>a.btn-outline-light {
    color: var(--color-white) !important;
    border-color: var(--color-white) !important;
} */

.navbar-overlay .nav-link-overlay:hover {
    color: var(--color-white)!important ;
    background: var(--color-overlay-white-light);
    border-color: var(--color-overlay-white-medium);
    backdrop-filter: blur(10px);
}

.navbar-overlay .nav-link-overlay.active {
    background: var(--color-white) !important;
    color: var(--color-black) !important;
    border-color: var(--color-white);
    font-weight: 600;
    box-shadow: 0 2px 10px var(--color-overlay-black-strong);
}

.navbar-overlay .nav-link-overlay.text-green {
    color: var(--color-primary) !important;
    font-weight: 700;
}

.navbar-actions {
    gap: 15px;
}

.navbar-overlay .btn-outline-light {
    background: transparent !important;
    color: var(--color-white) !important;
    border: 1px solid var(--color-overlay-white-medium);
    padding: 8px 16px;
    border-radius: 40px;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    font-size: 0.85rem;
    white-space: nowrap;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.navbar-overlay .btn-outline-light:hover {
    background: var(--color-overlay-white-light);
    color: var(--color-white) !important;
    border-color: var(--color-white) !important;
}

.navbar-overlay .btn-light {
    background: var(--color-white) !important;
    color: var(--color-black) !important;
    border: 1px solid var(--color-white) !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    font-size: 0.85rem;
    white-space: nowrap;
}

.navbar-overlay .btn-light:hover {
    transform: translateY(-1px);
}


.navbar-overlay .navbar-toggler {
    padding: 8px 12px;
}

.navbar-overlay .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsividade do header sobreposto */
@media (max-width: 991.98px) {
    .navbar-container {
        width: 95%;
        top: 15px;
    }
    
    .navbar-overlay {
        background: var(--color-black) !important;
        margin: 20px 0;
        padding: 0 20px;
        border-radius: 40px;
        -webkit-border-radius: 40px;
        -moz-border-radius: 40px;
        -ms-border-radius: 40px;
        -o-border-radius: 40px;
}
    
    .navbar-overlay .logo-book2pay {
        height: 40px;
    }
    
    .navbar-overlay .navbar-collapse {
        background: var(--color-black);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        margin-top: 15px;
        padding: 20px;
    }
    
    .navbar-overlay .nav-link-overlay {
        margin: 5px 0;
        justify-content: center;
        padding: 10px 15px !important;
        font-size: 1.2rem;
    }
    
    .navbar-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 15px;
    }
    
    .navbar-overlay .btn-outline-light,
    .navbar-overlay .btn-light {
        width: 100%;
        justify-content: center;
        margin: 0;
    }
    .navbar-brand {
        z-index: var(--z-navbar-toggler);
    }
    .navbar-overlay .logo-book2pay {
        filter: brightness(1) invert(0) !important;
        -webkit-filter: brightness(1) invert(0) !important;
    }
    .header-int #navbarNav>ul>li:nth-child(n)>a {
        color: var(--color-white) !important;
    }

}



/* ===== WHAT WE SERVE SECTION ===== */
.section-what-we-serve {
    position: relative;
    overflow: hidden;
}

.section-what-we-serve .service-cards-container {
    padding-left: 1rem;
}

.section-what-we-serve .badge-text {
    color: var(--color-primary);
    padding: 0.5rem 0;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-what-we-serve .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-section-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-what-we-serve .service-card {
    background: transparent;
    padding: 1rem 0.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-what-we-serve .service-icon {
    width: 80px;
    height: 90px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 10px;
}

.section-what-we-serve .service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.section-what-we-serve .service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-section-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-what-we-serve .service-description {
    font-size: 0.95rem;
    color: var(--color-section-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== SERVICE ICONS ===== */

/* Travel Icon */
.section-what-we-serve .icon-travel {
    position: relative;
    width: 100%;
    height: 100%;
}

.section-what-we-serve .suitcase {
    position: absolute;
    left: 10px;
    top: 20px;
    width: 25px;
    height: 18px;
    background: #FFD700;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-what-we-serve .suitcase::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 2px;
    width: 21px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
}

.section-what-we-serve .globe-pin {
    position: absolute;
    right: 5px;
    top: 10px;
    width: 40px;
    height: 40px;
}

.section-what-we-serve .globe {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #87CEEB;
    border-radius: 50%;
    top: 5px;
    left: 5px;
}

.section-what-we-serve .globe::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #4682B4;
    top: 50%;
    left: 0;
}

.section-what-we-serve .globe::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: #4682B4;
    top: 0;
    left: 50%;
}

.section-what-we-serve .pin {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #DC143C;
    border-radius: 50% 50% 50% 0;
    top: 15px;
    right: 8px;
    transform: rotate(-45deg);
}

.section-what-we-serve .route-line {
    position: absolute;
    width: 20px;
    height: 2px;
    background: #DC143C;
    top: 18px;
    right: 15px;
    transform: rotate(15deg);
    border-style: dashed;
}

.section-what-we-serve .camera {
    position: absolute;
    bottom: 5px;
    right: 15px;
    width: 12px;
    height: 8px;
    background: #000;
    border-radius: 2px;
}

.section-what-we-serve .camera::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 2px;
    width: 8px;
    height: 4px;
    background: #000;
    border-radius: 2px;
}

/* Credit Card Icon */
.section-what-we-serve .icon-card {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-what-we-serve .credit-card {
    width: 50px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 6px;
    position: relative;
    transform: rotate(15deg);
    box-shadow: 0 4px 8px rgba(0, 230, 110, 0.3);
}

.section-what-we-serve .chip {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 8px;
    height: 6px;
    background: #FFD700;
    border-radius: 1px;
}

.section-what-we-serve .card-number {
    position: absolute;
    bottom: 4px;
    left: 4px;
    right: 4px;
    font-size: 6px;
    color: var(--color-white);
    font-family: monospace;
    letter-spacing: 0.5px;
}

/* Innovation Icon - Light Bulb */
.section-what-we-serve .icon-innovation {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-what-we-serve .bulb {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 230, 110, 0.3);
    z-index: 2;
}

.section-what-we-serve .bulb::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.section-what-we-serve .bulb::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 6px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 0 0 3px 3px;
    box-shadow: 0 2px 4px rgba(0, 230, 110, 0.2);
}

.section-what-we-serve .light-rays {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.section-what-we-serve .ray {
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 230, 110, 0.4) 0%, rgba(0, 179, 86, 0.2) 100%);
    border-radius: 50%;
    opacity: 0.6;
}

.section-what-we-serve .ray-1 {
    width: 8px;
    height: 8px;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.section-what-we-serve .ray-2 {
    width: 6px;
    height: 6px;
    top: 15px;
    left: 10px;
}

.section-what-we-serve .ray-3 {
    width: 6px;
    height: 6px;
    top: 15px;
    right: 10px;
}

.section-what-we-serve .ray-4 {
    width: 10px;
    height: 10px;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
}

/* Technology Icon - Chip/Processor */
.section-what-we-serve .icon-tech {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-what-we-serve .chip-tech {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 230, 110, 0.3);
    transform: rotate(-5deg);
}

.section-what-we-serve .chip-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-what-we-serve .chip-core::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.section-what-we-serve .chip-pin {
    position: absolute;
    background: var(--color-primary-dark);
    border-radius: 2px;
}

.section-what-we-serve .chip-pin-1 {
    width: 3px;
    height: 6px;
    top: 4px;
    left: 6px;
}

.section-what-we-serve .chip-pin-2 {
    width: 3px;
    height: 6px;
    top: 4px;
    right: 6px;
}

.section-what-we-serve .chip-pin-3 {
    width: 6px;
    height: 3px;
    top: 6px;
    left: 4px;
}

.section-what-we-serve .chip-pin-4 {
    width: 6px;
    height: 3px;
    top: 6px;
    right: 4px;
}

.section-what-we-serve .chip-pin-5 {
    width: 3px;
    height: 6px;
    bottom: 4px;
    left: 6px;
}

.section-what-we-serve .chip-pin-6 {
    width: 3px;
    height: 6px;
    bottom: 4px;
    right: 6px;
}

.section-what-we-serve .chip-pin-7 {
    width: 6px;
    height: 3px;
    bottom: 6px;
    left: 4px;
}

.section-what-we-serve .chip-pin-8 {
    width: 6px;
    height: 3px;
    bottom: 6px;
    right: 4px;
}

/* Responsive Design for What We Serve */
@media (max-width: 992px) {
    .section-what-we-serve .what-we-serve-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-what-we-serve .service-cards-container {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .section-what-we-serve .service-card {
        padding: 0.75rem 0.25rem;
        margin-bottom: 1rem;
    }
    
    .section-what-we-serve .service-icon {
        width: 60px;
        height: 70px;
        margin-bottom: 1rem;
        padding-top: 8px;
    }
    
    .section-what-we-serve .service-title {
        font-size: 1.1rem;
    }
    
    .section-what-we-serve .service-description {
        font-size: 0.9rem;
    }
    
    .section-what-we-serve .credit-card {
        width: 40px;
        height: 26px;
    }
    
    .section-what-we-serve .bulb {
        width: 26px;
        height: 26px;
    }
    
    .section-what-we-serve .bulb::before {
        width: 10px;
        height: 6px;
        top: 6px;
    }
    
    .section-what-we-serve .bulb::after {
        width: 14px;
        height: 5px;
    }
    
    .section-what-we-serve .ray-1 {
        width: 6px;
        height: 6px;
    }
    
    .section-what-we-serve .ray-2,
    .section-what-we-serve .ray-3 {
        width: 5px;
        height: 5px;
    }
    
    .section-what-we-serve .ray-4 {
        width: 8px;
        height: 8px;
    }
    
    .section-what-we-serve .chip-tech {
        width: 32px;
        height: 32px;
    }
    
    .section-what-we-serve .chip-core {
        width: 20px;
        height: 20px;
    }
    
    .section-what-we-serve .chip-core::before {
        width: 10px;
        height: 10px;
    }
    
    .section-what-we-serve .chip-pin-1,
    .section-what-we-serve .chip-pin-2,
    .section-what-we-serve .chip-pin-5,
    .section-what-we-serve .chip-pin-6 {
        width: 2.5px;
        height: 5px;
    }
    
    .section-what-we-serve .chip-pin-3,
    .section-what-we-serve .chip-pin-4,
    .section-what-we-serve .chip-pin-7,
    .section-what-we-serve .chip-pin-8 {
        width: 5px;
        height: 2.5px;
    }
}

@media (max-width: 576px) {
    .section-what-we-serve .service-card {
        padding: 0.5rem 0.25rem;
    }
    
    .section-what-we-serve .service-icon {
        width: 50px;
        height: 60px;
        padding-top: 6px;
    }
    
    .section-what-we-serve .service-title {
        font-size: 1rem;
    }
    
    .section-what-we-serve .service-description {
        font-size: 0.85rem;
    }
    
    .section-what-we-serve .bulb {
        width: 22px;
        height: 22px;
    }
    
    .section-what-we-serve .bulb::before {
        width: 8px;
        height: 5px;
        top: 5px;
    }
    
    .section-what-we-serve .bulb::after {
        width: 12px;
        height: 4px;
    }
    
    .section-what-we-serve .ray-1 {
        width: 5px;
        height: 5px;
    }
    
    .section-what-we-serve .ray-2,
    .section-what-we-serve .ray-3 {
        width: 4px;
        height: 4px;
    }
    
    .section-what-we-serve .ray-4 {
        width: 6px;
        height: 6px;
    }
    
    .section-what-we-serve .chip-tech {
        width: 28px;
        height: 28px;
    }
    
    .section-what-we-serve .chip-core {
        width: 18px;
        height: 18px;
    }
    
    .section-what-we-serve .chip-core::before {
        width: 9px;
        height: 9px;
    }
    
    .section-what-we-serve .chip-pin-1,
    .section-what-we-serve .chip-pin-2,
    .section-what-we-serve .chip-pin-5,
    .section-what-we-serve .chip-pin-6 {
        width: 2px;
        height: 4px;
    }
    
    .section-what-we-serve .chip-pin-3,
    .section-what-we-serve .chip-pin-4,
    .section-what-we-serve .chip-pin-7,
    .section-what-we-serve .chip-pin-8 {
        width: 4px;
        height: 2px;
    }
}

/* ===== DIVIDER SECTION ===== */
.divider-section {
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    background: var(--color-cream);
}

.divider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dee2e6" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="20" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}


.divider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
    position: relative;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    border-radius: 2px;
}

.divider-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    position: relative;
    animation: dividerFloat 3s ease-in-out infinite;
}

.divider-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--color-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: dividerPulse 2s ease-in-out infinite;
}

.divider-icon i {
    font-size: 1.5rem;
    color: black;
    animation: dividerRotate 4s linear infinite;
}


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

@keyframes dividerPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

@keyframes dividerRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design for Divider */
@media (max-width: 768px) {
    .divider-section {
        padding: 40px 0;
    }
    
    .divider-content {
        gap: 1.5rem;
    }
    
    .divider-icon {
        width: 50px;
        height: 50px;
    }
    
    .divider-icon i {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .divider-section {
        padding: 30px 0;
    }
    
    .divider-content {
        gap: 1rem;
    }
    
    .divider-icon {
        width: 40px;
        height: 40px;
    }
    
    .divider-icon i {
        font-size: 1rem;
    }
}


/* ===== BENEFITS SECTION ===== */
.section-benefits {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.section-benefits .section-badge {
    margin-bottom: 1rem;
}

.section-benefits .badge-text {
    color: var(--color-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--color-primary);
    display: inline-block;
}

.section-benefits .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-section-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-benefits .section-description {
    font-size: 1.1rem;
    color: var(--color-section-gray);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.section-benefits .benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-benefits .benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-primary-light);
    border: 2px solid var(--color-primary);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 230, 110, 0.1);
    transition: all 0.3s ease;
}

.section-benefits .benefit-card:hover {
    transform: translateX(8px);
    background: #E0F8EE;
    box-shadow: 0 8px 30px rgba(0, 230, 110, 0.25);
}

.section-benefits .benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.section-benefits .benefit-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--color-white);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.section-benefits .benefit-icon i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.section-benefits .benefit-content {
    flex: 1;
}

.section-benefits .benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-section-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.section-benefits .benefit-description {
    font-size: 0.95rem;
    color: var(--color-black-dark);
    line-height: 1.5;
    margin: 0;
}

.section-benefits .benefits-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-benefits .image-card {
    position: relative;
    width: 350px;
    height: 400px;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-8deg);
    transition: all 0.3s ease;
    padding: 30px 30px 0 0;
}

.section-benefits .image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-primary);
    border-radius: 20px;
    z-index: -1;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.section-benefits .image-card:hover {
    transform: rotate(-5deg) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.section-benefits .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    display: block;
}

.section-benefits .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1.5rem;
    border-radius: 20px;
}

.section-benefits .location-tag {
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.section-benefits .location-tag i {
    font-size: 0.9rem;
}

/* Floating Shapes */
.section-benefits .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

.section-benefits .shape-1 {
    width: 120px;
    height: 120px;
    background: var(--color-primary);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.section-benefits .shape-2 {
    width: 80px;
    height: 80px;
    background: var(--color-white);
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}


.section-benefits .shape-4 {
    width: 40px;
    height: 40px;
    background: var(--color-black);
    bottom: 40%;
    left: 5%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Responsive Design for Benefits */
@media (max-width: 992px) {
    .section-benefits .section-title {
        font-size: 2.5rem;
    }
    
    .section-benefits .benefits-visual {
        height: 400px;
    }
    
    .section-benefits .image-card {
        width: 300px;
        height: 350px;
        padding: 25px 25px 0 0;
    }
}

@media (max-width: 768px) {
    .section-benefits {
        padding: 80px 0;
    }
    
    .section-benefits .section-title {
        font-size: 2.25rem;
    }
    
    .section-benefits .section-description {
        font-size: 1rem;
    }
    
    .section-benefits .benefit-cards {
        gap: 1.25rem;
    }
    
    .section-benefits .benefit-card {
        padding: 1.25rem;
    }
    
    .section-benefits .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .section-benefits .benefit-icon i {
        font-size: 1.25rem;
    }
    
    .section-benefits .benefit-title {
        font-size: 1.1rem;
    }
    
    .section-benefits .benefit-description {
        font-size: 0.9rem;
    }
    
    .section-benefits .benefits-visual {
        height: 350px;
        margin-bottom: 2rem;
    }
    
    .section-benefits .image-card {
        width: 280px;
        height: 320px;
        padding: 20px 20px 0 0;
    }
    
    .section-benefits .shape-1 {
        width: 80px;
        height: 80px;
    }
    
    .section-benefits .shape-2 {
        width: 60px;
        height: 60px;
    }
    
    .section-benefits .shape-4 {
        width: 30px;
        height: 30px;
    }

    .section-benefits .floating-shape {
        animation: none;
        -webkit-animation: none;
}
}

@media (max-width: 576px) {
    .section-benefits {
        padding: 60px 0;
    }
    
    .section-benefits .section-title {
        font-size: 2rem;
    }
    
    .section-benefits .benefit-card {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .section-benefits .benefit-icon {
        width: 45px;
        height: 45px;
    }
    
    .section-benefits .benefit-icon i {
        font-size: 1.1rem;
    }
    
    .section-benefits .benefits-visual {
        height: 300px;
    }
    
    .section-benefits .image-card {
        width: 250px;
        height: 280px;
        padding: 15px 15px 0 0;
    }
}

/* ===== FEATURES CARDS SECTION ===== */
.section-features-cards {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

.section-features-cards .section-badge {
    margin-bottom: 1rem;
}

.section-features-cards .badge-text {
    background: var(--color-primary);
    color: var(--color-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.section-features-cards .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-section-dark);
    line-height: 1.1;
    margin-bottom: 3rem;
}

.section-features-cards .feature-card {
    background: var(--color-white);
    border: 2px solid var(--color-primary-light);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 230, 110, 0.08);
    position: relative;
    overflow: hidden;
}

.section-features-cards .feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.section-features-cards .feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.section-features-cards .feature-card:hover .feature-img {
    transform: scale(1.1);
}

.section-features-cards .feature-content {
    padding: 2rem 1.5rem;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-features-cards .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.section-features-cards .feature-card:hover::before {
    transform: scaleX(1);
}

.section-features-cards .feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 12px 40px rgba(0, 230, 110, 0.2);
    background: var(--color-primary-light);
}

.section-features-cards .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -35px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 230, 110, 0.3);
}

.section-features-cards .feature-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    transition: all 0.3s ease;
}

.section-features-cards .feature-card:hover .feature-icon::before {
    opacity: 0.4;
    transform: scale(1.2);
}

.section-features-cards .feature-icon i {
    font-size: 1.75rem;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.section-features-cards .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--color-white);
}

.section-features-cards .feature-card:hover .feature-icon i {
    color: var(--color-primary);
    transform: scale(1.1);
}

.section-features-cards .feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-section-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-features-cards .feature-description {
    font-size: 1rem;
    color: var(--color-section-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design for Features Cards */
@media (max-width: 992px) {
    .section-features-cards .section-title {
        font-size: 2.5rem;
    }
    
    .section-features-cards .feature-image {
        height: 180px;
    }
    
    .section-features-cards .feature-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-features-cards {
        padding: 80px 0;
    }
    
    .section-features-cards .section-title {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }
    
    .section-features-cards .feature-image {
        height: 160px;
    }
    
    .section-features-cards .feature-content {
        padding: 1.75rem 1.5rem;
    }
    
    .section-features-cards .feature-icon {
        width: 60px;
        height: 60px;
        margin-top: -30px;
        margin-bottom: 1.25rem;
    }
    
    .section-features-cards .feature-icon i {
        font-size: 1.5rem;
    }
    
    .section-features-cards .feature-title {
        font-size: 1.25rem;
    }
    
    .section-features-cards .feature-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .section-features-cards {
        padding: 60px 0;
    }
    
    .section-features-cards .section-title {
        font-size: 2rem;
    }
    
    .section-features-cards .feature-image {
        height: 150px;
    }
    
    .section-features-cards .feature-content {
        padding: 1.5rem 1.25rem;
    }
    
    .section-features-cards .feature-icon {
        width: 55px;
        height: 55px;
        margin-top: -27.5px;
        margin-bottom: 1rem;
    }
    
    .section-features-cards .feature-icon i {
        font-size: 1.35rem;
    }
    
    .section-features-cards .feature-title {
        font-size: 1.1rem;
    }
    
    .section-features-cards .feature-description {
        font-size: 0.9rem;
    }
}

/* ===== CTA FEATURES SECTION ===== */
.section-cta-features {
    position: relative;
    overflow: hidden;
    background: var(--color-primary);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.section-cta-features .cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-cta-features .cta-description {
    font-size: 1.25rem;
    color: var(--color-black-dark);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.section-cta-features .cta-button {
    background: var(--color-black);
    color: var(--color-primary);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section-cta-features .cta-button:hover {
    background: var(--color-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    color: var(--color-primary);
    opacity: 0.9;
}

.section-cta-features .cta-button i {
    font-size: 1.25rem;
    color: var(--color-primary);
}

/* Responsive Design for CTA Features */
@media (max-width: 768px) {
    .section-cta-features {
        padding: 60px 0;
    }
    
    .section-cta-features .cta-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .section-cta-features .cta-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .section-cta-features .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-cta-features {
        padding: 50px 0;
    }
    
    .section-cta-features .cta-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .section-cta-features .cta-description {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    
    .section-cta-features .cta-button {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ===== WHY CHOOSE BOOK2PAY SECTION ===== */
.section-why-choose {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Left Column - Text Content */
.section-why-choose .why-choose-content {
    padding-right: 2rem;
}

.section-why-choose .section-badge {
    margin-bottom: 1rem;
}

.section-why-choose .badge-text {
    background: var(--color-primary);
    color: var(--color-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-why-choose .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-section-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-why-choose .section-description {
    font-size: 1.125rem;
    color: var(--color-section-gray);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Statistics */
.section-why-choose .stats-container {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.section-why-choose .stat-item {
    text-align: left;
    flex: 1;
    min-width: 0;
}

.section-why-choose .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.section-why-choose .stat-label {
    font-size: 1rem;
    color: var(--color-section-dark);
    font-weight: 500;
    line-height: 1.2;
}

/* Right Column - Visual Elements */
.section-why-choose .why-choose-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-why-choose .character-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-why-choose .character-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -50%);
    z-index: var(--z-dropdown);
}

.section-why-choose .character-img {
    width: 250px;
    height: 350px;
    object-fit: cover;
    position: relative;
    z-index: var(--z-sticky);
}


/* Globe Background */
.section-why-choose .globe-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-20%, -50%);
    z-index: var(--z-base);
}

.section-why-choose .globe-circle {
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    border-radius: 50%;
    position: relative;
    background-image: url('../assets/images/globe.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Flight Paths */
.section-why-choose .flight-paths {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: calc(var(--z-base) + 1);
}

.section-why-choose .flight-path {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
    border-radius: 1px;
    animation: flightPath 3s ease-in-out infinite;
}

.section-why-choose .path-1 {
    top: 15%;
    left: 30%;
    width: 50%;
    transform: rotate(-20deg);
    animation-delay: 0s;
}

.section-why-choose .path-2 {
    top: 35%;
    left: 25%;
    width: 60%;
    transform: rotate(15deg);
    animation-delay: 1s;
}

.section-why-choose .path-3 {
    top: 55%;
    left: 35%;
    width: 40%;
    transform: rotate(-10deg);
    animation-delay: 2s;
}

@keyframes flightPath {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Airplanes */
.section-why-choose .airplane {
    position: absolute;
    color: var(--color-black);
    font-size: 1.5rem;
    z-index: calc(var(--z-sticky) + 1);
    animation: fly 4s ease-in-out infinite;
}

.section-why-choose .airplane-1 {
    top: 20%;
    left: 35%;
    animation-delay: 0s;
}

.section-why-choose .airplane-2 {
    top: 40%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes fly {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(20px) rotate(5deg); }
    75% { transform: translateX(-10px) rotate(-3deg); }
}

/* Location Pins */
.section-why-choose .location-pin {
    position: absolute;
    color: var(--color-black);
    font-size: 1.25rem;
    z-index: calc(var(--z-sticky) + 1);
    animation: bounce 2s ease-in-out infinite;
}

.section-why-choose .pin-1 {
    top: 45%;
    right: 10%;
    animation-delay: 1.5s;
}

.section-why-choose .pin-2 {
    top: 65%;
    left: 60%;
    animation-delay: 2.5s;
}

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


/* Badges */
.section-why-choose .badge {
    position: absolute;
    background: var(--color-white);
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-section-dark);
    z-index: calc(var(--z-sticky) + 1);
    animation: badgeFloat 4s ease-in-out infinite;
}

.section-why-choose .badge i {
    color: var(--color-primary);
    font-size: 1rem;
}

.section-why-choose .badge-best-fun {
    bottom: 30%;
    right: 10%;
    font-size: 0.875rem;
    animation-delay: 0s;
}

.section-why-choose .badge-customers {
    top: 15%;
    right: 5%;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    animation-delay: 1s;
}

.section-why-choose .badge-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-section-dark);
    line-height: 1;
}

.section-why-choose .badge-label {
    font-size: 0.75rem;
    color: var(--color-section-gray-light);
    margin-top: 0.25rem;
}

.section-why-choose .badge-adventures {
    bottom: 10%;
    right: 30%;
    font-size: 0.875rem;
    animation-delay: 2s;
}

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

/* Map Outline */
.section-why-choose .map-outline {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 120px;
    z-index: var(--z-base);
    opacity: 0.3;
}

.section-why-choose .map-svg {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-why-choose .stats-container {
        gap: 2.5rem;
    }
    
    .section-why-choose .stat-item {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 992px) {
    .section-why-choose .section-title {
        font-size: 2.5rem;
    }
    
    .section-why-choose .stats-container {
        gap: 2rem;
        justify-content: space-between;
    }
    
    .section-why-choose .stat-item {
        flex: 1;
        min-width: 100px;
        text-align: center;
    }
    
    .section-why-choose .stat-number {
        font-size: 2.5rem;
    }
    
    .section-why-choose .why-choose-visual {
        height: 400px;
        margin-top: 2rem;
    }
    
    .section-why-choose .character-img {
        width: 100%;
        height: auto;
    }
    
    .section-why-choose .globe-circle {
        width: 220px;
        height: 220px;
    }
    
    .section-why-choose .globe-circle::before {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .section-why-choose .section-title {
        font-size: 2rem;
    }
    
    .section-why-choose .stats-container {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: space-around;
    }
    
    .section-why-choose .stat-item {
        flex: 1;
        min-width: 80px;
        text-align: center;
    }
    
    .section-why-choose .stat-number {
        font-size: 2rem;
    }
    
    .section-why-choose .stat-label {
        font-size: 0.9rem;
    }
    
    .section-why-choose .why-choose-content {
        padding-right: 0;
        text-align: center;
    }
    
    .section-why-choose .why-choose-visual {
        height: 300px;
    }
    
    .section-why-choose .globe-circle {
        width: 180px;
        height: 180px;
    }
    
    .section-why-choose .globe-circle::before {
        width: 160px;
        height: 160px;
    }
    
    .section-why-choose .badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .section-why-choose .badge-customers {
        padding: 0.75rem;
    }
    
    .section-why-choose .badge-number {
        font-size: 1.25rem;
    }
    
    /* Desativar animações das imagens e elementos visuais no mobile */
    .section-why-choose .flight-path {
        animation: none !important;
    }
    
    .section-why-choose .airplane {
        animation: none !important;
        display: none;
    }
    
    .section-why-choose .location-pin {
        animation: none !important;
        display: none;
    }
    
    .section-why-choose .badge {
        animation: none !important;
    }
    
    .carousel-dot.active::after {
        animation: none !important;
    }
    
    .wa_popup .whatsapp-popup-button::before {
        animation: none !important;
    }
}

@media (max-width: 576px) {
    .section-why-choose .stats-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .section-why-choose .stat-item {
        text-align: center;
        width: 100%;
        max-width: 200px;
    }
    
    .section-why-choose .stat-number {
        font-size: 2.5rem;
    }
    
    .section-why-choose .stat-label {
        font-size: 1rem;
    }
    
    /* Desativar animações das imagens e elementos visuais no mobile pequeno */
    .section-why-choose .flight-path {
        animation: none !important;
    }
    
    .section-why-choose .airplane {
        animation: none !important;
    }
    
    .section-why-choose .location-pin {
        animation: none !important;
    }
    
    .section-why-choose .badge {
        animation: none !important;
    }
    
    .carousel-dot.active::after {
        animation: none !important;
    }
    
    .wa_popup .whatsapp-popup-button::before {
        animation: none !important;
    }
}

/* ==========================================================================
  Footer Custom 
========================================================================== */

.footer-custom {
    background: var(--color-black);
    border-radius: 0 0 16px 16px;
    color: var(--color-gray-300);
    padding: 48px 0 0 0;
    font-size: 16px;
    border-top: none;
    position: relative;
    z-index: 1;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-border-radius: 0 0 16px 16px;
    -moz-border-radius: 0 0 16px 16px;
    -ms-border-radius: 0 0 16px 16px;
    -o-border-radius: 0 0 16px 16px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    display: block;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.footer-social {
    display: flex;
    gap: 22px;
}

.footer-social a {
    color: var(--color-white);
    font-size: 22px;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--color-primary);
}

.footer-title {
    font-size: 12px;
    color: var(--color-gray-400);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--color-white);
    font-weight: 500;
}

.footer-list a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-list a:hover {
    color: var(--color-primary);
}

.footer-plane-icon {
    margin-left: 0.5em;
}

.footer-list .smooth-scroll {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-list .smooth-scroll:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.footer-copyright {
    color: var(--color-white);
    font-size: 14px;
}

.footer-custom hr {
    border-color: var(--color-gray-600);
    margin: 32px 0;
}

@media (max-width: 991px) {
    .footer-links-row {
        text-align: left;
    }

    .footer-logo {
        margin-bottom: 16px;
    }

    .footer-social {
        justify-content: center;
        margin-top: 16px;
    }
}

@media (max-width: 767.98px) {

    .footer-custom .row,
    .footer-custom .footer-links-row {
        text-align: center;
    }

    .footer-custom .footer-logo {
        margin-left: auto;
        margin-right: auto;
        display: block;
        float: none;
    }

    .footer-custom .footer-list {
        padding-left: 0;
    }

    .footer-custom .footer-title {
        text-align: center;
    }

    .footer-custom .col-12,
    .footer-custom .col-12.col-md-3 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-custom {
        padding: 32px 0 0 0;
        font-size: 15px;
    }
}

/* ==========================================================================
  Testimonials Section
========================================================================== */

.section-testimonials {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--color-primary);
    border-radius: 16px 16px 0 0;
    -webkit-border-radius: 16px 16px 0 0;
    -moz-border-radius: 16px 16px 0 0;
    -ms-border-radius: 16px 16px 0 0;
    -o-border-radius: 16px 16px 0 0;
}


.section-testimonials .container {
    position: relative;
    z-index: 2;
}

.section-testimonials .section-badge {
    margin-bottom: 1rem;
}

.section-testimonials .badge-text {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--color-black);
    color: var(--color-primary);
    display: inline-block;
}

.section-testimonials .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-black);
    line-height: 1.1;
    margin-bottom: 0;
}

.section-testimonials .testimonial-image-card {
    position: relative;
    z-index: 2;
}

.section-testimonials .testimonial-image-card .image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.section-testimonials .testimonial-image-card .image-wrapper:hover {
    transform: rotate(0deg);
}

.section-testimonials .testimonial-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.section-testimonials .testimonial-content-card {
    position: relative;
    background: var(--color-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-left: -50px;
    z-index: 3;
}

.section-testimonials .testimonial-nav {
    position: absolute;
    top: -30px;
    right: 30px;
    display: flex;
    gap: 10px;
}

.section-testimonials .testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.section-testimonials .testimonial-nav-btn:hover {
    background: #F5F5F5;
    transform: scale(1.1);
}

.section-testimonials .testimonial-item {
    display: none;
}

.section-testimonials .testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-testimonials .testimonial-text {
    font-size: 1.125rem;
    color: var(--color-section-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.section-testimonials .testimonial-author {
    margin-top: 2rem;
}

.section-testimonials .author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.section-testimonials .author-role {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Decorative Icons */
.section-testimonials .testimonial-icon {
    position: absolute;
    color: var(--color-white);
    opacity: 0.25;
    font-size: 2.5rem;
    z-index: 1;
}

.section-testimonials .testimonial-icon-1 {
    top: 15%;
    left: 2%;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
}

.section-testimonials .testimonial-icon-2 {
    bottom: 30%;
    left: 10%;
    font-size: 2rem;
    opacity: 0.2;
    animation: float 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.section-testimonials .testimonial-icon-3 {
    top: 60%;
    right: 8%;
    font-size: 3rem;
    opacity: 0.25;
    animation: float 4.5s ease-in-out infinite;
    animation-delay: 1s;
}

/* Responsive */
@media (max-width: 991px) {
    .section-testimonials .testimonial-content-card {
        margin-left: 0;
        margin-top: -50px;
    }

    .section-testimonials .testimonial-image-card .image-wrapper {
        transform: rotate(0deg);
    }

    .section-testimonials .testimonial-nav {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .section-testimonials {
        padding: 80px 0;
    }

    .section-testimonials .section-title {
        font-size: 2.5rem;
    }

    .section-testimonials .testimonial-content-card {
        padding: 2rem;
    }

    .section-testimonials .testimonial-text {
        font-size: 1rem;
    }

    .section-testimonials .testimonial-img {
        height: 400px;
    }

    .section-testimonials .testimonial-icon {
        opacity: 0.15;
        font-size: 1.5rem;
    }

    .section-testimonials .testimonial-icon-1 {
        top: 10%;
        left: -5%;
    }

    .section-testimonials .testimonial-icon-2 {
        font-size: 1.2rem;
    }

    .section-testimonials .testimonial-icon-3 {
        font-size: 2rem;
        right: -5%;
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Mission Section */
.section-about-mission {
    position: relative;
    background: var(--color-white);
}

.section-about-mission .about-content {
    padding-right: 4rem;
}

.section-about-mission .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-section-dark);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.section-about-mission .section-description {
    font-size: 1.125rem;
    color: var(--color-section-gray);
    line-height: 1.8;
    margin-bottom: 0;
}

.section-about-mission .about-visual {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.section-about-mission .about-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    max-width: 100%;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
}

/* About Illustration SVG Styles */
.about-illustration {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 500px;
    display: block;
    -webkit-filter: drop-shadow(0 10px 30px rgba(0, 230, 110, 0.15));
    filter: drop-shadow(0 10px 30px rgba(0, 230, 110, 0.15));
}

.illustration-hub {
    -webkit-filter: drop-shadow(0 4px 12px rgba(0, 230, 110, 0.3));
    filter: drop-shadow(0 4px 12px rgba(0, 230, 110, 0.3));
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.about-visual:hover .illustration-hub {
    -webkit-filter: drop-shadow(0 6px 20px rgba(0, 230, 110, 0.5));
    filter: drop-shadow(0 6px 20px rgba(0, 230, 110, 0.5));
}

.illustration-node {
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-filter: drop-shadow(0 2px 8px rgba(0, 230, 110, 0.2));
    filter: drop-shadow(0 2px 8px rgba(0, 230, 110, 0.2));
}

.illustration-node:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-filter: drop-shadow(0 4px 12px rgba(0, 230, 110, 0.4));
    filter: drop-shadow(0 4px 12px rgba(0, 230, 110, 0.4));
}

.node-1, .node-3 {
    -webkit-filter: drop-shadow(0 2px 8px rgba(0, 230, 110, 0.3));
    filter: drop-shadow(0 2px 8px rgba(0, 230, 110, 0.3));
}

.node-2, .node-5, .node-8 {
    -webkit-filter: drop-shadow(0 2px 8px rgba(77, 219, 172, 0.3));
    filter: drop-shadow(0 2px 8px rgba(77, 219, 172, 0.3));
}

.node-4, .node-6 {
    -webkit-filter: drop-shadow(0 2px 8px rgba(212, 163, 115, 0.3));
    filter: drop-shadow(0 2px 8px rgba(212, 163, 115, 0.3));
}

.node-7 {
    -webkit-filter: drop-shadow(0 2px 8px rgba(0, 230, 110, 0.25));
    filter: drop-shadow(0 2px 8px rgba(0, 230, 110, 0.25));
}

.illustration-connection {
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.about-visual:hover .illustration-connection {
    opacity: 0.6 !important;
}

.secondary-connections {
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.about-visual:hover .secondary-connections {
    opacity: 0.35 !important;
}

.illustration-particles .particle {
    -webkit-filter: drop-shadow(0 2px 4px rgba(0, 230, 110, 0.3));
    filter: drop-shadow(0 2px 4px rgba(0, 230, 110, 0.3));
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.illustration-particles .particle:hover {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}

.illustration-icons {
    pointer-events: none;
}

.illustration-bg-circle {
    -webkit-animation: pulse-ring 4s ease-in-out infinite;
    -moz-animation: pulse-ring 4s ease-in-out infinite;
    -o-animation: pulse-ring 4s ease-in-out infinite;
    animation: pulse-ring 4s ease-in-out infinite;
}

.decorative-shapes {
    pointer-events: none;
}

.decorative-shapes polygon,
.decorative-shapes rect {
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.about-visual:hover .decorative-shapes polygon,
.about-visual:hover .decorative-shapes rect {
    opacity: 0.2;
}

.floating-orbs {
    pointer-events: none;
}

.floating-orbs circle {
    -webkit-filter: blur(1px);
    filter: blur(1px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.about-visual:hover .floating-orbs circle {
    opacity: 0.5;
    -webkit-filter: blur(0.5px);
    filter: blur(0.5px);
}

/* Tourism Elements Styles */
.tourism-elements {
    pointer-events: none;
}

.tourism-elements * {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.airplane {
    -webkit-filter: drop-shadow(0 2px 8px rgba(77, 219, 172, 0.3));
    filter: drop-shadow(0 2px 8px rgba(77, 219, 172, 0.3));
}

.about-visual:hover .airplane {
    -webkit-filter: drop-shadow(0 4px 12px rgba(77, 219, 172, 0.5));
    filter: drop-shadow(0 4px 12px rgba(77, 219, 172, 0.5));
}

.tree {
    -webkit-filter: drop-shadow(0 2px 6px rgba(0, 230, 110, 0.2));
    filter: drop-shadow(0 2px 6px rgba(0, 230, 110, 0.2));
}

.globe {
    -webkit-filter: drop-shadow(0 2px 8px rgba(77, 219, 172, 0.3));
    filter: drop-shadow(0 2px 8px rgba(77, 219, 172, 0.3));
}

.about-visual:hover .globe {
    -webkit-filter: drop-shadow(0 4px 12px rgba(77, 219, 172, 0.5));
    filter: drop-shadow(0 4px 12px rgba(77, 219, 172, 0.5));
}

.hotel {
    -webkit-filter: drop-shadow(0 2px 6px rgba(212, 163, 115, 0.3));
    filter: drop-shadow(0 2px 6px rgba(212, 163, 115, 0.3));
}

.about-visual:hover .hotel rect {
    opacity: 0.8;
}

.suitcase {
    -webkit-filter: drop-shadow(0 2px 6px rgba(212, 163, 115, 0.3));
    filter: drop-shadow(0 2px 6px rgba(212, 163, 115, 0.3));
}

.about-visual:hover .suitcase {
    -webkit-filter: drop-shadow(0 4px 10px rgba(212, 163, 115, 0.5));
    filter: drop-shadow(0 4px 10px rgba(212, 163, 115, 0.5));
}

.sun {
    -webkit-filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
}

.about-visual:hover .sun circle {
    opacity: 0.9;
}

.mountains {
    opacity: 0.6;
}

.about-visual:hover .mountains {
    opacity: 0.8;
}

.cloud {
    -webkit-filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
}

.compass {
    -webkit-filter: drop-shadow(0 2px 6px rgba(0, 230, 110, 0.3));
    filter: drop-shadow(0 2px 6px rgba(0, 230, 110, 0.3));
}

.about-visual:hover .compass {
    -webkit-filter: drop-shadow(0 4px 10px rgba(0, 230, 110, 0.5));
    filter: drop-shadow(0 4px 10px rgba(0, 230, 110, 0.5));
}

@-webkit-keyframes pulse-ring {
    0%, 100% {
        opacity: 0.1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
}

@-moz-keyframes pulse-ring {
    0%, 100% {
        opacity: 0.1;
        -moz-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        -moz-transform: scale(1.05);
        transform: scale(1.05);
    }
}

@-o-keyframes pulse-ring {
    0%, 100% {
        opacity: 0.1;
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        -o-transform: scale(1.05);
        transform: scale(1.05);
    }
}

@keyframes pulse-ring {
    0%, 100% {
        opacity: 0.1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05);
    }
}

/* Enhanced hover effects */
.about-visual:hover .illustration-node {
    -webkit-filter: drop-shadow(0 4px 16px rgba(0, 230, 110, 0.5));
    filter: drop-shadow(0 4px 16px rgba(0, 230, 110, 0.5));
}

.about-visual:hover .node-2,
.about-visual:hover .node-5,
.about-visual:hover .node-8 {
    -webkit-filter: drop-shadow(0 4px 16px rgba(77, 219, 172, 0.5));
    filter: drop-shadow(0 4px 16px rgba(77, 219, 172, 0.5));
}

.about-visual:hover .node-4,
.about-visual:hover .node-6 {
    -webkit-filter: drop-shadow(0 4px 16px rgba(212, 163, 115, 0.5));
    filter: drop-shadow(0 4px 16px rgba(212, 163, 115, 0.5));
}

/* Responsive adjustments for illustration */
@media (max-width: 768px) {
    .about-illustration {
        max-height: 400px;
    }
}

/* About Problems Section */
/* DNA B2P Section */
.section-dna-b2p {
    position: relative;
    padding: 120px 0;
    background: var(--color-primary);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.section-dna-b2p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.dna-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 3rem;
    position: relative;
}

.dna-label {
    position: relative;
    display: inline-block;
    padding: 0.5rem 2rem;
    background: var(--color-black);
    border: 3px solid var(--color-black);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    color: var(--color-primary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 700;
}

.dna-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.dna-intro {
    margin-bottom: 2rem;
}

.dna-intro-text {
    font-size: 1.5rem;
    color: var(--color-black);
    font-weight: 400;
    font-style: italic;
}

.dna-mission {
    margin-top: 2rem;
}

.dna-mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.dna-mission-title .text-primary {
    color: var(--color-white) !important;
    font-weight: 800;
    position: relative;
}

.dna-price {
    color: var(--color-black);
    text-decoration: line-through;
    font-weight: 400;
    opacity: 0.5;
}


/* Responsive DNA Section */
@media (max-width: 768px) {
    .dna-title {
        font-size: 2rem;
    }
    
    .dna-label {
        font-size: 1.2rem;
        padding: 0.4rem 1.5rem;
    }
    
    .dna-intro-text {
        font-size: 1.25rem;
    }
    
    .dna-mission-title {
        font-size: 1.75rem;
    }
    
}

/* CTA Section */
.section-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 16px 16px 0 0;
    padding: 80px 0;
}

.section-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.section-cta .cta-description {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.section-cta .cta-button {
    background: var(--color-black);
    color: var(--color-primary);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.section-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: var(--color-black-dark);
}

.section-cta .cta-button i {
    color: var(--color-primary);
}

/* ==========================================================================
  Value Proposition Section
========================================================================== */
.section-value-proposition {
    position: relative;
    padding: 50px 0;
    background: var(--color-white);
}

.section-value-proposition .value-proposition-header {
    margin-bottom: 4rem;
}

.section-value-proposition .value-proposition-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--color-section-dark);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.section-value-proposition .value-proposition-subtitle {
    font-size: 1.375rem;
    color: var(--color-section-gray);
    line-height: 1.8;
    font-weight: 400;
}

.section-value-proposition .value-box {
    background: var(--color-cream);
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-value-proposition .value-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-value-proposition .value-box-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-section-dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.section-value-proposition .value-box-title i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.section-value-proposition .value-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.section-value-proposition .value-item {
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: flex-start;
}

.section-value-proposition .value-item::before {
    content: '⦁';
    position: absolute;
    left: 0;
    top: 0.15em;
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1;
}

.section-value-proposition .value-item-text {
    font-size: 1.125rem;
    color: var(--color-section-dark);
    line-height: 1.7;
    font-weight: 400;
    flex: 1;
}

.section-value-proposition .value-item-text strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .section-about-mission {
        padding: 100px 0;
    }
    
    .section-about-mission .about-content {
        padding-right: 0;
        margin-bottom: 4rem;
    }
    
    .section-about-mission .about-visual {
        height: 400px;
    }
    
    .section-value-proposition {
        padding: 100px 0;
    }
    
    .section-value-proposition .value-proposition-title {
        font-size: 2.25rem;
    }
    
    .section-value-proposition .value-proposition-subtitle {
        font-size: 1.25rem;
    }
    
    .section-value-proposition .value-box {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-about-mission {
        padding: 80px 0;
    }
    
    .section-about-mission .section-title {
        font-size: 2rem;
    }
    
    .section-about-mission .section-description {
        font-size: 1rem;
    }
    
    .section-about-mission .about-visual {
        height: 350px;
    }
    
    .section-value-proposition {
        padding: 80px 0;
    }
    
    .section-value-proposition .value-proposition-header {
        margin-bottom: 3rem;
    }
    
    .section-value-proposition .value-proposition-title {
        font-size: 2rem;
    }
    
    .section-value-proposition .value-proposition-subtitle {
        font-size: 1.125rem;
    }
    
    .section-value-proposition .value-box {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .section-value-proposition .value-box-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-value-proposition .value-item-text {
        font-size: 1rem;
    }
    
    .section-cta {
        padding: 60px 0;
    }
    
    .section-cta .cta-title {
        font-size: 2rem;
    }
    
    .section-cta .cta-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .section-about-mission {
        padding: 60px 0;
    }
    
    .section-about-mission .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .section-about-mission .section-description {
        font-size: 0.95rem;
    }
    
    .section-about-mission .about-visual {
        max-height: 350px;
    }
    
    .section-about-mission .about-image {
        max-height: 350px;
    }
    
    .section-value-proposition {
        padding: 60px 0;
    }
    
    .section-value-proposition .value-proposition-header {
        margin-bottom: 2.5rem;
    }
    
    .section-value-proposition .value-proposition-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .section-value-proposition .value-proposition-subtitle {
        font-size: 1rem;
    }
    
    .section-value-proposition .value-box {
        padding: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .section-value-proposition .value-box-title {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }
    
    .section-value-proposition .value-box-title i {
        font-size: 1.25rem;
    }
    
    .section-value-proposition .value-list {
        gap: 1.5rem;
    }
    
    .section-value-proposition .value-item {
        padding-left: 1.75rem;
    }
    
    .section-value-proposition .value-item::before {
        font-size: 1.25rem;
    }
    
    .section-value-proposition .value-item-text {
        font-size: 0.95rem;
    }
    
    .section-cta {
        padding: 50px 0;
    }
    
    .section-cta .cta-title {
        font-size: 1.75rem;
    }
    
    .section-cta .cta-description {
        font-size: 1rem;
    }
    
    .section-cta .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ==========================================================================
  FAQ
========================================================================== */
#faq {
    background: var(--color-primary);
    border-radius: 16px 16px 0 0;
    padding: 7rem 0 3rem 0;
}

.section-faq .accordion-button:not(.collapsed) {
    background: var(--color-black) !important;
    color: var(--color-primary) !important;
    font-weight: 700 !important;
}

.section-faq .accordion-body p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.section-faq .custom-faq-btn {
    position: relative;
    padding-left: 2.2rem !important;
}

.section-faq .custom-faq-btn .faq-bars {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    width: 18px;
    height: 18px;
    pointer-events: none;
    display: inline-block;
    z-index: 2;
}

.section-faq .faq-bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1a7f3c;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(.4, 2, .6, 1), background 0.2s, opacity 0.2s;
}

.section-faq .faq-bar.top {
    top: 3px;
}

.section-faq .faq-bar.middle {
    top: 8px;
}

.section-faq .faq-bar.bottom {
    top: 13px;
}

.section-faq .custom-faq-btn:not(.collapsed) .faq-bar.top {
    top: 8px;
    background: #e74c3c;
    transform: rotate(45deg);
}

.section-faq .custom-faq-btn:not(.collapsed) .faq-bar.middle {
    opacity: 0;
    transform: scaleX(0.5);
}

.section-faq .custom-faq-btn:not(.collapsed) .faq-bar.bottom {
    top: 8px;
    background: #e74c3c;
    transform: rotate(-45deg);
}

.section-faq .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.section-faq .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(50%) sepia(85%) saturate(600%) hue-rotate(90deg) brightness(95%) contrast(90%);
}

/* ==========================================================================
  Typewriter Effect
========================================================================== */
.typewriter {
    display: inline-block;
    white-space: normal;
    position: relative;
}

.typewriter::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: currentColor;
    margin-left: 2px;
    vertical-align: baseline;
    animation: blink 0.7s infinite;
}

.typewriter.no-cursor::after {
    display: none;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* ==========================================================================
  SECURITY PAGE STYLES
========================================================================== */

/* Security Hero Section */
.section-security-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.section-security-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.security-hero-content {
    position: relative;
    z-index: 1;
}


.section-security-hero .badge-text {
    color: var(--color-white);
    padding: 0.5rem 0;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.security-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-black);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.security-hero-title span {
    color: var(--color-white);
}

.security-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 0;
}

.security-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.security-icon-large {
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.8);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* Pilares Section */
.section-pilares {
    position: relative;
    background: var(--color-white);
    padding: 80px 0;
}

.section-pilares .section-badge {
    margin-bottom: 1rem;
}

.section-pilares .badge-text {
    color: var(--color-primary);
    padding: 0.5rem 0;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.section-pilares .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-section-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-pilares .section-description {
    font-size: 1.125rem;
    color: var(--color-section-gray);
    line-height: 1.8;
    margin-bottom: 0;
}

.pilar-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pilar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--color-primary);
}

.pilar-card-featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-white) 100%);
}

.pilar-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    width: 100%;
    height: 80px;
    position: relative;
}

.pilar-icon i {
    font-size: 3.5rem;
    color: var(--color-primary);
}

.pilar-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.pilar-description {
    font-size: 1rem;
    color: var(--color-section-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pilar-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pilar-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-section-gray);
    line-height: 1.5;
}

.pilar-features li i {
    color: var(--color-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* ==========================================================================
   Security Types Section
========================================================================== */
.section-security-types {
    position: relative;
    background: var(--color-white);
    padding: 80px 0;
}

.section-security-types .section-badge {
    margin-bottom: 1rem;
}

.section-security-types .badge-text {
    color: var(--color-primary);
    padding: 0.5rem 0;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.section-security-types .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-section-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-security-types .section-description {
    font-size: 1.125rem;
    color: var(--color-section-gray);
    line-height: 1.8;
    margin-bottom: 0;
}

.section-security-types .security-type-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.section-security-types .security-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--color-primary);
}

.section-security-types .security-type-card-featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-white) 100%);
}

.section-security-types .security-type-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    width: 100%;
    height: 80px;
    position: relative;
}

.section-security-types .security-type-icon i {
    font-size: 3.5rem;
    color: var(--color-primary);
}

.section-security-types .security-type-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.section-security-types .security-type-description {
    font-size: 1rem;
    color: var(--color-section-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.section-security-types .security-type-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-security-types .security-type-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-section-gray);
    line-height: 1.5;
}

.section-security-types .security-type-features li i {
    color: var(--color-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* Security Values Section */
.section-security-values {
    position: relative;
    background: var(--color-cream);
    padding: 80px 0;
}

.section-security-values .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-section-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}



.value-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1rem;
    color: var(--color-section-gray);
    line-height: 1.7;
    margin: 0;
}


/* Responsive Design for Security Page */
@media (max-width: 992px) {
    .security-hero-title {
        font-size: 2.25rem;
    }

    .security-hero-description {
        font-size: 1.1rem;
    }

    .security-icon-large {
        font-size: 8rem;
    }
}

@media (max-width: 768px) {
    .section-security-hero {
        padding: 80px 0 60px;
    }

    .security-hero-title {
        font-size: 1.75rem;
    }

    .security-hero-description {
        font-size: 1rem;
    }

    .security-icon-large {
        font-size: 6rem;
    }

    .section-pilares,
    .section-security-values,
    .section-security-types {
        padding: 60px 0;
    }

    .pilar-card {
        padding: 2rem;
    }
    
    .section-security-types .security-type-card {
        padding: 2rem;
    }
    
    .section-security-types .section-title {
        font-size: 2rem;
    }
    
    .section-security-types .security-type-title {
        font-size: 1.5rem;
    }
    
    .section-security-types .security-type-icon i {
        font-size: 3rem;
    }
}


/* ==========================================================================
  AGENCY PAGE STYLES
========================================================================== */

/* Agency Hero Section */
.section-agency-hero {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* World Map Pattern Background */
.section-agency-hero .agency-map-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
    overflow: hidden;
}

.section-agency-hero .agency-map-pattern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Agency Hero Content */
.section-agency-hero .agency-hero-content {
    position: relative;
    z-index: 2;
}

.section-agency-hero .agency-hero-badge {
    margin-bottom: .5rem;
}

.section-agency-hero .agency-badge-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-black);
    display: inline-block;
}

.section-agency-hero .agency-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-black);
}

.section-agency-hero .agency-title-line {
    display: block;
    color: var(--color-black);
}

.section-agency-hero .agency-title-highlight {
    display: inline-block;
    color: var(--color-primary);
    font-size: 4.5rem;
    font-weight: 800;
}

.section-agency-hero .agency-hero-description {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 90%;
}

/* Agency CTA Button */
.btn-agency-cta {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 230, 110, 0.3);
}

.btn-agency-cta:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 230, 110, 0.4);
}

.btn-agency-cta i {
    font-size: 1.25rem;
}

/* Agency Hero Visual */
.section-agency-hero .agency-hero-visual {
    position: relative;
    z-index: 2;
    height: 600px;
}

/* Image Collage */
.section-agency-hero .agency-image-collage {
    position: relative;
    width: 100%;
    height: 100%;
}

.section-agency-hero .agency-image-wrapper {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.section-agency-hero .agency-image-wrapper:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.section-agency-hero .agency-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Image 1 - Top Left */
.section-agency-hero .agency-image-1 {
    width: 280px;
    height: 280px;
    top: 0;
    left: 0;
    z-index: 3;
    border-radius: 16px;
}

/* Image 2 - Middle Right */
.section-agency-hero .agency-image-2 {
    width: 300px;
    height: 300px;
    top: 120px;
    right: 0;
    z-index: 2;
    border-radius: 16px;
}

/* Image 3 - Bottom Left */
.section-agency-hero .agency-image-3 {
    width: 260px;
    height: 260px;
    bottom: 0;
    left: 60px;
    z-index: 1;
    border-radius: 16px;
}

/* Join Now Circle */
.section-agency-hero .agency-join-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    z-index: 20;
    display: block;
}

.section-agency-hero .agency-circle-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(59, 130, 246, 0.3));
}

.section-agency-hero .agency-circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-size: 2.5rem;
    z-index: 21;
}

.section-agency-hero .agency-circle-content i {
    display: block;
}

/* SEÇÃO 2 - Reserva Paga */
.section-agency-paid-reservation {
    background: var(--color-cream);
    position: relative;
}

.section-agency-paid-reservation .agency-paid-reservation-content {
    position: relative;
    z-index: 2;
}

.section-agency-paid-reservation .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-section-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-agency-paid-reservation .section-description {
    font-size: 1.125rem;
    color: var(--color-section-gray);
    line-height: 1.8;
    font-weight: 500;
}

.section-agency-paid-reservation .agency-paid-reservation-highlights {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-top: 2rem;
}

.section-agency-paid-reservation .agency-paid-reservation-highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    flex: 1;
    background: var(--color-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.section-agency-paid-reservation .agency-paid-reservation-highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--color-primary);
}

.section-agency-paid-reservation .agency-paid-reservation-highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 230, 110, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 230, 110, 0.2);
    margin: 0 auto;
}

.section-agency-paid-reservation .agency-paid-reservation-highlight-icon i {
    font-size: 2rem;
    color: var(--color-primary);
}

.section-agency-paid-reservation .agency-paid-reservation-highlight-content {
    flex: 1;
    text-align: center;
}

.section-agency-paid-reservation .agency-paid-reservation-highlight-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black-dark);
    margin-bottom: 0.5rem;
}

.section-agency-paid-reservation .agency-paid-reservation-highlight-description {
    font-size: 1rem;
    color: var(--color-section-gray);
    line-height: 1.6;
    margin: 0;
}

/* SEÇÃO 3 - Régua de Comissão */
/* SEÇÃO 5 - Relacionamento com Fornecedores */
.section-agency-suppliers {
    background: var(--color-white);
    position: relative;
}

.section-agency-suppliers .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-section-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: left;
}

.section-agency-suppliers .agency-suppliers-visual {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-agency-suppliers .agency-suppliers-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

/* Aperto de mãos */
.section-agency-suppliers .agency-suppliers-handshake {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.section-agency-suppliers .agency-suppliers-hand {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 230, 110, 0.3);
    animation: pulse-hand 2s ease-in-out infinite;
}

.section-agency-suppliers .agency-suppliers-hand i {
    font-size: 2.5rem;
    color: var(--color-white);
    transform: rotate(-20deg);
}

.section-agency-suppliers .agency-suppliers-hand-right i {
    transform: rotate(20deg) scaleX(-1);
}

.section-agency-suppliers .agency-suppliers-connection {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 2px;
    position: relative;
}

.section-agency-suppliers .agency-suppliers-connection::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 230, 110, 0.5);
}

@keyframes pulse-hand {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Gráfico subindo */
.section-agency-suppliers .agency-suppliers-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
    height: 150px;
    position: relative;
}

.section-agency-suppliers .agency-suppliers-chart-bar {
    width: 40px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 8px 8px 0 0;
    position: relative;
    animation: grow-bar 1.5s ease-out forwards;
    opacity: 0;
}

.section-agency-suppliers .agency-suppliers-chart-bar::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid var(--color-primary);
}

.section-agency-suppliers .agency-suppliers-chart-bar-1 {
    height: 40%;
    animation-delay: 0.2s;
}

.section-agency-suppliers .agency-suppliers-chart-bar-2 {
    height: 60%;
    animation-delay: 0.4s;
}

.section-agency-suppliers .agency-suppliers-chart-bar-3 {
    height: 80%;
    animation-delay: 0.6s;
}

.section-agency-suppliers .agency-suppliers-chart-bar-4 {
    height: 100%;
    animation-delay: 0.8s;
}

@keyframes grow-bar {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para agency-commission-ruler dentro de section-agency-suppliers */
.section-agency-suppliers .agency-commission-ruler-content .section-description {
    font-weight: 600;
}

.section-agency-suppliers .agency-commission-ruler-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-agency-suppliers .agency-commission-ruler-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.section-agency-suppliers .agency-commission-ruler-benefit-item i.bi-check-circle-fill,
.section-agency-suppliers .agency-commission-ruler-benefit-item .bi-check-circle-fill {
    color: var(--color-primary) !important;
    font-size: 1.5rem !important;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 0.25rem;
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.section-agency-suppliers .agency-commission-ruler-benefit-content {
    flex: 1;
    padding-top: 0;
    display: flex;
    flex-direction: column;
}

.section-agency-suppliers .agency-commission-ruler-benefit-title {
    margin-top: 0;
    margin-bottom: 0.375rem;
    line-height: 1.4;
    padding-top: 0;
}

.section-agency-suppliers .agency-commission-ruler-benefit-description {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.6;
    padding-top: 0;
}

/* SEÇÃO 6 - Formação e Treinamento */
.section-agency-training {
    background: var(--color-black-dark);
    position: relative;
}

.section-agency-training .agency-training-content {
    position: relative;
    z-index: 2;
}

.section-agency-training .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 2.5rem;
    text-align: left;
}

.section-agency-training .agency-training-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-agency-training .agency-training-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.section-agency-training .agency-training-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 230, 110, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 230, 110, 0.2);
}

.section-agency-training .agency-training-icon i {
    font-size: 2rem;
    color: var(--color-primary);
}

.section-agency-training .agency-training-item-content {
    flex: 1;
}

.section-agency-training .agency-training-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.section-agency-training .agency-training-item-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.section-agency-training .agency-training-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* OPÇÕES DE MÁSCARA MODERNA - Escolha uma das opções abaixo */

/* OPÇÃO 1 - Atual: Quadrado com linha externa (metade direita) */
.section-agency-training .agency-training-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 16px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
}

.section-agency-training .agency-training-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    border: 4px solid var(--color-primary);
    border-radius: 16px;
    border-left: none;
    border-bottom: none;
    z-index: 2;
    pointer-events: none;
}

.section-agency-training .agency-training-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* OPÇÃO 2 - Quadrado com borda dupla e canto destacado */
/*
.section-agency-training .agency-training-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--color-primary);
    box-shadow: 
        0 0 0 8px rgba(0, 230, 110, 0.1),
        0 0 0 16px rgba(0, 230, 110, 0.05),
        0 20px 60px rgba(0, 0, 0, 0.2);
}

.section-agency-training .agency-training-image-wrapper::before {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 120px;
    height: 120px;
    background: var(--color-primary);
    border-radius: 0 16px 0 16px;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 230, 110, 0.4);
}

.section-agency-training .agency-training-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}
*/

/* OPÇÃO 3 - Quadrado com linha diagonal decorativa */
/*
.section-agency-training .agency-training-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--color-primary);
    background: var(--color-primary-light);
}

.section-agency-training .agency-training-image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 200px;
    height: 200px;
    border: 4px solid var(--color-primary);
    border-left: none;
    border-bottom: none;
    border-radius: 0 16px 0 0;
    z-index: 2;
    pointer-events: none;
}

.section-agency-training .agency-training-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -2px;
    width: 200px;
    height: 200px;
    border: 4px solid var(--color-primary);
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 16px;
    z-index: 2;
    pointer-events: none;
}

.section-agency-training .agency-training-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}
*/

/* OPÇÃO 4 - Quadrado com linha superior e lateral */
/*
.section-agency-training .agency-training-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 16px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
}

.section-agency-training .agency-training-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 420px;
    height: 420px;
    border: 4px solid var(--color-primary);
    border-radius: 16px;
    border-left: none;
    border-bottom: none;
    z-index: 2;
    pointer-events: none;
}

.section-agency-training .agency-training-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}
*/

/* Responsive Styles */
@media (max-width: 1199px) {
    .section-agency-hero .agency-hero-title {
        font-size: 3.5rem;
    }

    .section-agency-hero .agency-title-highlight {
        font-size: 3.5rem;
    }

    .section-agency-hero .agency-hero-visual {
        height: 500px;
    }

    .section-agency-hero .agency-image-1 {
        width: 220px;
        height: 220px;
    }

    .section-agency-hero .agency-image-2 {
        width: 240px;
        height: 240px;
        top: 100px;
    }

    .section-agency-hero .agency-image-3 {
        width: 200px;
        height: 200px;
        left: 40px;
    }

    .section-agency-hero .agency-join-circle {
        width: 150px;
        height: 150px;
    }

    .section-agency-hero .agency-circle-content {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .section-agency-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

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

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

    .section-agency-hero .agency-hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .section-agency-hero .agency-hero-visual {
        height: 400px;
        margin-top: 1.5rem;
    }
    .section-agency-hero .mob-image-center {
        margin: 0 auto;
        width: 60% !important;
        position: relative;
        overflow: visible;
    }

    .section-agency-hero .mob-image-center .agency-hero-visual {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 400px;
    }

    .section-agency-hero .mob-image-center .agency-image-collage {
        position: relative;
        width: 100%;
        height: 100%;
        transform-origin: center center;
    }

    .section-agency-hero .mob-image-center {
        margin: 0 auto;
        width: 60% !important;
        position: relative;
        overflow: visible;
    }

    .section-agency-hero .mob-image-center .agency-hero-visual {
        position: relative;
        width: 100%;
        height: 400px;
        transform: scale(1);
        transform-origin: center center;
    }

    .section-agency-hero .mob-image-center .agency-image-collage {
        position: relative;
        width: 100%;
        height: 100%;
        transform-origin: center center;
    }

    .section-agency-hero .mob-image-center .agency-image-wrapper {
        position: absolute !important;
    }

    .section-agency-hero .agency-image-1 {
        width: 180px;
        height: 180px;
    }

    .section-agency-hero .agency-image-2 {
        width: 200px;
        height: 200px;
        top: 80px;
    }

    .section-agency-hero .agency-image-3 {
        width: 160px;
        height: 160px;
        left: 30px;
    }

    .section-agency-hero .agency-join-circle {
        width: 120px;
        height: 120px;
    }

    .section-agency-hero .agency-circle-content {
        font-size: 1.5rem;
    }

    /* SEÇÃO 2 - Reserva Paga Responsive Tablet */
    .section-agency-paid-reservation .section-title {
        font-size: 2.25rem;
    }

    .section-agency-paid-reservation .section-description {
        font-size: 1rem;
    }

    .section-agency-paid-reservation .agency-paid-reservation-highlight-item {
        gap: 1.25rem;
        padding: 2rem;
    }

    .section-agency-paid-reservation .agency-paid-reservation-highlight-icon {
        width: 50px;
        height: 50px;
    }

    .section-agency-paid-reservation .agency-paid-reservation-highlight-icon i {
        font-size: 1.75rem;
    }

    .section-agency-paid-reservation .agency-paid-reservation-highlight-title {
        font-size: 1.25rem;
    }

    /* SEÇÃO 5 - Relacionamento com Fornecedores Responsive Tablet */
    .section-agency-suppliers .section-title {
        font-size: 2.25rem;
    }

    .section-agency-suppliers .agency-suppliers-visual {
        min-height: 350px;
    }

    .section-agency-suppliers .agency-suppliers-illustration {
        gap: 2.5rem;
    }

    .section-agency-suppliers .agency-suppliers-hand {
        width: 70px;
        height: 70px;
    }

    .section-agency-suppliers .agency-suppliers-hand i {
        font-size: 2.25rem;
    }

    .section-agency-suppliers .agency-suppliers-chart {
        height: 130px;
    }

    .section-agency-suppliers .agency-suppliers-chart-bar {
        width: 35px;
    }

    /* SEÇÃO 6 - Formação e Treinamento Responsive Tablet */
    .section-agency-training .section-title {
        font-size: 2.25rem;
    }

    .section-agency-training .agency-training-item {
        gap: 1.25rem;
    }

    .section-agency-training .agency-training-icon {
        width: 50px;
        height: 50px;
    }

    .section-agency-training .agency-training-icon i {
        font-size: 1.75rem;
    }

    .section-agency-training .agency-training-item-title {
        font-size: 1.25rem;
    }

    .section-agency-training .agency-training-image-wrapper {
        width: 350px;
        height: 350px;
    }

    .section-agency-training .agency-training-image-wrapper::before {
        width: 370px;
        height: 370px;
        right: -15px;
        border-width: 3px;
    }
}

@media (max-width: 767px) {
    .section-agency-hero {
        padding: 0;
    }

    .section-agency-hero .agency-badge-text {
        font-size: 1.25rem;
    }

    .section-agency-hero .agency-hero-title {
        font-size: 2rem;
    }

    .section-agency-hero .agency-title-highlight {
        font-size: 2rem;
    }

    .section-agency-hero .agency-hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .btn-agency-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .section-agency-hero .agency-hero-visual {
        height: 350px;
    }
    .section-agency-hero .mob-image-center{
        width: 100% !important;
        margin-top: 0 !important;
    }

    .section-agency-hero .agency-image-1 {
        width: 140px;
        height: 140px;
        top: 1.5rem;
    }

    .section-agency-hero .agency-image-2 {
        width: 160px;
        height: 160px;
        top: 60px;
        left: 9rem;
    }

    .section-agency-hero .agency-image-3 {
        width: 130px;
        height: 130px;
        left: 20px;
        bottom: 5rem;
    }

    .section-agency-hero .agency-join-circle {
        width: 100px;
        height: 100px;
    }

    .section-agency-hero .agency-circle-content {
        font-size: 1.25rem;
    }

    /* SEÇÃO 2 - Reserva Paga Responsive Mobile */
    .section-agency-paid-reservation .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .section-agency-paid-reservation .section-description {
        font-size: 0.95rem;
        text-align: center;
    }

    .section-agency-paid-reservation .agency-paid-reservation-highlights {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .section-agency-paid-reservation .agency-paid-reservation-highlight-item {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        padding: 1.5rem;
    }

    .section-agency-paid-reservation .agency-paid-reservation-highlight-icon {
        margin: 0 auto;
        width: 60px;
        height: 60px;
    }

    .section-agency-paid-reservation .agency-paid-reservation-highlight-icon i {
        font-size: 2rem;
    }

    .section-agency-paid-reservation .agency-paid-reservation-highlight-title {
        font-size: 1.25rem;
    }

    .section-agency-paid-reservation .agency-paid-reservation-highlight-description {
        font-size: 0.95rem;
    }

    /* SEÇÃO 5 - Relacionamento com Fornecedores Responsive Mobile */
    .section-agency-suppliers .section-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .section-agency-suppliers .agency-suppliers-visual {
        margin-bottom: 2rem;
        min-height: 300px;
    }

    .section-agency-suppliers .agency-suppliers-illustration {
        gap: 2rem;
    }

    .section-agency-suppliers .agency-suppliers-hand {
        width: 60px;
        height: 60px;
    }

    .section-agency-suppliers .agency-suppliers-hand i {
        font-size: 2rem;
    }

    .section-agency-suppliers .agency-suppliers-connection {
        width: 40px;
    }

    .section-agency-suppliers .agency-suppliers-chart {
        height: 120px;
        gap: 0.75rem;
    }

    .section-agency-suppliers .agency-suppliers-chart-bar {
        width: 30px;
    }

    /* SEÇÃO 6 - Formação e Treinamento Responsive Mobile */
    .section-agency-training .section-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .section-agency-training .agency-training-items {
        gap: 1.5rem;
    }

    .section-agency-training .agency-training-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .section-agency-training .agency-training-icon {
        margin: 0 auto;
        width: 60px;
        height: 60px;
    }

    .section-agency-training .agency-training-icon i {
        font-size: 2rem;
    }

    .section-agency-training .agency-training-item-title {
        font-size: 1.25rem;
    }

    .section-agency-training .agency-training-item-description {
        font-size: 0.95rem;
    }

    .section-agency-training .agency-training-visual {
        margin-bottom: 2rem;
        padding: 1rem;
    }

    .section-agency-training .agency-training-image-wrapper {
        width: 280px;
        height: 280px;
    }

    .section-agency-training .agency-training-image-wrapper::before {
        width: 300px;
        height: 300px;
        right: -12px;
        border-width: 3px;
    }
}

/* SEÇÃO 7 - Quem Deve Usar a B2P? */
.section-agency-who {
    background: var(--color-cream);
    position: relative;
    padding: 2rem;
}

.section-agency-who .agency-who-content {
    position: relative;
    z-index: 2;
}

.section-agency-who .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-black-dark);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-align: left;
}

.section-agency-who .section-badge {
    margin: 1rem 0;
}

.section-agency-who .badge-text {
    background: var(--color-primary);
    color: var(--color-black);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.section-agency-who .agency-who-items {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    flex-wrap: nowrap;
}

/* OPÇÃO 2 - Layout Centralizado (1 grande no centro, 4 ao redor) */
/*
.section-agency-who .agency-who-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-agency-who .agency-who-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.section-agency-who .agency-who-item:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}

.section-agency-who .agency-who-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    transform: scale(1.1);
    z-index: 2;
}

.section-agency-who .agency-who-item:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
}

.section-agency-who .agency-who-item:nth-child(5) {
    grid-column: 3;
    grid-row: 3;
}
*/

/* OPÇÃO 3 - Layout Assimetria Moderna (2-1-2) */
/*
.section-agency-who .agency-who-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.section-agency-who .agency-who-item:nth-child(1) {
    grid-column: 1 / 3;
}

.section-agency-who .agency-who-item:nth-child(2) {
    grid-column: 3 / 4;
}

.section-agency-who .agency-who-item:nth-child(3) {
    grid-column: 4 / 6;
}

.section-agency-who .agency-who-item:nth-child(4) {
    grid-column: 1 / 3;
}

.section-agency-who .agency-who-item:nth-child(5) {
    grid-column: 3 / 6;
}
*/

/* OPÇÃO 4 - Layout Piramidal (1-2-2) */
/*
.section-agency-who .agency-who-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.section-agency-who .agency-who-item:nth-child(1) {
    grid-column: 2 / 3;
}

.section-agency-who .agency-who-item:nth-child(2) {
    grid-column: 1 / 3;
}

.section-agency-who .agency-who-item:nth-child(3) {
    grid-column: 3 / 5;
}

.section-agency-who .agency-who-item:nth-child(4) {
    grid-column: 1 / 3;
}

.section-agency-who .agency-who-item:nth-child(5) {
    grid-column: 3 / 5;
}
*/

/* OPÇÃO 5 - Layout Grid Uniforme (2-3) */
/*
.section-agency-who .agency-who-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-agency-who .agency-who-item:nth-child(1) {
    grid-column: 1 / 2;
}

.section-agency-who .agency-who-item:nth-child(2) {
    grid-column: 2 / 4;
}

.section-agency-who .agency-who-item:nth-child(3) {
    grid-column: 1 / 2;
}

.section-agency-who .agency-who-item:nth-child(4) {
    grid-column: 2 / 3;
}

.section-agency-who .agency-who-item:nth-child(5) {
    grid-column: 3 / 4;
}
*/

.section-agency-who .agency-who-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--color-white);
    border-radius: 16px;
    border: 2px solid rgba(0, 230, 110, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
    gap: 1rem;
}

.section-agency-who .agency-who-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 230, 110, 0.15);
    border-color: var(--color-primary);
}

.section-agency-who .agency-who-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 230, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 230, 110, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.section-agency-who .agency-who-item:hover .agency-who-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.section-agency-who .agency-who-icon i {
    font-size: 2rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.section-agency-who .agency-who-item:hover .agency-who-icon i {
    color: var(--color-white);
}

.section-agency-who .agency-who-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-black-dark);
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

/* Responsive Styles for SEÇÃO 7 */
@media (max-width: 991px) {
    .section-agency-who .section-title {
        font-size: 2.25rem;
        text-align: center;
    }

    .section-agency-who .section-badge {
        margin-bottom: 1.75rem;
        text-align: center;
    }

    .section-agency-who .agency-who-items {
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .section-agency-who .agency-who-item {
        flex: 0 0 calc(50% - 0.625rem);
        min-width: 200px;
    }

    .section-agency-who .agency-who-item {
        padding: 1.75rem 1.25rem;
    }

    .section-agency-who .agency-who-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .section-agency-who .agency-who-icon i {
        font-size: 2.25rem;
    }

    .section-agency-who .agency-who-title {
        font-size: 1.05rem;
    }
}

@media (max-width: 767px) {
    .section-agency-who .section-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }

    .section-agency-who .section-badge {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .section-agency-who .agency-who-items {
        flex-direction: column;
        gap: 1.25rem;
    }

    .section-agency-who .agency-who-item {
        flex: 1;
        width: 100%;
    }

    .section-agency-who .agency-who-item {
        padding: 1.5rem 1rem;
    }

    .section-agency-who .agency-who-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .section-agency-who .agency-who-icon i {
        font-size: 2rem;
    }

    .section-agency-who .agency-who-title {
        font-size: 1rem;
    }
}

/* ==========================================================================
  TECH IA PAGE STYLES
========================================================================== */

/* Tech IA Hero Section */
.section-tech-ia-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--color-black-dark);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Partículas animadas */
.tech-ia-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.tech-ia-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--color-primary), 0 0 20px var(--color-primary);
}

/* Animações variadas para cada partícula */
.tech-ia-particles .particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.tech-ia-particles .particle:nth-child(2) {
    left: 20%;
    animation-delay: 1s;
    animation-duration: 18s;
    background: var(--color-secondary);
    box-shadow: 0 0 10px var(--color-secondary), 0 0 20px var(--color-secondary);
}

.tech-ia-particles .particle:nth-child(3) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.tech-ia-particles .particle:nth-child(4) {
    left: 40%;
    animation-delay: 0.5s;
    animation-duration: 16s;
    background: var(--color-secondary);
    box-shadow: 0 0 10px var(--color-secondary), 0 0 20px var(--color-secondary);
}

.tech-ia-particles .particle:nth-child(5) {
    left: 50%;
    animation-delay: 1.5s;
    animation-duration: 13s;
}

.tech-ia-particles .particle:nth-child(6) {
    left: 60%;
    animation-delay: 2.5s;
    animation-duration: 17s;
    background: var(--color-secondary);
    box-shadow: 0 0 10px var(--color-secondary), 0 0 20px var(--color-secondary);
}

.tech-ia-particles .particle:nth-child(7) {
    left: 70%;
    animation-delay: 0.8s;
    animation-duration: 15s;
}

.tech-ia-particles .particle:nth-child(8) {
    left: 80%;
    animation-delay: 1.8s;
    animation-duration: 19s;
}

.tech-ia-particles .particle:nth-child(9) {
    left: 90%;
    animation-delay: 0.3s;
    animation-duration: 14s;
    background: var(--color-secondary);
    box-shadow: 0 0 10px var(--color-secondary), 0 0 20px var(--color-secondary);
}

.tech-ia-particles .particle:nth-child(10) {
    left: 15%;
    animation-delay: 2.2s;
    animation-duration: 16s;
}

.tech-ia-particles .particle:nth-child(11) {
    left: 25%;
    animation-delay: 0.7s;
    animation-duration: 13s;
}

.tech-ia-particles .particle:nth-child(12) {
    left: 35%;
    animation-delay: 1.2s;
    animation-duration: 18s;
    background: var(--color-secondary);
    box-shadow: 0 0 10px var(--color-secondary), 0 0 20px var(--color-secondary);
}

.tech-ia-particles .particle:nth-child(13) {
    left: 45%;
    animation-delay: 2.8s;
    animation-duration: 15s;
}

.tech-ia-particles .particle:nth-child(14) {
    left: 55%;
    animation-delay: 0.4s;
    animation-duration: 17s;
}

.tech-ia-particles .particle:nth-child(15) {
    left: 65%;
    animation-delay: 1.6s;
    animation-duration: 14s;
    background: var(--color-secondary);
    box-shadow: 0 0 10px var(--color-secondary), 0 0 20px var(--color-secondary);
}

.tech-ia-particles .particle:nth-child(16) {
    left: 75%;
    animation-delay: 2.3s;
    animation-duration: 16s;
}

.tech-ia-particles .particle:nth-child(17) {
    left: 85%;
    animation-delay: 0.9s;
    animation-duration: 19s;
}

.tech-ia-particles .particle:nth-child(18) {
    left: 95%;
    animation-delay: 1.4s;
    animation-duration: 13s;
}

.tech-ia-particles .particle:nth-child(19) {
    left: 5%;
    animation-delay: 2.6s;
    animation-duration: 15s;
    background: var(--color-secondary);
    box-shadow: 0 0 10px var(--color-secondary), 0 0 20px var(--color-secondary);
}

.tech-ia-particles .particle:nth-child(20) {
    left: 12%;
    animation-delay: 0.6s;
    animation-duration: 18s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(50vh) translateX(20px) scale(1);
        opacity: 1;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-10vh) translateX(-20px) scale(0);
        opacity: 0;
    }
}

/* Efeito de conexão entre partículas (linhas) */
.tech-ia-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(0, 230, 110, 0.1) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(0, 230, 110, 0.05) 50%, transparent 100%);
    background-size: 200px 200px, 200px 200px;
    animation: grid-move 20s linear infinite;
    opacity: 0.3;
}

@keyframes grid-move {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 200px 200px, 200px 200px;
    }
}

.section-tech-ia-hero .tech-ia-hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
}

.section-tech-ia-hero .tech-ia-hero-content .section-badge .badge-text {
    background: rgba(0, 230, 110, 0.2);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 230, 110, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-tech-ia-hero .tech-ia-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 0 0 20px rgba(0, 230, 110, 0.3);
}

.section-tech-ia-hero .tech-ia-title-highlight {
    color: var(--color-primary);
    display: block;
}

.section-tech-ia-hero .tech-ia-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 90%;
}

.section-tech-ia-hero .tech-ia-hero-cta {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 230, 110, 0.3);
}

.section-tech-ia-hero .tech-ia-hero-cta:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 230, 110, 0.4);
}

.section-tech-ia-hero .tech-ia-hero-visual {
    position: relative;
    z-index: 2;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-tech-ia-hero .tech-ia-hero-icon {
    font-size: 12rem;
    color: var(--color-primary);
    opacity: 0.3;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 30px var(--color-primary));
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
        filter: drop-shadow(0 0 30px var(--color-primary));
    }
    50% {
        opacity: 0.5;
        filter: drop-shadow(0 0 50px var(--color-primary));
    }
}

/* Tech IA Dividers */
.tech-ia-divider {
    height: 1px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.tech-ia-divider-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 230, 110, 0.3) 20%, 
        rgba(0, 230, 110, 0.5) 50%, 
        rgba(0, 230, 110, 0.3) 80%, 
        transparent 100%);
    position: relative;
}

.tech-ia-divider-line::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
    animation: divider-pulse 2s ease-in-out infinite;
}

@keyframes divider-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.5);
    }
}

/* Tech IA Why Section */
.section-tech-ia-why {
    background: var(--color-black-dark);
    position: relative;
    overflow: hidden;
}

.section-tech-ia-why .container {
    position: relative;
    z-index: 2;
}

.section-tech-ia-why .section-badge {
    margin-bottom: 1rem;
}

.section-tech-ia-why .badge-text {
    color: var(--color-white);
    background: rgba(0, 230, 110, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    border: 1px solid rgba(0, 230, 110, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-tech-ia-why .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 230, 110, 0.3);
}

.section-tech-ia-why .section-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 0;
}

.section-tech-ia-why .tech-ia-why-card {
    background: rgba(18, 18, 23, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Fallback para navegadores sem suporte a backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
    .section-tech-ia-why .tech-ia-why-card {
        background: rgba(18, 18, 23, 0.95);
    }
}

.section-tech-ia-why .tech-ia-why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 230, 110, 0.5), transparent);
    z-index: 1;
}

.section-tech-ia-why .tech-ia-why-card:hover {
    transform: translateY(-5px);
    background: rgba(18, 18, 23, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 12px 40px rgba(0, 230, 110, 0.25);
    border-color: rgba(0, 230, 110, 0.4);
}

.section-tech-ia-why .tech-ia-why-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 230, 110, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 230, 110, 0.3);
}

.section-tech-ia-why .tech-ia-why-icon i {
    font-size: 2rem;
    color: var(--color-primary);
}

.section-tech-ia-why .tech-ia-why-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.section-tech-ia-why .tech-ia-why-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Tech IA AI Section */
.section-tech-ia-ai {
    background: var(--color-black-dark);
    position: relative;
    overflow: hidden;
}

.section-tech-ia-ai .container {
    position: relative;
    z-index: 2;
}

.section-tech-ia-ai .section-badge {
    margin-bottom: 1rem;
}

.section-tech-ia-ai .badge-text {
    color: var(--color-white);
    background: rgba(0, 230, 110, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    border: 1px solid rgba(0, 230, 110, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-tech-ia-ai .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 230, 110, 0.3);
}

.section-tech-ia-ai .tech-ia-ai-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-tech-ia-ai .tech-ia-ai-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.section-tech-ia-ai .tech-ia-ai-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(0, 230, 110, 0.5));
    animation: float-image 6s ease-in-out infinite;
}

@keyframes float-image {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.section-tech-ia-ai .tech-ia-ai-content {
    position: relative;
    z-index: 2;
}

.section-tech-ia-ai .tech-ia-ai-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-tech-ia-ai .tech-ia-ai-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.section-tech-ia-ai .tech-ia-ai-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-tech-ia-ai .tech-ia-ai-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.section-tech-ia-ai .tech-ia-ai-feature-item i {
    color: var(--color-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Tech IA Automation Section */
.section-tech-ia-automation {
    background: var(--color-black-dark);
    position: relative;
    overflow: hidden;
}

.section-tech-ia-automation .container {
    position: relative;
    z-index: 2;
}


.section-tech-ia-automation .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.section-tech-ia-automation .section-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 0;
}

.section-tech-ia-automation .tech-ia-automation-content {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

.section-tech-ia-automation .tech-ia-automation-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.section-tech-ia-automation .tech-ia-automation-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.section-tech-ia-automation .tech-ia-automation-item:hover {
    transform: translateX(5px);
    color: var(--color-white);
}

.section-tech-ia-automation .tech-ia-automation-item i {
    color: var(--color-danger);
    font-size: 1.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(220, 53, 69, 0.6)) drop-shadow(0 0 12px rgba(220, 53, 69, 0.4));
}

.section-tech-ia-automation .tech-ia-automation-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 230, 110, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 230, 110, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 230, 110, 0.15);
}

.section-tech-ia-automation .tech-ia-automation-visual {
    position: relative;
    padding: 1rem;
}

.section-tech-ia-automation .tech-ia-automation-workflow {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: rgba(18, 18, 23, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2.5rem;
    gap: 2.5rem;
    border: 1px solid rgba(0, 230, 110, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.section-tech-ia-automation .tech-ia-workflow-step {
    flex: 1;
    background: rgba(18, 18, 23, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.section-tech-ia-automation .tech-ia-workflow-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}


.section-tech-ia-automation .tech-ia-workflow-step ul li {
    color: rgba(255, 255, 255, 0.8);
}

.section-tech-ia-automation .tech-ia-workflow-step h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.section-tech-ia-automation .tech-ia-workflow-step ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-tech-ia-automation .tech-ia-workflow-step ul li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-tech-ia-automation .tech-ia-workflow-step ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.5rem;
    line-height: 1;
}

.section-tech-ia-automation .tech-ia-workflow-step.tech-ia-workflow-after h4 {
    color: var(--color-primary);
}

.section-tech-ia-automation .tech-ia-workflow-step.tech-ia-workflow-after {
    border-color: rgba(0, 230, 110, 0.3);
}

.section-tech-ia-automation .tech-ia-workflow-arrow {
    font-size: 2.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    filter: drop-shadow(0 0 10px rgba(0, 230, 110, 0.5));
    animation: pulse-arrow 2s ease-in-out infinite;
}

@keyframes pulse-arrow {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(5px);
        opacity: 0.8;
    }
}

/* Tech IA Security Section */
.section-tech-ia-security {
    background: var(--color-black-dark);
    position: relative;
    overflow: hidden;
}

.section-tech-ia-security .container {
    position: relative;
    z-index: 2;
}


.section-tech-ia-security .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.section-tech-ia-security .section-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 0;
}

.section-tech-ia-security .tech-ia-security-card {
    background: rgba(18, 18, 23, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 230, 110, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Fallback para navegadores sem suporte a backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
    .section-tech-ia-security .tech-ia-security-card {
        background: rgba(18, 18, 23, 0.95);
    }
}

.section-tech-ia-security .tech-ia-security-card:hover {
    transform: translateY(-3px);
    background: rgba(18, 18, 23, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 8px 30px rgba(0, 230, 110, 0.2);
    border-color: rgba(0, 230, 110, 0.3);
}

.section-tech-ia-security .tech-ia-security-icon {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 1.25rem 0;
    border: none;
}

.section-tech-ia-security .tech-ia-security-icon i {
    font-size: 3rem;
    color: var(--color-primary);
    filter: drop-shadow(0 0 8px rgba(0, 230, 110, 0.6)) drop-shadow(0 0 15px rgba(0, 230, 110, 0.4));
}

.section-tech-ia-security .tech-ia-security-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.section-tech-ia-security .tech-ia-security-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Tech IA Integration Section */
.section-tech-ia-integration {
    background: var(--color-black-dark);
    position: relative;
    overflow: hidden;
    border-radius: 0 0 16px 16px;
}

.section-tech-ia-integration .container {
    position: relative;
    z-index: 2;
}

.section-tech-ia-integration .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 230, 110, 0.3);
}

.section-tech-ia-integration .tech-ia-integration-content {
    position: relative;
    z-index: 2;
}

.section-tech-ia-integration .tech-ia-integration-description {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-tech-ia-integration .tech-ia-integration-highlight {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.section-tech-ia-integration .tech-ia-integration-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.section-tech-ia-integration .tech-ia-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 120px;
}

.section-tech-ia-integration .tech-ia-flow-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-tech-ia-integration .tech-ia-flow-icon i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.section-tech-ia-integration .tech-ia-flow-step span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.section-tech-ia-integration .tech-ia-flow-connector {
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.section-tech-ia-integration .tech-ia-integration-visual {
    position: relative;
    padding: 2rem;
}

.section-tech-ia-integration .tech-ia-integration-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: rgba(18, 18, 23, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 3rem 2rem;
    border: 1px solid rgba(0, 230, 110, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.section-tech-ia-integration .tech-ia-diagram-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(18, 18, 23, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 200px;
    transition: all 0.3s ease;
}

.section-tech-ia-integration .tech-ia-diagram-node:hover {
    background: rgba(18, 18, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 230, 110, 0.25);
    border-color: rgba(0, 230, 110, 0.4);
}



.section-tech-ia-integration .tech-ia-diagram-node i {
    font-size: 3rem;
    color: var(--color-primary);
}

.section-tech-ia-integration .tech-ia-diagram-node span {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
}

.section-tech-ia-integration .tech-ia-diagram-line {
    width: 2px;
    height: 40px;
    background: var(--color-primary);
}


/* Responsive Styles - Tech IA */
@media (max-width: 1199px) {
    .section-tech-ia-hero .tech-ia-hero-title {
        font-size: 3rem;
    }

    .section-tech-ia-hero .tech-ia-hero-visual {
        height: 400px;
    }

    .section-tech-ia-hero .tech-ia-hero-image {
        max-width: 450px;
    }

}

@media (max-width: 991px) {
    .section-tech-ia-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

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

    .section-tech-ia-hero .tech-ia-hero-description {
        font-size: 1.125rem;
        max-width: 100%;
    }

    .section-tech-ia-hero .tech-ia-hero-visual-col {
        display: none;
    }

    .section-tech-ia-hero .tech-ia-hero-visual {
        height: 350px;
        margin-top: 2rem;
    }

    .section-tech-ia-hero .tech-ia-hero-icon {
        font-size: 8rem;
    }

    .section-tech-ia-ai .tech-ia-ai-visual {
        height: 400px;
        margin-bottom: 2rem;
    }

    .section-tech-ia-ai .tech-ia-ai-icon {
        font-size: 8rem;
    }

    .section-tech-ia-automation .tech-ia-automation-workflow {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-tech-ia-automation .tech-ia-workflow-arrow {
        transform: rotate(90deg);
        display: none;
}

    .section-tech-ia-integration .tech-ia-integration-flow {
        justify-content: center;
        display: none;
    }

    .section-tech-ia-integration .tech-ia-integration-diagram {
        padding: 2rem 1.5rem;
    }

    .section-tech-ia-why .section-title,
    .section-tech-ia-ai .section-title,
    .section-tech-ia-automation .section-title,
    .section-tech-ia-security .section-title,
    .section-tech-ia-integration .section-title {
        font-size: 2.25rem;
    }

    .section-tech-ia-why .section-description,
    .section-tech-ia-automation .section-description,
    .section-tech-ia-security .section-description {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .section-tech-ia-hero {
        padding: 80px 0 40px;
    }
    .tech-ia-ai-content, .tech-ia-integration-content{
        text-align: center;
    }
    .section-tech-ia-hero .tech-ia-hero-title {
        font-size: 2rem;
    }

    .section-tech-ia-hero .tech-ia-title-highlight {
        display: inline;
    }

    .section-tech-ia-hero .tech-ia-hero-description {
        font-size: 1rem;
    }

    .section-tech-ia-hero .tech-ia-hero-cta {
        padding: 0.875rem 2rem;
        font-size: .8rem;
    }

    .section-tech-ia-hero .tech-ia-hero-visual {
        height: 300px;
    }

    .section-tech-ia-hero .tech-ia-hero-icon {
        font-size: 6rem;
    }

    .section-tech-ia-why .tech-ia-why-card {
        padding: 1.5rem;
    }

    .section-tech-ia-ai .tech-ia-ai-visual {
        height: 300px;
    }

    .section-tech-ia-ai .tech-ia-ai-icon {
        font-size: 6rem;
    }

    .section-tech-ia-ai .tech-ia-ai-subtitle {
        font-size: 1.25rem;
    }

    .section-tech-ia-ai .tech-ia-ai-feature-item {
        font-size: 1rem;
    }

    .section-tech-ia-automation .tech-ia-automation-highlight {
        font-size: 1.25rem;
    }

    .section-tech-ia-automation .tech-ia-automation-workflow {
        padding: 1.5rem;
    }

    .section-tech-ia-security .tech-ia-security-card {
        padding: 1.5rem;
    }

    .section-tech-ia-integration .tech-ia-integration-description {
        font-size: 1.25rem;
    }

    .section-tech-ia-integration .tech-ia-integration-highlight {
        font-size: 1.125rem;
    }

    .section-tech-ia-integration .tech-ia-flow-step {
        min-width: 100px;
    }

    .section-tech-ia-integration .tech-ia-diagram-node {
        min-width: 150px;
        padding: 1.5rem;
    }

    .section-tech-ia-why .section-title,
    .section-tech-ia-ai .section-title,
    .section-tech-ia-automation .section-title,
    .section-tech-ia-security .section-title,
    .section-tech-ia-integration .section-title {
        font-size: 2rem;
    }

    .section-tech-ia-why .section-description,
    .section-tech-ia-automation .section-description,
    .section-tech-ia-security .section-description {
        font-size: 0.95rem;
    }

    .section-tech-ia-ai .tech-ia-ai-image {
        max-width: 350px;
    }

    .section-tech-ia-hero .tech-ia-hero-image {
        animation: none;
    }

    .section-tech-ia-ai .tech-ia-ai-image {
        animation: none;
    }

    /* Reduzir velocidade das partículas em 768px */
    .tech-ia-particles .particle {
        animation-duration: 25s !important;
    }

    .tech-ia-particles .particle:nth-child(1) {
        animation-duration: 24s !important;
    }

    .tech-ia-particles .particle:nth-child(2) {
        animation-duration: 30s !important;
    }

    .tech-ia-particles .particle:nth-child(3) {
        animation-duration: 26s !important;
    }

    .tech-ia-particles .particle:nth-child(4) {
        animation-duration: 28s !important;
    }

    .tech-ia-particles .particle:nth-child(5) {
        animation-duration: 25s !important;
    }

    .tech-ia-particles .particle:nth-child(6) {
        animation-duration: 29s !important;
    }

    .tech-ia-particles .particle:nth-child(7) {
        animation-duration: 27s !important;
    }

    .tech-ia-particles .particle:nth-child(8) {
        animation-duration: 31s !important;
    }

    .tech-ia-particles .particle:nth-child(9) {
        animation-duration: 26s !important;
    }

    .tech-ia-particles .particle:nth-child(10) {
        animation-duration: 28s !important;
    }

    .tech-ia-particles .particle:nth-child(11) {
        animation-duration: 25s !important;
    }

    .tech-ia-particles .particle:nth-child(12) {
        animation-duration: 30s !important;
    }

    .tech-ia-particles .particle:nth-child(13) {
        animation-duration: 27s !important;
    }

    .tech-ia-particles .particle:nth-child(14) {
        animation-duration: 29s !important;
    }

    .tech-ia-particles .particle:nth-child(15) {
        animation-duration: 26s !important;
    }

    .tech-ia-particles .particle:nth-child(16) {
        animation-duration: 28s !important;
    }

    .tech-ia-particles .particle:nth-child(17) {
        animation-duration: 31s !important;
    }

    .tech-ia-particles .particle:nth-child(18) {
        animation-duration: 25s !important;
    }

    .tech-ia-particles .particle:nth-child(19) {
        animation-duration: 27s !important;
    }

    .tech-ia-particles .particle:nth-child(20) {
        animation-duration: 30s !important;
    }
    .section-tech-ia-hero .tech-ia-hero-content{
        margin-top: 2rem;
    }
}

/* Importar otimizações de imagem */
@import url('image-optimization.css');


