/* ========== VARIÁVEIS E BASE ========== */
:root {
    --ial-dark: #001529;
    --ial-blue: #1b6da9;
    --ial-blue-hover: #155a8a;
    --ial-orange: #f58220;
    --ial-orange-hover: #e07318;
    --ial-text: #374151;
    --ial-text-light: #6b7280;
    --ial-bg: #ffffff;
    --ial-bg-alt: #f8fafc;
    --ial-border: rgba(0, 21, 41, 0.08);
    --ial-shadow: 0 4px 24px rgba(0, 21, 41, 0.06);
    --ial-radius: 16px;
    --ial-transition: 0.25s ease;
    /* Altura reservada para o header fixo: hero usa isso para não ser cortado (PC) */
    --ial-header-height: 100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ial-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--ial-bg);
}

img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; transition: color var(--ial-transition), opacity var(--ial-transition); }
a:focus-visible { outline: 2px solid var(--ial-orange); outline-offset: 2px; }

/* ========== HEADER ========== */
#header-ial {
    position: fixed; top: 0; left: 0; width: 100%; max-width: 100vw; display: flex;
    justify-content: space-between; align-items: center;
    min-height: var(--ial-header-height);
    padding: 0 4%; z-index: 9999; transition: 0.4s;
    font-family: 'Poppins', sans-serif;
    background: rgba(0, 21, 41, 0.6);
}
/* Estado normal do topo: logo e itens claros (brancos) para ver no banner */
#header-ial:not(.scrolled) .logo-header img {
    filter: brightness(0) invert(1);
}
#header-ial:not(.scrolled) .nav-header a,
#header-ial:not(.scrolled) .nav-header .nav-dropdown-trigger {
    color: rgba(255, 255, 255, 0.95);
}
#header-ial:not(.scrolled) .nav-header a:hover,
#header-ial:not(.scrolled) .nav-header .nav-dropdown-trigger:hover {
    color: rgba(255, 255, 255, 0.75);
}
#header-ial:not(.scrolled) .btn-hamburger span {
    background: rgba(255, 255, 255, 0.95);
}
#header-ial.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--ial-shadow);
    padding: 0 4%;
}
.logo-header img {
    height: 78px;
    display: block;
    vertical-align: middle;
    transition: 0.4s;
}
#header-ial.scrolled .logo-header img { filter: none; }
/* Navegação desktop: em linha */
.nav-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}
.nav-header a {
    text-decoration: none;
    font-weight: 600;
    margin: 0;
    font-size: 14px;
    transition: color var(--ial-transition);
    position: relative;
}
.nav-header .nav-dropdown-trigger {
    text-decoration: none;
    font-weight: 600;
    margin: 0;
    font-size: 14px;
    transition: color var(--ial-transition);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    background-color: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.2;
    color: inherit;
}
.nav-header .nav-dropdown-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
    opacity: 0.9;
    transition: transform 0.25s ease;
}
.nav-header .nav-dropdown-chevron svg {
    display: block;
    width: 16px;
    height: 16px;
}
.nav-header a::after,
.nav-header .nav-dropdown-trigger::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: currentColor;
    border-radius: 3px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.32s ease, transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}
.nav-header a:hover::after,
.nav-header .nav-dropdown-trigger:hover::after {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.32s ease 0.08s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.08s;
}
.nav-header a.btn-contato-header::after { display: none; }
#header-ial .nav-header a.active { color: var(--ial-orange); }
#header-ial .nav-header a.active::after {
    opacity: 1;
    transform: translateY(0);
    background: var(--ial-orange);
}
#header-ial .nav-header .nav-dropdown-trigger.active { color: var(--ial-orange); }
#header-ial .nav-header .nav-dropdown-trigger.active::after {
    opacity: 1;
    transform: translateY(0);
    background: var(--ial-orange);
}
#header-ial.scrolled .nav-header a,
#header-ial.scrolled .nav-header .nav-dropdown-trigger { color: var(--ial-dark); }
#header-ial.scrolled .nav-header a:hover,
#header-ial.scrolled .nav-header .nav-dropdown-trigger:hover { color: var(--ial-text-light); }
#header-ial.scrolled .nav-header a.active,
#header-ial.scrolled .nav-header .nav-dropdown-trigger.active { color: var(--ial-orange); }
#header-ial:not(.scrolled) .nav-header a:hover,
#header-ial:not(.scrolled) .nav-header .nav-dropdown-trigger:hover { color: rgba(255, 255, 255, 0.8); }

/* Dropdown Consórcio — base: só o wrapper; painel estilo “flyout” só ≥769px */
#header-ial .nav-header .nav-dropdown {
    position: relative;
    flex-shrink: 0;
    align-self: center;
}
@media (min-width: 769px) {
    #header-ial .nav-header {
        overflow: visible;
    }
    #header-ial .nav-header .nav-dropdown-panel {
        list-style: none;
        list-style-type: none;
        list-style-image: none;
        margin: 0;
        padding: 10px 0;
        position: absolute;
        top: calc(100% + 12px);
        left: 50%;
        transform: translateX(-50%);
        min-width: 200px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 12px 40px rgba(0, 21, 41, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 21, 41, 0.08);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.22s ease, visibility 0.22s ease;
        z-index: 10050;
    }
    #header-ial .nav-header .nav-dropdown-panel li {
        list-style: none;
        list-style-type: none;
        margin: 0;
        padding: 0;
    }
    #header-ial .nav-header .nav-dropdown:hover .nav-dropdown-panel,
    #header-ial .nav-header .nav-dropdown:focus-within .nav-dropdown-panel {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    /* Trigger laranja (texto, sublinhado, chevron via currentColor) com menu aberto */
    #header-ial .nav-header .nav-dropdown:hover .nav-dropdown-trigger,
    #header-ial .nav-header .nav-dropdown:focus-within .nav-dropdown-trigger {
        color: var(--ial-orange);
    }
    #header-ial .nav-header .nav-dropdown:hover .nav-dropdown-trigger::after,
    #header-ial .nav-header .nav-dropdown:focus-within .nav-dropdown-trigger::after {
        opacity: 1;
        transform: translateY(0);
        background: var(--ial-orange);
    }
    #header-ial .nav-header .nav-dropdown-panel a {
        display: block;
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 600;
        color: var(--ial-dark);
        text-decoration: none;
        white-space: nowrap;
        transition: background var(--ial-transition), color var(--ial-transition);
    }
    #header-ial .nav-header .nav-dropdown-panel a::after {
        display: none !important;
    }
    #header-ial .nav-header .nav-dropdown-panel a:hover {
        background: rgba(245, 130, 32, 0.1);
        color: var(--ial-orange);
    }
    #header-ial .nav-header .nav-dropdown-panel--wide {
        min-width: 288px;
    }
    #header-ial .nav-header .nav-dropdown-panel--wide a {
        white-space: normal;
        line-height: 1.35;
        padding-top: 12px;
        padding-bottom: 12px;
    }
    #header-ial .nav-header .nav-dropdown-panel a.nav-dropdown-item-external {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
        text-align: left;
        line-height: 1.25;
    }
    #header-ial .nav-header .nav-dropdown-panel a.nav-dropdown-item-external .nav-dropdown-item-external-text {
        line-height: 1.25;
    }
    #header-ial .nav-header .nav-dropdown-panel a.nav-dropdown-item-external .nav-dropdown-external-icon {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 0;
        opacity: 0.92;
        transform: translateY(0.5px);
    }
    #header-ial .nav-header .nav-dropdown-panel a.nav-dropdown-item-external .nav-dropdown-external-icon svg {
        display: block;
        width: 1.1em;
        height: 1.1em;
        max-width: 18px;
        max-height: 18px;
        vertical-align: middle;
    }
}
.btn-contato-header {
    background: var(--ial-orange);
    color: white !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--ial-transition), transform 0.2s ease, box-shadow var(--ial-transition);
    box-shadow: 0 4px 14px rgba(245, 130, 32, 0.35);
}
.btn-contato-header:hover {
    background: var(--ial-orange);
    transform: none;
    box-shadow: 0 4px 14px rgba(245, 130, 32, 0.35);
    filter: brightness(0.92) contrast(1.08);
}
.btn-contato-header:focus-visible { outline: 2px solid var(--ial-orange); outline-offset: 2px; }

/* ========== SEARCH HEADER (ícone → expande ao clicar) ========== */
/* Mobile: busca ao lado do hambúrguer. Desktop: busca dentro do nav (entre Blog e CTA) */
.header-search-mobile {
    display: flex;
    margin-right: 2px;
}
.header-search-desktop {
    display: none;
}
@media (min-width: 769px) {
    .header-search-mobile {
        display: none !important;
    }
    .header-search-desktop {
        display: flex !important;
        margin-left: 8px;
        margin-right: -20px;
    }
}
.header-search-wrap {
    display: flex;
    align-items: center;
    gap: 0;
}
.header-search-mobile.header-search-wrap {
    margin-right: 2px;
}
.btn-search-toggle {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, width 0.2s ease, min-width 0.2s ease, opacity 0.2s ease, margin 0.2s ease;
}
/* Com a barra aberta, esconde o ícone de abrir para não ficar duas lupas */
.header-search-wrap.search-open .btn-search-toggle {
    width: 0;
    min-width: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}
.btn-search-toggle:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.12);
}
#header-ial.scrolled .btn-search-toggle:hover {
    background: rgba(0, 21, 41, 0.08);
}
.btn-search-toggle:active {
    transform: scale(0.96);
}
.btn-search-toggle:focus-visible {
    outline: 2px solid var(--ial-orange);
    outline-offset: 2px;
}
.btn-search-toggle svg {
    display: block;
}
#header-ial:not(.scrolled) .btn-search-toggle { color: rgba(255, 255, 255, 0.95); }
#header-ial:not(.scrolled) .btn-search-toggle:hover { color: #fff; }
#header-ial.scrolled .btn-search-toggle { color: var(--ial-dark); }

.header-search-bar {
    width: 0;
    overflow: hidden;
    opacity: 0;
    transition: width 0.28s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.2s ease;
}
.header-search-wrap.search-open .header-search-bar {
    width: 200px;
    opacity: 1;
    overflow: visible;
}
.header-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 12px;
    min-width: 200px;
}
.header-search-input {
    flex: 1;
    min-width: 0;
    height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.header-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.header-search-input:focus {
    outline: none;
    border-color: var(--ial-orange);
    background: rgba(255, 255, 255, 0.2);
}
#header-ial.scrolled .header-search-input {
    border-color: rgba(0, 21, 41, 0.2);
    background: var(--ial-bg-alt);
    color: var(--ial-dark);
}
#header-ial.scrolled .header-search-input::placeholder {
    color: var(--ial-text-light);
}
#header-ial.scrolled .header-search-input:focus {
    border-color: var(--ial-orange);
    background: #fff;
}
/* Oculta o X nativo do input type="search" para não duplicar com .header-search-clear */
.header-search-input::-webkit-search-cancel-button {
    display: none;
    -webkit-appearance: none;
}
.header-search-input::-moz-search-cancel-button {
    display: none;
}
.header-search-submit {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--ial-orange);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}
.header-search-submit:hover {
    background: var(--ial-orange);
    transform: none;
}
.header-search-submit:active {
    transform: none;
}
.header-search-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.header-search-submit:focus-visible:not(:disabled) {
    outline: 2px solid var(--ial-dark);
    outline-offset: 2px;
}

/* Botão X para limpar a busca (dentro da barra) */
.header-search-clear {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(0, 21, 41, 0.1);
    color: var(--ial-text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}
.header-search-clear:hover {
    background: rgba(0, 21, 41, 0.18);
    color: var(--ial-dark);
}
.header-search-clear:focus-visible {
    outline: 2px solid var(--ial-orange);
    outline-offset: 2px;
}
#header-ial:not(.scrolled) .header-search-clear {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}
#header-ial:not(.scrolled) .header-search-clear:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #fff;
}

/* Dropdown de resultados da busca */
.header-search-results {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 0;
    margin-top: 6px;
    max-height: 320px;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 21, 41, 0.15);
    border: 1px solid var(--ial-border);
    z-index: 100;
    padding: 6px 0;
}
.header-search-results:empty,
.header-search-results[aria-hidden="true"] {
    display: none;
}
.header-search-results[aria-hidden="false"] {
    display: block;
}
.header-search-results .search-result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    font-size: 0.875rem;
    color: var(--ial-dark);
    text-decoration: none;
    transition: background 0.15s ease;
    border-bottom: 1px solid rgba(0, 21, 41, 0.06);
    min-height: 52px;
}
.header-search-results .search-result-item:last-child {
    border-bottom: none;
}
.header-search-results .search-result-item:hover,
.header-search-results .search-result-item:focus {
    background: rgba(245, 130, 32, 0.08);
    color: var(--ial-dark);
}
.header-search-results .search-result-thumb {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--ial-bg-alt);
}
.header-search-results .search-result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.header-search-results .search-result-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.header-search-results .search-result-title {
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.header-search-results .search-result-url {
    font-size: 0.7rem;
    color: var(--ial-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.header-search-results .search-result-empty {
    padding: 12px 14px;
    font-size: 0.875rem;
    color: var(--ial-text-light);
}
@media (max-width: 768px) {
    .header-search-results {
        max-height: 280px;
        left: 8px;
        right: 8px;
    }
    .header-search-results .search-result-item {
        padding: 6px 10px;
        gap: 8px;
        min-height: 48px;
    }
    .header-search-results .search-result-thumb {
        width: 40px;
        height: 40px;
    }
    .header-search-results .search-result-title {
        font-size: 0.8125rem;
    }
    .header-search-results .search-result-url {
        font-size: 0.65rem;
    }
}
.header-search-bar {
    position: relative;
}

/* Botões genéricos (CTA seção blog, etc.) */
.btn-ial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-ial-primary {
    background: var(--ial-orange);
    color: #fff !important;
    border-color: var(--ial-orange);
}
.btn-ial-primary:hover {
    background: var(--ial-orange-hover);
    border-color: var(--ial-orange-hover);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(245, 130, 32, 0.3);
}
.btn-ial-outline {
    background: transparent;
    color: var(--ial-dark) !important;
    border-color: var(--ial-dark);
}
.btn-ial-outline:hover {
    background: var(--ial-dark);
    color: #fff !important;
}

/* Hamburger (só mobile) */
.btn-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
    transition: 0.3s;
}
.btn-hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 2px;
    transition: 0.3s;
}
#header-ial.scrolled .btn-hamburger span { background: #001529; }
#header-ial.nav-open .btn-hamburger span {
    background: #001529;
}
#header-ial.nav-open .btn-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
#header-ial.nav-open .btn-hamburger span:nth-child(2) { opacity: 0; }
#header-ial.nav-open .btn-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
.nav-overlay { display: none; }
@media (max-width: 768px) {
    #header-ial { padding: 0 4%; }
    #header-ial.scrolled { padding: 0 4%; }
    /* Sombra no header quando o menu hambúrguer está aberto (mesmo no topo) */
    #header-ial.nav-open {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: 0 4px 24px rgba(0, 21, 41, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    #header-ial.nav-open .logo-header img { filter: none; }
    .logo-header img { height: 70px; }
    .btn-hamburger { display: flex; }
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.65);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    }
    .nav-overlay.visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity 0.3s ease, visibility 0s linear 0s;
    }
    .nav-header {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 100vw);
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        min-height: 100dvh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 90px 20px max(28px, env(safe-area-inset-bottom, 0px));
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18), -2px 0 12px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease, visibility 0s linear 0.3s;
        z-index: 10000;
        visibility: hidden;
        pointer-events: none;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
    }
    #header-ial.nav-open .nav-header {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
        transition: transform 0.3s ease, visibility 0s linear 0s;
    }
    #header-ial.nav-open .nav-header a { color: #001529; }
    #header-ial.nav-open .nav-header a:hover { color: #9ca3af; }
    #header-ial.nav-open .nav-header .nav-dropdown-trigger { color: #001529; }
    #header-ial.nav-open .nav-header .nav-dropdown-trigger:hover { color: #9ca3af; }
    #header-ial.nav-open .nav-header a.active,
    #header-ial.nav-open .nav-header .nav-dropdown-trigger.active { color: #f58220; }
    #header-ial.nav-open .btn-search-toggle { color: #001529; }
    /* Esconde a busca quando o menu hambúrguer está aberto no mobile */
    #header-ial.nav-open .header-search-mobile {
        display: none !important;
    }
    /* Oculta o bloco de busca dentro do menu (nav) no mobile; a busca fica só no header ao lado do hambúrguer */
    .nav-header .header-search-desktop,
    .nav-header .header-search-wrap.header-search-desktop {
        display: none !important;
    }
    /* Links de texto do menu (não o CTA — estilizado à parte) */
    .nav-header > a:not(.btn-contato-header) {
        display: block;
        margin: 0;
        font-size: 16px;
        padding: 14px 16px;
        width: 100%;
        max-width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 21, 41, 0.08);
        box-sizing: border-box;
        flex-shrink: 0;
    }
    .nav-header .nav-dropdown {
        width: 100%;
        max-width: 100%;
        flex-shrink: 0;
    }
    .nav-header .nav-dropdown-trigger {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0;
        font-size: 16px;
        padding: 14px 16px;
        text-align: center;
        border-bottom: 1px solid rgba(0, 21, 41, 0.08);
        box-sizing: border-box;
    }
    .nav-header .nav-dropdown-trigger::after {
        display: none;
    }
    .nav-header .nav-dropdown-panel {
        position: static;
        left: auto;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        list-style: none;
        list-style-type: none;
        list-style-image: none;
        margin: 0;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        background: rgba(0, 21, 41, 0.04);
        min-width: 0;
        width: 100%;
        text-align: center;
        z-index: auto;
        transition: none;
    }
    .nav-header .nav-dropdown-panel li {
        list-style: none;
        list-style-type: none;
        margin: 0;
        padding: 0;
    }
    .nav-header .nav-dropdown.is-open .nav-dropdown-panel {
        display: block;
    }
    .nav-header .nav-dropdown.is-open .nav-dropdown-chevron {
        transform: rotate(180deg);
    }
    #header-ial.nav-open .nav-header .nav-dropdown.is-open .nav-dropdown-trigger {
        color: #f58220;
    }
    .nav-header .nav-dropdown-panel a {
        padding: 12px 16px;
        font-size: 15px;
        text-align: center;
        border-bottom: 1px solid rgba(0, 21, 41, 0.06);
        white-space: normal;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .nav-header .nav-dropdown-panel a.nav-dropdown-item-external {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        gap: 6px;
        text-align: center;
        line-height: 1.25;
    }
    .nav-header .nav-dropdown-panel a.nav-dropdown-item-external .nav-dropdown-item-external-text {
        line-height: 1.25;
    }
    .nav-header .nav-dropdown-panel a.nav-dropdown-item-external .nav-dropdown-external-icon {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 0;
        opacity: 0.92;
        transform: translateY(0.5px);
    }
    .nav-header .nav-dropdown-panel a.nav-dropdown-item-external .nav-dropdown-external-icon svg {
        display: block;
        width: 1.1em;
        height: 1.1em;
        max-width: 18px;
        max-height: 18px;
        vertical-align: middle;
    }
    .nav-header .nav-dropdown-panel li:last-child a {
        border-bottom: none;
    }
    /* CTA por último no drawer; margin-top:auto empurra para o fundo quando a lista é curta */
    .nav-header > a.btn-contato-header {
        order: 99;
        flex-shrink: 0;
        align-self: stretch;
        margin-top: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: block;
        text-align: center;
        padding: 14px 20px;
        font-size: 15px;
        border: none;
        border-radius: 50px;
        background: var(--ial-orange);
        color: #fff !important;
        box-shadow: 0 4px 14px rgba(245, 130, 32, 0.35);
    }
    .nav-header > a.btn-contato-header:hover {
        filter: brightness(0.92) contrast(1.08);
    }
    /* Search: colado ao hambúrguer à direita (margin-left: auto agrupa com o botão) */
    .header-search-mobile {
        margin-left: auto;
        margin-right: 8px;
    }
    .btn-search-toggle {
        width: 44px;
        height: 44px;
    }
    .btn-search-toggle svg {
        width: 24px;
        height: 24px;
    }
    .header-search-wrap.search-open .header-search-bar {
        width: min(200px, calc(100vw - 120px));
    }
    .header-search-form {
        min-width: 160px;
    }
    .header-search-input {
        height: 36px;
        font-size: 0.875rem;
    }
    .header-search-submit {
        width: 34px;
        height: 34px;
    }
    #header-ial.nav-open .header-search-mobile.search-open .header-search-bar {
        width: min(200px, calc(100vw - 120px));
    }
}

/* ========== HERO CARROSSEL ========== */
/* Banners: 1600×1066 (≈ 3:2). Evitar 26/9 no PC — cortava topo/base com cover */
.hero-ial {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding-top: var(--ial-header-height);
    overflow: hidden;
    overflow-x: clip;
    font-family: 'Poppins', sans-serif;
    border-radius: 0 0 40px 40px;
    box-sizing: border-box;
}
.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    min-width: 0;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    -webkit-touch-callout: none;
}
.hero-carousel:active { cursor: grabbing; }
.hero-carousel-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 8% 28px;
}
.hero-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(245, 130, 32, 0.5);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--ial-transition), transform 0.2s ease;
}
.hero-arrow:hover {
    background: rgba(245, 130, 32, 0.85);
    transform: scale(1.08);
}
.hero-arrow:focus-visible { outline: 2px solid rgba(255,255,255,0.9); outline-offset: 2px; }
.hero-arrow img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.2s, filter 0.2s;
}
.hero-arrow:hover img {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255,255,255,0.5));
}
.hero-track {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 0;
    min-width: 0;
    transition: transform 0.5s ease-out;
    will-change: transform;
}
.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    min-height: 0;
    height: auto;
    /* Mesma proporção dos assets PC (1200×514, ex. banner-*.png) */
    aspect-ratio: 600 / 257;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-origin: padding-box;
    background-color: #001529;
}
.hero-slide.hero-banner-1 { background-image: url('media/banner/pc/banner-1.png'); }
.hero-slide.hero-banner-2 { background-image: url('media/banner/pc/banner-2.png'); }
.hero-slide.hero-banner-3 { background-image: url('media/banner/pc/banner-3.png'); }
@media (min-width: 769px) {
    .hero-carousel {
        width: min(1200px, calc(100% - 32px));
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        border-radius: 0 0 40px 40px;
    }
}
.hero-progress-wrap {
    flex: 1;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
}
.hero-progress-seg {
    flex: 1;
    min-width: 28px;
    max-width: 80px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    transition: background var(--ial-transition);
}
.hero-progress-seg:hover { background: rgba(255, 255, 255, 0.5); }
.hero-progress-seg-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #f58220, #ff9f4d);
    border-radius: 3px;
    transition: width 0.1s linear;
}
.hero-badges {
    display: flex; justify-content: center; gap: 15px; margin-bottom: 25px;
    align-items: center; flex-wrap: wrap;
}
.hero-badges .badge {
    background: rgba(255,255,255,0.2); padding: 5px 15px; border-radius: 5px;
    font-size: 11px; font-weight: 600;
}
.hero-partner {
    display: flex; align-items: center; gap: 8px;
}
.hero-partner span { font-size: 10px; opacity: 0.8; }
.hero-partner img { height: 35px; mix-blend-mode: lighten; }
.hero-ial h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; margin-bottom: 20px; }
.hero-ial h1 span { color: #f58220; }
.hero-ial .hero-desc { font-size: 1.2rem; margin-bottom: 35px; opacity: 0.9; }
.hero-ial .btn-hero {
    display: inline-block; background: #f58220; color: white; padding: 16px 40px;
    border-radius: 50px; text-decoration: none; font-weight: 700;
    box-shadow: 0 10px 20px rgba(245, 130, 32, 0.3);
}
.hero-ial .btn-hero:hover { opacity: 0.95; }

/* ========== HERO PÁGINA INTERNA (ex.: Seguros On Line) ========== */
.hero-page {
    margin-top: var(--ial-header-height);
    min-height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--ial-dark) 0%, #0a2a4a 50%, var(--ial-blue) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
}
.hero-page::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
/* Vídeo de fundo no hero (página seguros automotivo) */
.hero-page-with-video {
    background: var(--ial-dark);
}
.hero-page-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-page-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Esconde controles do vídeo no iOS/Safari */
.hero-page-video::-webkit-media-controls {
    display: none !important;
}
.hero-page-video::-webkit-media-controls-enclosure {
    display: none !important;
}
.hero-page-video::-webkit-media-controls-panel {
    display: none !important;
}
.hero-page-video::-webkit-media-controls-play-button {
    display: none !important;
}
.hero-page-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.hero-page-gradient {
    display: none;
}
.hero-page-with-video .hero-page-gradient {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Gradiente semi-transparente para o vídeo aparecer atrás */
    background: linear-gradient(135deg, rgba(0, 21, 41, 0.82) 0%, rgba(10, 42, 74, 0.78) 50%, rgba(27, 109, 169, 0.75) 100%);
    pointer-events: none;
}
.hero-page-inner {
    position: relative;
    z-index: 3;
    max-width: 720px;
    padding: 48px 6% 56px;
}
.hero-page-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
}
.hero-page-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.hero-page-title span { color: var(--ial-orange); }
.hero-page-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
}
.hero-page-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}
.hero-page-cta .btn-cta-primary { color: #fff !important; }
.hero-page-cta .btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff !important;
}
.hero-page-cta .btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    color: #fff !important;
}

/* Passos do processo (Seção 04) */
.process-steps {
    margin: 20px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.process-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(27, 109, 169, 0.08);
    border-radius: 10px;
    border-left: 4px solid var(--ial-blue);
    font-weight: 500;
    color: var(--ial-dark);
}
.process-step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ial-blue);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50%;
}
.lgpd-note {
    font-size: 0.875rem;
    color: var(--ial-text-light);
    margin-top: 16px;
    padding: 12px 16px;
    background: var(--ial-bg-alt);
    border-radius: 8px;
    border: 1px solid var(--ial-border);
}
.section-cta-final .btn-cta-large { padding: 16px 32px; font-size: 1rem; }

/* ========== NOSSOS PARCEIROS (carrossel de logos) ========== */
.ial-parceiros-logos {
    padding: 64px 0 72px;
    background: var(--ial-bg-alt);
    overflow: hidden;
}
.ial-parceiros-logos .parceiros-logos-title {
    text-align: center;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 800;
    color: var(--ial-dark);
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}
.parceiros-logos-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.parceiros-logos-track {
    display: flex;
    width: max-content;
    animation: parceiros-scroll 35s linear infinite;
}
.parceiros-logos-track:hover {
    animation-play-state: paused;
}
.parceiros-logos-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 24px;
    flex-shrink: 0;
}
.parceiros-logos-item {
    flex-shrink: 0;
    width: 220px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: var(--ial-bg);
    border-radius: var(--ial-radius);
    box-shadow: var(--ial-shadow);
    transition: transform var(--ial-transition), box-shadow var(--ial-transition);
    overflow: hidden;
}
.parceiros-logos-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 28px rgba(0, 21, 41, 0.12);
}
.parceiros-logos-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.parceiros-logos-item-smaller img {
    max-width: 88%;
    max-height: 88%;
    width: auto;
    height: auto;
    object-fit: contain;
}
@keyframes parceiros-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== SEÇÕES DE CONTEÚDO (PARCEIROS / LIDERANÇA) ========== */
.ial-specialist-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 72px;
    padding: 80px 7%;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    min-width: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, background var(--ial-transition);
}
.ial-specialist-wrapper.section-in-view {
    opacity: 1;
    transform: translateY(0);
}
/* Seção logo após o banner com mesmo padrão de proximidade */
.hero-ial + .ial-specialist-wrapper { padding-top: 88px; margin-top: 0; }
/* Alternância de fundo suave */
.ial-specialist-wrapper:nth-of-type(odd) { background: var(--ial-bg); }
.ial-specialist-wrapper:nth-of-type(even) { background: #f0f4f8; }
.ial-specialist-wrapper.reverse { flex-direction: row-reverse; }

/* Seção com coluna lateral (linhas laranja/azul + balão + logo) - ex.: Seguros On Line */
.section-with-sidebar {
    gap: 64px;
    align-items: stretch;
}
.section-sidebar {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex: 0 0 auto;
    min-width: 0;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.26s cubic-bezier(0.25, 0.1, 0.25, 1) 0.04s, transform 0.26s cubic-bezier(0.25, 0.1, 0.25, 1) 0.04s;
}
.ial-specialist-wrapper.section-in-view .section-sidebar {
    opacity: 1;
    transform: translateY(0);
}
.section-sidebar-lines {
    position: relative;
    width: 18px;
    flex-shrink: 0;
    align-self: stretch;
}
.section-sidebar-lines::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--ial-orange);
    border-radius: 2px;
}
.section-sidebar-lines::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--ial-blue);
    border-radius: 2px;
}
.section-sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding-left: 16px;
    padding-top: 8px;
}
.section-sidebar-bubble {
    background: var(--ial-orange);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(245, 130, 32, 0.35);
}
.section-sidebar-logo {
    max-width: 140px;
}
.section-sidebar-logo img {
    width: 100%;
    height: auto;
    display: block;
}
.section-sidebar-photo {
    width: 100%;
    max-width: 260px;
    margin-top: 8px;
    border-radius: var(--ial-radius);
    overflow: hidden;
    box-shadow: 8px 8px 0 var(--ial-orange);
}
.section-sidebar-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.specialist-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.26s cubic-bezier(0.25, 0.1, 0.25, 1) 0.04s, transform 0.26s cubic-bezier(0.25, 0.1, 0.25, 1) 0.04s;
}
.ial-specialist-wrapper.section-in-view .specialist-image {
    opacity: 1;
    transform: translateY(0);
}
.specialist-image img {
    width: 100%;
    max-width: 720px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,21,41,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.specialist-image img:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 72px rgba(0,21,41,0.18);
}
/* Seções pares: tom azul suave */
.ial-specialist-wrapper:nth-of-type(even) .specialist-image img {
    box-shadow: 0 20px 60px rgba(27,109,169,0.14);
}
.ial-specialist-wrapper:nth-of-type(even) .specialist-image img:hover {
    box-shadow: 0 32px 72px rgba(27,109,169,0.22);
}

.specialist-text {
    flex: 1.5;
    min-width: 300px;
    max-width: 640px;
    overflow-wrap: break-word;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.26s cubic-bezier(0.25, 0.1, 0.25, 1) 0.08s, transform 0.26s cubic-bezier(0.25, 0.1, 0.25, 1) 0.08s;
}
.ial-specialist-wrapper.section-in-view .specialist-text {
    opacity: 1;
    transform: translateY(0);
}
.specialist-text h2 {
    color: var(--ial-dark);
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.specialist-text .subtitle {
    color: var(--ial-orange);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    text-transform: none;
    margin-bottom: 10px;
    display: block;
}
.specialist-text .subtitle::after {
    content: '';
    display: block;
    margin-top: 6px;
    width: 36px;
    height: 3px;
    background: var(--ial-orange);
    border-radius: 99px;
    opacity: 0.5;
}
.specialist-text p {
    color: var(--ial-text);
    line-height: 1.75;
    margin-bottom: 20px;
    font-size: 1rem;
}
.specialist-text p:first-of-type {
    padding-left: 0;
    border-left: none;
}
.specialist-text .subtitle + h2 + p,
.specialist-text h2 + p {
    padding-left: 14px;
    border-left: 3px solid rgba(245, 130, 32, 0.25);
    margin-left: 0;
}
.specialist-text p + .creds-list { margin-top: 16px; }
.specialist-text .creds-list + p { margin-top: 4px; }
.specialist-text .specialist-ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}
.specialist-text .specialist-ul li {
    color: var(--ial-text);
    line-height: 1.75;
    font-size: 1rem;
    padding-left: 28px;
    margin-bottom: 14px;
    position: relative;
}
.specialist-text .specialist-ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--ial-orange);
}
.specialist-text .list-avoid li::before {
    content: '✕';
    border: none;
    border-top: none;
    border-bottom: none;
    border-left: none;
    width: auto;
    height: auto;
    top: 0;
    color: #c53030;
    font-weight: bold;
}

/* Citação destacada nas seções */
.specialist-quote {
    margin-top: 28px;
    padding: 20px 24px 20px 24px;
    border-left: 3px solid var(--ial-orange);
    background: rgba(245,130,32,0.04);
    border-radius: 0 12px 12px 0;
    position: relative;
    font-style: italic;
    color: var(--ial-text);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
    box-shadow: none;
}
.specialist-quote::before {
    content: '"';
    position: absolute;
    left: 16px;
    top: 6px;
    font-size: 44px;
    line-height: 1;
    color: var(--ial-orange);
    opacity: 0.3;
    font-family: Georgia, serif;
}
.specialist-quote cite {
    display: block;
    margin-top: 12px;
    font-size: 0.85rem;
    font-style: normal;
    color: var(--ial-blue);
    font-weight: 600;
}

.creds-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 22px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.cred-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ial-dark);
    padding: 14px 18px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 21, 41, 0.1);
    border-left: 3px solid rgba(245, 130, 32, 0.5);
    transition: border-color var(--ial-transition), box-shadow var(--ial-transition);
}
.cred-item:hover {
    border-left-color: var(--ial-orange);
    border-color: rgba(27, 109, 169, 0.2);
    box-shadow: 0 2px 12px rgba(27, 109, 169, 0.06);
}
.cred-icon { color: var(--ial-orange); font-size: 1.1rem; flex-shrink: 0; }
.cred-icon-check { display: inline-flex; align-items: center; justify-content: center; line-height: 0; flex-shrink: 0; }
.cred-icon-check svg { display: block; flex-shrink: 0; width: 24px; height: 24px; }

/* ========== CTA POR SEÇÃO ========== */
.section-cta {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(27, 109, 169, 0.2);
    position: relative;
}
.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--ial-orange), transparent);
    border-radius: 0 2px 2px 0;
}
.section-cta-text {
    font-size: 0.95rem;
    color: var(--ial-text-light);
    margin-bottom: 16px;
    font-weight: 500;
}
.section-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--ial-orange);
    color: white !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background var(--ial-transition), box-shadow var(--ial-transition);
    box-shadow: 0 4px 16px rgba(245, 130, 32, 0.3);
}
.btn-cta-primary:hover {
    background: var(--ial-orange-hover);
    box-shadow: 0 6px 20px rgba(245, 130, 32, 0.4);
}
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(27, 109, 169, 0.12);
    color: #000 !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid var(--ial-blue);
    transition: border-color var(--ial-transition), color var(--ial-transition), background var(--ial-transition);
}
.btn-cta-secondary:hover,
.btn-cta-secondary:active,
.btn-cta-secondary:focus {
    background: var(--ial-blue);
    border-color: var(--ial-blue);
    color: #fff !important;
}
.btn-cta-secondary:active {
    background: var(--ial-blue-hover);
    border-color: var(--ial-blue-hover);
}
@media (max-width: 768px) {
    :root {
        --ial-header-height: 92px;
    }
    .hero-page {
        min-height: calc(100vh - var(--ial-header-height));
        margin-top: var(--ial-header-height);
        border-radius: 0 0 14px 14px;
    }
    .hero-page-video-wrap {
        position: absolute;
        inset: 0;
    }
    .hero-page-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .hero-page-inner { padding: 32px 5% 40px; }
    .hero-page-title { margin-bottom: 10px; }
    .hero-page-desc { margin-bottom: 20px; font-size: 0.9rem; }
    .hero-page-cta { flex-direction: column; gap: 10px; }
    .hero-page-cta .btn-cta-primary,
    .hero-page-cta .btn-cta-secondary { width: 100%; justify-content: center; }
    .process-steps { margin: 14px 0 18px; gap: 8px; }
    .process-step { padding: 10px 12px; font-size: 0.875rem; gap: 10px; }
    .process-step-num { width: 28px; height: 28px; font-size: 0.85rem; }
    .lgpd-note { font-size: 0.8rem; padding: 10px 12px; margin-top: 12px; }
    .section-cta-final .btn-cta-large { padding: 12px 20px; font-size: 0.9rem; }
    /* Mobile: 1600×1066 (800∶533) — proporção diferente do PC (1200×514) */
    .hero-ial {
        min-height: auto;
        height: auto;
        display: block;
        padding-top: var(--ial-header-height);
    }
    .hero-carousel {
        flex: none;
        min-height: 0;
        height: auto;
        border-radius: 0 0 14px 14px;
    }
    .hero-track {
        min-height: 0;
        height: auto;
        display: flex;
    }
    .hero-slide {
        min-height: 0;
        height: auto;
        aspect-ratio: 800 / 533;
        flex: 0 0 100%;
        width: 100%;
        background-position: center center;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .hero-slide.hero-banner-1 { background-image: url('media/banner/mobile/banner-1.jpeg'); }
    .hero-slide.hero-banner-2 { background-image: url('media/banner/mobile/banner-2.jpeg'); }
    .hero-slide.hero-banner-3 { background-image: url('media/banner/mobile/banner-3.jpeg'); }
    .hero-ial,
    .hero-carousel {
        border-radius: 0 0 14px 14px;
    }
    .hero-carousel-controls {
        padding: 0 4% 16px;
        gap: 6px;
        flex-wrap: nowrap;
    }
    .hero-arrow {
        display: flex;
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }
    .hero-arrow img {
        width: 20px;
        height: 20px;
    }
    .hero-progress-wrap {
        flex-wrap: nowrap;
        gap: 4px;
        min-width: 0;
        flex: 1 1 auto;
    }
    .hero-progress-seg {
        min-width: 0;
        flex: 1 1 0;
        max-width: none;
        height: 4px;
    }
    .ial-parceiros-logos {
        padding: 44px 0 52px;
    }
    .ial-parceiros-logos .parceiros-logos-title {
        margin-bottom: 28px;
        font-size: 1.25rem;
    }
    .parceiros-logos-row { gap: 24px; padding: 0 16px; }
    .parceiros-logos-item {
        width: 160px;
        height: 95px;
        padding: 0;
    }
    /* Seções compactas no mobile com bom espaço entre uma e outra */
    .ial-specialist-wrapper {
        flex-direction: column;
        text-align: left;
        padding: 40px 5% 52px;
        gap: 20px;
    }
    .hero-ial + .ial-specialist-wrapper { padding-top: 44px; margin-top: 0; }
    .ial-specialist-wrapper.reverse { flex-direction: column; }
    .section-with-sidebar { gap: 28px; }
    .section-sidebar {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    .section-sidebar-lines {
        width: 18px;
        height: 48px;
        align-self: center;
        flex-shrink: 0;
    }
    .section-sidebar-lines::before {
        bottom: 0;
        height: 100%;
    }
    .section-sidebar-lines::after {
        bottom: 0;
        height: 100%;
    }
    .section-sidebar-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding-left: 0;
        padding-top: 0;
    }
    .section-sidebar-logo { max-width: 100px; }
    .section-sidebar-photo { max-width: 200px; margin-top: 12px; box-shadow: 6px 6px 0 var(--ial-orange); }
    .specialist-image {
        min-width: 0;
        max-width: 320px;
        margin: 0 auto;
    }
    .specialist-image img {
        max-width: 320px;
        box-shadow: 8px 8px 0 var(--ial-orange);
    }
    .ial-specialist-wrapper:nth-of-type(even) .specialist-image img {
        box-shadow: 8px 8px 0 var(--ial-blue);
    }
    .specialist-text { text-align: left; max-width: none; }
    .specialist-text h2 {
        font-size: 1.05rem;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    .specialist-text .subtitle {
        font-size: 0.7rem;
        margin-bottom: 6px;
        letter-spacing: 0.03em;
    }
    .specialist-text .subtitle::after { margin-top: 4px; width: 28px; height: 2px; }
    .specialist-text p {
        font-size: 0.8125rem;
        margin-bottom: 8px;
        line-height: 1.5;
    }
    .specialist-text .subtitle + h2 + p,
    .specialist-text h2 + p {
        padding-left: 10px;
        border-left-width: 2px;
    }
    .specialist-text .specialist-ul { margin: 0 0 12px 0; }
    .specialist-text .specialist-ul li {
        font-size: 0.8125rem;
        padding-left: 22px;
        margin-bottom: 10px;
        line-height: 1.5;
    }
    .specialist-text .specialist-ul li::before {
        border-top-width: 4px;
        border-bottom-width: 4px;
        border-left-width: 6px;
        top: 0.5em;
    }
    .specialist-quote {
        margin-top: 12px;
        padding: 10px 12px 10px 16px;
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    .specialist-quote::before { font-size: 22px; left: 10px; top: 2px; }
    .specialist-quote cite { margin-top: 6px; font-size: 0.7rem; }
    .creds-list {
        grid-template-columns: 1fr;
        gap: 10px 0;
        margin-top: 14px;
        margin-bottom: 14px;
    }
    .cred-item {
        padding: 10px 14px;
        font-size: 0.8125rem;
        gap: 12px;
    }
    .cred-icon, .cred-icon-check svg { width: 20px; height: 20px; }
    .section-cta { margin-top: 14px; padding-top: 14px; }
    .section-cta-text { font-size: 0.8rem; margin-bottom: 8px; }
    .section-cta-buttons { gap: 6px; flex-direction: column; align-items: stretch; }
    .btn-cta-primary {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    .btn-cta-secondary {
        padding: 7px 14px;
        font-size: 0.75rem;
    }
    .btn-cta-primary, .btn-cta-secondary { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .specialist-image img:hover { transform: none; }
    .btn-back-top.visible { transform: translateY(0); animation: none; }
    .btn-back-top.visible::before,
    .btn-back-top.visible::after { animation: none; }
    .ial-specialist-wrapper,
    .ial-specialist-wrapper .specialist-image,
    .ial-specialist-wrapper .specialist-text,
    .ial-blog { opacity: 1; transform: none; }
}

/* ========== BOTÃO WHATSAPP FLUTUANTE ========== */
.whatsapp-float-wrap {
    position: fixed;
    bottom: 24px;
    right: 100px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.whatsapp-float-wrap.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.whatsapp-float-wrap.visible .whatsapp-float-bubble {
    opacity: 1;
    transform: translateX(0);
}
.whatsapp-float-bubble {
    max-width: 220px;
    padding: 10px 14px;
    background: #fff;
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.35;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    white-space: normal;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative;
    flex-shrink: 0;
}
.whatsapp-float-bubble::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
    box-shadow: 2px -2px 4px rgba(0,0,0,0.06);
}
@keyframes whatsapp-wave {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.35); opacity: 0; }
}
@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 6px rgba(37, 211, 102, 0); }
}

.btn-back-top {
    position: relative;
    flex-shrink: 0;
    bottom: auto;
    right: auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background var(--ial-transition);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}
.btn-back-top::before,
.btn-back-top::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: #25D366;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}
.btn-back-top.visible::before,
.btn-back-top.visible::after {
    animation: whatsapp-wave 2s ease-out infinite;
}
.btn-back-top.visible::after {
    animation-delay: 1s;
}
.btn-back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}
.btn-back-top:hover {
    background: #20bd5a;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    animation: none;
}
.btn-back-top:focus-visible { outline: 2px solid white; outline-offset: 2px; }
.btn-back-top svg { width: 24px; height: 24px; position: relative; z-index: 1; }

/* WhatsApp flutuante — mobile: balão em cima (mais alto), botão fixo embaixo na posição original */
@media (max-width: 768px) {
    .whatsapp-float-wrap {
        bottom: calc(env(safe-area-inset-bottom, 0px) + 24px);
        right: calc(env(safe-area-inset-right, 0px) + 88px);
        left: auto;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 24px;
        align-items: flex-end;
        max-width: calc(100vw - 24px);
    }
    .whatsapp-float-wrap .whatsapp-float-bubble {
        order: 1;
        align-self: flex-end;
    }
    .whatsapp-float-wrap .btn-back-top {
        order: 2;
        align-self: flex-end;
    }
    .whatsapp-float-wrap.visible .whatsapp-float-bubble {
        transform: translateY(0);
    }
    .whatsapp-float-bubble {
        max-width: min(200px, calc(100vw - 100px));
        padding: clamp(8px, 2vw, 12px) clamp(10px, 2.5vw, 14px);
        font-size: clamp(12px, 2.8vw, 14px);
        line-height: 1.35;
        border-radius: clamp(10px, 2.5vw, 14px);
        transform: translateY(6px);
        text-align: left;
        margin: 0;
        display: inline-flex;
        align-items: center;
    }
    /* Rabinho do balão apontando para o centro do ícone WhatsApp (para baixo, alinhado ao botão) */
    .whatsapp-float-bubble::after {
        left: auto;
        right: 22px;
        top: auto;
        bottom: -6px;
        width: 12px;
        height: 12px;
        transform: rotate(45deg);
        box-shadow: 2px 2px 4px rgba(0,0,0,0.06);
    }
    .btn-back-top {
        width: clamp(44px, 12vmin, 52px);
        height: clamp(44px, 12vmin, 52px);
        flex-shrink: 0;
    }
    .btn-back-top svg {
        width: clamp(20px, 5.5vmin, 24px);
        height: clamp(20px, 5.5vmin, 24px);
    }
}

/* ========== SEÇÃO ÚLTIMAS NOTÍCIAS ========== */
.ial-blog {
    padding: 96px 7% 80px;
    background: var(--ial-bg-alt);
    font-family: 'Poppins', sans-serif;
    width: 100%;
    min-width: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.32s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.32s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.ial-blog.section-in-view {
    opacity: 1;
    transform: translateY(0);
}
.blog-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}
.blog-section-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 40px;
}
.blog-section-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--ial-dark);
    margin-bottom: 0;
    letter-spacing: -0.02em;
    text-align: left;
}
.blog-section-title::after {
    content: '';
    display: block;
    margin-top: 12px;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--ial-orange), transparent);
    border-radius: 2px;
}
.blog-section-header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.blog-cta-inline {
    white-space: nowrap;
}
.blog-link-ver-todas {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ial-blue);
    text-decoration: none;
}
.blog-link-ver-todas:hover {
    color: var(--ial-orange);
    text-decoration: underline;
}
/* Caixa CTA ao final da seção Últimas Notícias */
.blog-cta-box {
    margin-top: 48px;
    padding: 32px 36px;
    background: linear-gradient(135deg, rgba(245, 130, 32, 0.08) 0%, rgba(27, 109, 169, 0.06) 100%);
    border: 1px solid rgba(245, 130, 32, 0.25);
    border-radius: var(--ial-radius);
    text-align: center;
}
.blog-cta-box-title {
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    font-weight: 700;
    color: var(--ial-dark);
    margin-bottom: 8px;
}
.blog-cta-box-text {
    font-size: 0.95rem;
    color: var(--ial-text);
    margin-bottom: 20px;
}
.blog-cta-box-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.blog-cta-box-buttons .btn-ial { min-width: 160px; }
.blog-cta-whatsapp { background: #25D366; border-color: #25D366; color: #fff !important; }
.blog-cta-whatsapp:hover { background: #20bd5a; border-color: #20bd5a; color: #fff !important; filter: brightness(1.05); }
/* Notícia principal (destaque): imagem à esquerda, texto à direita */
.blog-card-main {
    margin-bottom: 32px;
}
.blog-card {
    background: var(--ial-bg);
    border-radius: var(--ial-radius);
    overflow: hidden;
    box-shadow: var(--ial-shadow);
    transition: box-shadow var(--ial-transition);
}
.blog-card:hover {
    box-shadow: 0 8px 32px rgba(0, 21, 41, 0.1);
}
.blog-card-link {
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    color: inherit;
    min-height: 200px;
}
.blog-card-image {
    flex: 0 0 42%;
    min-width: 260px;
    min-height: 200px;
    overflow: hidden;
    border-radius: var(--ial-radius) 0 0 var(--ial-radius);
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-card-content {
    flex: 1 1 50%;
    min-width: 0;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-card-category {
    font-size: 0.8rem;
    color: var(--ial-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}
.blog-card-title {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--ial-orange);
    margin-bottom: 10px;
    transition: color var(--ial-transition);
}
.blog-card-link:hover .blog-card-title {
    color: var(--ial-orange-hover);
}
.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--ial-text);
    line-height: 1.55;
    margin-bottom: 14px;
}
.blog-card-divider {
    border: none;
    height: 1px;
    background: var(--ial-border);
    margin: 0 0 12px 0;
}
.blog-card-meta {
    font-size: 0.8rem;
    color: var(--ial-text-light);
    font-weight: 500;
}
/* Outras notícias: em linha horizontal (pequenas) */
.blog-others {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    align-items: stretch;
}
/* Cards extras: só aparecem no mobile */
.blog-card-mobile-only {
    display: none;
}
.blog-card-small {
    flex: 1 1 0;
    min-width: 220px;
}
.blog-card-small .blog-card-link {
    flex-direction: column;
    min-height: 0;
}
.blog-card-small .blog-card-image {
    flex: none;
    width: 100%;
    min-width: 0;
    min-height: 140px;
    border-radius: var(--ial-radius) var(--ial-radius) 0 0;
}
.blog-card-small .blog-card-content {
    padding: 16px 18px;
    flex: 1;
}
.blog-card-small .blog-card-title {
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.blog-card-small .blog-card-excerpt {
    display: none;
}
.blog-card-small .blog-card-divider {
    margin: 8px 0 6px 0;
}
.blog-card-small .blog-card-meta {
    font-size: 0.75rem;
}
@media (max-width: 900px) {
    .blog-card-main .blog-card-link {
        flex-direction: column;
        min-height: 0;
    }
    .blog-card-main .blog-card-image {
        flex: none;
        width: 100%;
        min-width: 0;
        min-height: 200px;
        border-radius: var(--ial-radius) var(--ial-radius) 0 0;
    }
    .blog-card-main .blog-card-content {
        padding: 20px 22px;
    }
    .blog-others {
        flex-direction: column;
        display: flex;
    }
    .blog-card-small {
        min-width: 0;
        flex: 0 0 auto;
    }
    .blog-card-small .blog-card-link {
        flex-direction: row;
    }
    .blog-card-small .blog-card-image {
        flex: 0 0 120px;
        min-height: 100px;
        border-radius: var(--ial-radius) 0 0 var(--ial-radius);
    }
}
@media (max-width: 768px) {
    .ial-blog {
        padding: 28px 5% 36px;
        overflow: visible;
    }
    .blog-inner {
        overflow: visible;
    }
    .blog-section-header { margin-bottom: 18px; }
    .blog-section-title {
        font-size: 1.25rem;
        margin-bottom: 0;
    }
    .blog-section-title::after { margin-top: 6px; width: 28px; height: 2px; }
    .blog-section-header-cta { width: 100%; justify-content: flex-start; }
    .blog-cta-box { margin-top: 28px; padding: 22px 20px; }
    .blog-cta-box-title { font-size: 1.1rem; }
    .blog-cta-box-buttons { flex-direction: column; }
    .blog-cta-box-buttons .btn-ial { width: 100%; min-width: 0; }
    .blog-card-main {
        margin-bottom: 14px;
        border-radius: 10px;
    }
    .blog-card-main .blog-card-content {
        padding: 14px 16px;
    }
    .blog-card-main .blog-card-image {
        min-height: 140px;
        border-radius: 10px 10px 0 0;
    }
    .blog-others {
        gap: 10px;
        flex-direction: column;
        overflow: visible;
    }
    .blog-card {
        border-radius: 10px;
    }
    .blog-card-small {
        flex: 0 0 auto;
        min-height: 0;
    }
    .blog-card-title { font-size: 0.95rem; margin-bottom: 6px; }
    .blog-card-excerpt { font-size: 0.8rem; margin-bottom: 8px; line-height: 1.45; }
    .blog-card-divider { margin: 6px 0 8px 0; }
    .blog-card-meta { font-size: 0.75rem; }
    .blog-card-small .blog-card-title { font-size: 0.85rem; margin-bottom: 4px; }
    .blog-card-small .blog-card-content { padding: 10px 12px; }
    .blog-card-small .blog-card-divider { margin: 4px 0 4px 0; }
    .blog-card-small .blog-card-meta { font-size: 0.7rem; }
    .blog-card-small .blog-card-link {
        flex-direction: column;
        min-height: 0;
    }
    .blog-card-small .blog-card-image {
        flex: none;
        width: 100%;
        min-height: 88px;
        border-radius: 10px 10px 0 0;
    }
    /* No mobile: exibir os cards extras de notícia */
    .blog-card-mobile-only {
        display: block !important;
    }
}

/* ========== FOOTER ========== */
.ial-footer {
    background: linear-gradient(180deg, #001529 0%, #0a1929 100%);
    color: white;
    padding: 80px 8% 36px;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    min-width: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 48px;
}
.logo-footer {
    width: 200px;
    height: auto;
    margin-bottom: 24px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}
.footer-a12 { margin-top: 28px; }
.footer-a12 .label { font-size: 0.7rem; color: var(--ial-orange); font-weight: 700; letter-spacing: 0.06em; margin-bottom: 8px; }
.footer-a12 img { width: 110px; }
.footer-col h4 {
    color: var(--ial-orange);
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.footer-col p { font-size: 0.95rem; opacity: 0.88; line-height: 1.75; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
    color: white;
    text-decoration: none;
    opacity: 0.88;
    transition: color var(--ial-transition), opacity var(--ial-transition);
}
.footer-col a:hover { color: var(--ial-orange); opacity: 1; }
.footer-contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.footer-contact-line img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.footer-col ul, .footer-col p { overflow-wrap: break-word; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: left; gap: 40px; }
    .logo-footer { margin: 0 auto 20px auto; display: block; }
    .footer-a12 { display: flex; flex-direction: column; align-items: flex-start; }
    .btn-back-top { bottom: 20px; right: 20px; width: 48px; height: 48px; }
}
