/**
 * CSS Principal do Site
 * Eternum Dei
 */

/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-color: #94c4f0;
    --brand-color-dark: #123544;
    --brand-color-darker: #030d14;
    --primary-color: #123544;
    --secondary-color: #3a6d85;
    --text-color: #4d5a62;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --transition: all 0.3s ease;
    --section-heading-size: 40px;
    --section-heading-size-tablet: 34px;
    --section-heading-size-mobile: 28px;
    --section-heading-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

body.video-modal-open {
    overflow: hidden;
}

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

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

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    position: relative;
    z-index: 1000;
    margin-bottom: 0 !important;
    border-bottom: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Evita o menu central (flex:1) encolher a logo até sumir em viewports estreitos */
.header .logo,
.header .social-icons {
    flex-shrink: 0;
}

.header .logo {
    line-height: 0;
    position: relative;
    z-index: 2;
}

/* Logo do header: altura limitada para não “inchar” a barra (flex alinha pela maior altura) */
.header .logo .logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    max-height: 62px;
}

.header .logo img,
.header .logo .logo-link img {
    display: block;
    width: auto;
    height: 56px;
    max-height: 58px;
    max-width: 152px;
    min-width: 0;
    object-fit: contain;
    object-position: left center;
    flex-shrink: 0;
}

.mobile-menu-logo img,
.mobile-menu-logo .logo-link img {
    max-width: 180px;
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-color);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--brand-color-dark);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--brand-color-dark);
}

.nav-menu a.active::after {
    width: 100%;
    background: var(--brand-color);
}

.nav-menu .nav-dropdown {
    position: relative;
}

/* Ponte invisível para manter :hover ao ir do link ao painel (desktop) */
.nav-menu .nav-dropdown::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: 140%;
    max-width: 280px;
    height: 18px;
    z-index: 299;
}

.nav-menu .nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown-caret {
    font-size: 10px;
    opacity: 0.75;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown.is-open .nav-dropdown-caret,
.nav-dropdown.is-active .nav-dropdown-caret {
    transform: rotate(180deg);
}

.nav-dropdown-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    padding: 8px 0;
    margin-top: 10px;
    background: var(--white);
    box-shadow: 0 16px 48px rgba(47, 70, 95, 0.18);
    border-radius: 14px;
    z-index: 300;
    border: 1px solid rgba(47, 70, 95, 0.08);
}

.nav-dropdown-panel::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    margin-left: -7px;
    border: 7px solid transparent;
    border-bottom-color: var(--white);
    filter: drop-shadow(0 -1px 0 rgba(47, 70, 95, 0.06));
}

/* Desktop: submenu só com hover (não usar is-active/is-open para abrir o painel) */
@media (min-width: 769px) {
    .header .nav-menu .nav-dropdown .nav-dropdown-panel {
        display: none !important;
    }

    .header .nav-menu .nav-dropdown:hover .nav-dropdown-panel {
        display: block !important;
    }
}

.nav-dropdown-panel .nav-dropdown-link {
    display: block;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.nav-dropdown-panel .nav-dropdown-link:hover {
    color: var(--primary-color);
    background: rgba(47, 70, 95, 0.05);
}

.nav-dropdown-panel .nav-dropdown-link.active {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-color);
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    background: #7aaed8;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(18, 53, 68, 0.22);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
}

.close-menu {
    display: none;
}

.mobile-menu-logo {
    display: none;
}

/* Floating Sidebar */
.floating-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
}

.floating-sidebar.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sidebar-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-color);
    color: var(--brand-color-dark);
    font-size: 22px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.sidebar-icon:hover {
    background: #7aaed8;
    color: var(--brand-color-dark);
    transform: scale(1.1);
}

/* Slider */
.slider-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0 !important;
    margin-top: 0 !important;
    padding: 0;
    line-height: 0;
}

.header + .slider-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.slider-container {
    position: relative;
    width: 100%;
    height: clamp(320px, 34vw, 600px);
    margin: 0;
    padding: 0;
    line-height: 0;
    background: #ffffff;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.slide a,
.slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    background: #ffffff;
    margin: 0;
    padding: 0;
}

/* Setas de navegação do slider */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 43, 60, 0.78);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0.8;
}

.slider-arrow:hover {
    background: rgba(47, 70, 95, 0.9);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-prev {
    left: 20px;
}

.slider-arrow-next {
    right: 20px;
}

/* Mobile: setas menores e mais discretas */
@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-arrow-prev {
        left: 10px;
    }
    
    .slider-arrow-next {
        right: 10px;
    }
}

/* About Section */
.about-section {
    /*padding: 50px 0;*/
    margin-top: 0;
    background: var(--white);
    padding: 50px 0 30px;
}

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

.about-text h2 {
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: none;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    position: relative;
    text-align: justify;
}

.about-image img {
    border-radius: 15px;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    background: #ffffff;
}

.about-slider {
    position: relative;
    width: 100%;
    min-height: 340px;
    overflow: hidden;
    border-radius: 15px;
    background: #ffffff;
}

.about-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
    pointer-events: none;
}

.about-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.about-slide img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: contain;
    background: #ffffff;
}

.about-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(26, 43, 60, 0.82);
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
}

.about-arrow:hover {
    background: rgba(47, 70, 95, 0.95);
}

.about-arrow-prev {
    left: 12px;
}

.about-arrow-next {
    right: 12px;
}

/* Gallery Section */
.gallery-section {
    padding: 24px 0 30px;
    background: var(--white);
}

.section-title {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 20px;
}

.section-title::after {
    content: none;
}

.about-text h2,
.section-title,
.videos-header h2,
.photo-gallery-header h2,
.contact-form-header h2 {
    font-family: var(--section-heading-font);
    font-size: var(--section-heading-size);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.4px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    height: 100%;
}

.gallery-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.gallery-image-link {
    display: block;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.15);
}

.gallery-card img {
    width: 100%;
    height: auto;
    display: block;
    background: #ffffff;
}

.gallery-card-body {
    padding: 18px 18px 20px;
}

.gallery-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #334155;
    margin-bottom: 10px;
}

.gallery-title {
    font-size: 20px;
    line-height: 1.15;
    color: #0f172a;
    margin: 0 0 14px;
}

.gallery-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery-meta p {
    margin: 0;
    color: #334155;
    font-size: 16px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-meta i {
    color: #94c4f0;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* CTA Section */
/* CTA Section - Clean Design */
.cta-section {
    padding: 20px 0 34px;
    background: #ffffff;
}

.cta-container {
    width: 100%;
}

.home-cta-shell {
    overflow: hidden;
}

.split-cta-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    align-items: stretch;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e8eef5;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.split-cta-box-home {
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
}

.split-cta-content {
    padding: 28px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.split-cta-text h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #123544;
    letter-spacing: -0.3px;
}

.split-cta-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.split-cta-action {
    flex-shrink: 0;
}

.split-cta-media {
    min-height: 190px;
    overflow: hidden;
}

.split-cta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-cta-media-left {
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}

.split-cta-media-right {
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.home-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
    gap: 36px;
    align-items: center;
}

.home-cta-media {
    position: relative;
    margin-left: calc(50% - 50vw + 48px);
    align-self: stretch;
}

.home-cta-media-inner {
    position: relative;
    min-height: 520px;
    height: 520px;
    overflow: hidden;
    border-radius: 0 84px 84px 0;
    border: 1px solid #eef2f7;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    background: #ffffff;
    isolation: isolate;
}

.home-cta-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    background: #ffffff;
    object-position: 20% center;
}

.cta-media-contact-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 92px 40px 26px;
    background: linear-gradient(180deg, rgba(4, 14, 24, 0) 0%, rgba(4, 14, 24, 0.22) 26%, rgba(4, 14, 24, 0.82) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 2;
}

.cta-media-contact-list {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 0;
}

.cta-media-contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 180px;
    position: relative;
}

.cta-media-contact-item + .cta-media-contact-item {
    margin-left: 34px;
    padding-left: 34px;
}

.cta-media-contact-item + .cta-media-contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 2px;
    height: 54px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 999px;
}

.cta-media-contact-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-media-contact-value {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    word-break: break-word;
}

a.cta-media-contact-value:hover {
    color: #d8f2ff;
}

.home-cta-media .cta-media-contact-overlay {
    text-align: right;
}

.home-cta-media .cta-media-contact-list {
    justify-content: flex-end;
}

.home-cta-media .cta-media-contact-item {
    align-items: flex-end;
}

.home-cta-content {
    background: transparent;
    padding: 0 16px 0 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    align-self: center;
    min-height: 520px;
}

.home-cta-text {
    width: 100%;
}

.home-cta-text h2 {
    font-size: 30px;
    line-height: 1.12;
    color: var(--text-color);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.home-cta-text p {
    font-size: 15px;
    line-height: 1.55;
    color: #475569;
}

.home-cta-action {
    width: 100%;
}

.home-cta-align-left {
    align-items: flex-start;
    text-align: left;
}

.home-cta-align-center {
    align-items: center;
    text-align: center;
}

.home-cta-align-right {
    align-items: flex-end;
    text-align: right;
}

.home-cta-align-left .home-cta-action {
    display: flex;
    justify-content: flex-start;
}

.home-cta-align-center .home-cta-action {
    display: flex;
    justify-content: center;
}

.home-cta-align-right .home-cta-action {
    display: flex;
    justify-content: flex-end;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 13px 22px;
    background: #123544;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 999px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(26, 43, 60, 0.2);
    white-space: nowrap;
}

.cta-btn:hover {
    background: #142231;
    transform: translateY(-2px);
}

.cta-btn i {
    font-size: 17px;
}

/* Photo Gallery Section */
.photo-gallery-section {
    padding: 5px 0 25px;
    background: #ffffff;
}

.photo-gallery-section + .photo-gallery-section {
    padding-top: 8px;
}

.photo-gallery-cta {
    padding: 0 0 60px;
    text-align: center;
    background: #ffffff;
}

/* Videos Section */
.videos-section {
    padding: 45px 0 30px;
    background: #f8fafc;
}

.videos-page-section {
    min-height: 65vh;
}

.videos-header {
    text-align: center;
    margin-bottom: 35px;
}

.videos-header h2 {
    font-size: 40px;
    color: var(--text-color);
    margin-bottom: 12px;
}

.videos-header p {
    color: #5f6b76;
    font-size: 18px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 20px;
}

.video-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0f172a;
}

.video-thumb iframe,
.video-thumb video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-thumb-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.video-thumb-button {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.video-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.78);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Modal de vídeo */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal-dialog {
    width: min(980px, 100%);
    background: #0f172a;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.video-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
}

.video-modal-body {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-modal-body iframe,
.video-modal-body video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-card h3 {
    font-size: 13px;
    color: #0f172a;
    padding: 0;
    line-height: 1.4;
    min-height: auto;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
}

.video-card h3::before {
    content: "\f144";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    color: #1d4ed8;
    opacity: 0.9;
}

.video-card-body {
    padding: 12px 12px 14px;
}

.video-subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #334155;
    font-weight: 600;
    padding-left: 19px;
}

.videos-more {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.videos-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    color: #fff;
    background: #123544;
    border: 1px solid #123544;
    transition: var(--transition);
}

.videos-more-btn:hover {
    background: #142231;
    transform: translateY(-2px);
}

.videos-more-btn-secondary {
    background: #ffffff;
    color: #123544;
}

.videos-more-btn-secondary:hover {
    background: #eef2f7;
}

.home-services-section {
    padding: 34px 0 44px;
    background: #ffffff;
}

.home-services-header {
    text-align: center;
    margin-bottom: 36px;
}

.home-services-header h2 {
    font-size: 40px;
    color: var(--text-color);
    letter-spacing: -0.3px;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px 26px;
}

.home-service-card {
    text-align: center;
    color: var(--text-color);
}

.home-service-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-color);
}

.home-service-icon i {
    font-size: 46px;
}

.home-service-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: none;
}

.home-service-card h3 {
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
    color: var(--text-color);
    max-width: 230px;
    margin: 0 auto;
}

/* Home Quem Somos */
.home-about-section {
    padding: 30px 0 46px;
    background: #ffffff;
}

.home-about-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 42px;
    align-items: center;
}

.home-about-media {
    background: #f8fafc;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e7edf5;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-about-image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: contain;
    display: block;
    background: #f8fafc;
}

.home-about-content h2 {
    font-size: 38px;
    color: var(--text-color);
    margin-bottom: 18px;
    line-height: 1.12;
    letter-spacing: -0.4px;
}

.home-about-text {
    color: #475569;
    font-size: 17px;
    line-height: 1.8;
    text-align: justify;
    position: relative;
}

.home-about-text p {
    margin-bottom: 0;
}

.home-about-text p:last-child {
    margin-bottom: 0;
}

.home-about-text > *:first-child {
    position: relative;
    z-index: 1;
}

.home-about-text > *:first-child::before {
    content: '“';
    position: absolute;
    left: -42px;
    top: -18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 118px;
    line-height: 1;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.10);
    pointer-events: none;
    z-index: -1;
}

.home-about-action {
    margin-top: 24px;
}

/* Quem Somos page - Missao, Visao, Valores */
.leaders-section {
    padding: 18px 0 28px;
    background: #ffffff;
}

.leaders-section .container {
    max-width: 1380px;
}

.leaders-carousel {
    --leaders-per-view: 6;
    --leaders-gap: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.leaders-carousel.is-auto .leaders-arrow {
    display: none;
}

.leaders-viewport {
    overflow: hidden;
    width: 100%;
}

.leaders-track {
    display: flex;
    gap: var(--leaders-gap);
    transition: transform 0.45s ease;
    will-change: transform;
}

.leader-card {
    flex: 0 0 calc((100% - (var(--leaders-per-view) - 1) * var(--leaders-gap)) / var(--leaders-per-view));
    text-align: center;
    padding: 8px 4px;
}

.leader-avatar-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.leader-avatar {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.leader-card h3 {
    font-size: 17px;
    line-height: 1.15;
    text-transform: uppercase;
    color: #111827;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.leader-instagram {
    display: inline-block;
    color: #64748b;
    font-size: 14px;
    text-decoration: none;
}

a.leader-instagram:hover {
    color: #123544;
}

.leaders-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #123544;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
}

.leaders-arrow:hover {
    background: #142231;
    transform: translateY(-2px);
}

.leaders-arrow.is-hidden {
    visibility: hidden;
    pointer-events: none;
}

.mvv-section {
    padding: 16px 0 48px;
    background: #ffffff;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.mvv-card {
    background: #ffffff;
    border: 1px solid #e6ebf2;
    border-radius: 16px;
    padding: 22px 22px 20px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.mvv-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #123544;
    font-size: 19px;
    margin-bottom: 14px;
}

.mvv-card h3 {
    font-size: 22px;
    color: #123544;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.mvv-card p {
    color: #475569;
    line-height: 1.65;
    font-size: 15px;
}

.testimonials-section {
    padding: 20px 0 60px;
    background: #ffffff;
}

.testimonials-section .container {
    max-width: 1380px;
}

.testimonials-carousel {
    --cards-per-view: 3;
    --testimonial-gap: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonials-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: var(--testimonial-gap);
    transition: transform 0.45s ease;
    will-change: transform;
}

.testimonial-card {
    background: #123544;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.10);
    height: 100%;
    flex: 0 0 calc((100% - (var(--cards-per-view) - 1) * var(--testimonial-gap)) / var(--cards-per-view));
}

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

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ffffff;
    background: transparent;
    padding: 0;
}

.testimonial-text {
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.65;
}

.testimonial-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
}

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    color: #f59e0b;
    font-size: 14px;
}

.testimonials-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #123544;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
}

.testimonials-arrow:hover {
    background: #142231;
    transform: translateY(-2px);
}

.testimonials-arrow.is-hidden {
    visibility: hidden;
    pointer-events: none;
}

/* CTA clean da página Quem Somos */
.about-cta-clean-section {
    padding: 18px 0 60px;
    background: #ffffff;
}

.about-cta-shell {
    overflow: hidden;
}

.about-cta-card {
    display: grid;
    grid-template-columns: minmax(340px, 440px) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.about-cta-content {
    background: transparent;
    padding: 0 0 0 16px;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    align-self: center;
    min-height: 520px;
}

.about-cta-text {
    width: 100%;
}

.about-cta-text h2 {
    font-size: 30px;
    line-height: 1.12;
    color: var(--text-color);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.about-cta-text p {
    font-size: 15px;
    line-height: 1.55;
    color: #475569;
}

.about-cta-action {
    width: 100%;
}

.about-cta-align-left {
    align-items: flex-start;
    text-align: left;
}

.about-cta-align-center {
    align-items: center;
    text-align: center;
}

.about-cta-align-right {
    align-items: flex-end;
    text-align: right;
}

.about-cta-align-left .about-cta-action {
    display: flex;
    justify-content: flex-start;
}

.about-cta-align-center .about-cta-action {
    display: flex;
    justify-content: center;
}

.about-cta-align-right .about-cta-action {
    display: flex;
    justify-content: flex-end;
}

.about-cta-media {
    position: relative;
    margin-right: calc(50% - 50vw + 48px);
    align-self: stretch;
}

.about-cta-media-inner {
    position: relative;
    min-height: 520px;
    height: 520px;
    overflow: hidden;
    border-radius: 84px 0 0 84px;
    border: 1px solid #eef2f7;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    background: #ffffff;
    isolation: isolate;
}

.about-cta-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    background: #ffffff;
    object-position: 80% center;
}

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

.photo-gallery-header h2 {
    font-size: 42px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.photo-gallery-header p {
    font-size: 20px;
    color: #666;
}

.photo-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    overflow: hidden;
}

.photo-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-carousel-item {
    flex: 0 0 calc(25% - 15px);
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.photo-carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.photo-carousel-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.photo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 43, 60, 0.92);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.photo-arrow:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.photo-arrow-prev {
    left: 0;
}

.photo-arrow-next {
    right: 0;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--primary-color);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-arrow:hover {
    background: var(--primary-color);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 70px 0 40px;
    background: #ffffff;
}

.contact-form-shell {
    overflow: hidden;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: minmax(340px, 440px) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.contact-form-header {
    text-align: left;
    margin-bottom: 22px;
}

.contact-form-header h2 {
    font-size: 30px;
    color: #0f172a;
    margin-bottom: 10px;
    max-width: none;
    white-space: nowrap;
    line-height: 1.12;
}

.contact-form-header p {
    font-size: 15px;
    color: #475569;
    max-width: none;
    margin: 0;
    line-height: 1.45;
}

.contact-form-container {
    background: var(--white);
    padding: 24px 28px;
    border-radius: 28px;
    border: 1px solid #eef2f7;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    align-self: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-form .form-group label i {
    color: var(--primary-color);
    font-size: 18px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d7dee7;
    border-radius: 14px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    background: #f8fafc;
    color: #0f172a;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(47, 176, 227, 0.14);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 88px;
}

.form-submit {
    text-align: left;
    margin-top: 2px;
}

.btn-contact-submit {
    background: #123544;
    color: var(--white);
    border: none;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    box-shadow: 0 16px 30px rgba(27, 164, 218, 0.22);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.btn-contact-submit:hover {
    background: #142231;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(26, 43, 60, 0.24);
}

.btn-contact-submit:active {
    transform: translateY(-1px);
}

.btn-contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.contact-side-visual {
    position: relative;
    margin-right: calc(50% - 50vw);
    align-self: start;
}

.contact-side-visual-inner {
    position: relative;
    height: 520px;
    min-height: 520px;
    overflow: hidden;
    border-radius: 84px 0 0 84px;
    border: 1px solid #eef2f7;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    isolation: isolate;
}

.contact-side-visual-inner::before,
.contact-side-visual-inner::after {
    content: '';
    position: absolute;
    left: -58px;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: #ffffff;
    z-index: 2;
}

.contact-side-visual-inner::before {
    display: none;
}

.contact-side-visual-inner::after {
    bottom: 52px;
}

.contact-side-visual img {
    width: 100%;
    height: 520px;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.contact-side-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 90px 44px 24px;
    background: linear-gradient(180deg, rgba(4, 14, 24, 0) 0%, rgba(4, 14, 24, 0.25) 24%, rgba(4, 14, 24, 0.82) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 3;
}

.contact-side-info-list {
    display: flex;
    gap: 0;
    align-items: flex-end;
    flex-wrap: wrap;
}

.contact-side-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 180px;
    position: relative;
}

.contact-side-info-item + .contact-side-info-item {
    margin-left: 34px;
    padding-left: 34px;
}

.contact-side-info-item + .contact-side-info-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 2px;
    height: 54px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 999px;
}

.contact-side-info-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-side-info-value {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    word-break: break-word;
}

a.contact-side-info-value:hover {
    color: #d8f2ff;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Form Responsive */
@media (max-width: 1200px) {
    .contact-form-layout {
        grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
        gap: 36px;
    }

    .contact-side-visual-inner,
    .contact-side-visual img {
        height: 460px;
        min-height: 460px;
    }

    .home-services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 28px 20px;
    }

    .home-cta-card {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
        gap: 36px;
    }

    .home-cta-media-inner,
    .home-cta-media img {
        height: 460px;
        min-height: 460px;
    }

    .about-cta-card {
        grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
        gap: 36px;
    }

    .about-cta-media-inner,
    .about-cta-media img {
        height: 460px;
        min-height: 460px;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 40px 0 30px;
    }

    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form-header {
        text-align: left;
        margin-bottom: 24px;
    }

    .contact-form-header h2 {
        max-width: none;
        white-space: normal;
    }

    .contact-form-container {
        padding: 28px 20px;
        order: 2;
    }

    .contact-side-visual {
        order: 1;
        margin-right: 0;
    }

    .contact-side-visual-inner,
    .contact-side-visual img {
        min-height: 340px;
        border-radius: 28px;
    }

    .contact-side-visual-inner::before,
    .contact-side-visual-inner::after {
        display: none;
    }

    .contact-side-overlay {
        padding: 90px 22px 22px;
    }

    .cta-media-contact-overlay {
        padding: 90px 22px 22px;
    }

    .contact-side-info-list {
        gap: 18px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-media-contact-list {
        gap: 18px;
        flex-direction: column;
        align-items: flex-start;
    }

    .home-cta-media .cta-media-contact-list {
        align-items: flex-end;
    }

    .contact-side-info-item + .contact-side-info-item {
        margin-left: 0;
        padding-left: 0;
    }

    .cta-media-contact-item + .cta-media-contact-item {
        margin-left: 0;
        padding-left: 0;
    }

    .contact-side-info-item + .contact-side-info-item::before {
        display: none;
    }

    .cta-media-contact-item + .cta-media-contact-item::before {
        display: none;
    }

    .contact-side-info-value {
        font-size: 16px;
    }

    .cta-media-contact-value {
        font-size: 16px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .btn-contact-submit {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .leaders-carousel {
        --leaders-per-view: 2;
    }

    .leaders-arrow {
        width: 40px;
        height: 40px;
    }

    .leader-avatar {
        width: 88px;
        height: 88px;
    }
}

/* Footer */
.footer {
    background: var(--brand-color-darker);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-column:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-column p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column p > i,
.footer-column p i.fas,
.footer-column p i.far {
    color: var(--brand-color);
    flex-shrink: 0;
}

.footer-logo {
    max-width: 200px;
    max-height: 88px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left top;
    margin: 0 0 16px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-color);
    color: var(--brand-color-dark);
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: #7aaed8;
    color: var(--brand-color-dark);
    transform: translateY(-3px);
}

/* Área Administrativa no Footer */
.admin-area-title {
    margin-top: 25px;
    margin-bottom: 2px;
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}

.admin-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.admin-footer-link:hover {
    color: var(--white);
}

.admin-footer-link i {
    font-size: 12px;
}

.footer-certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.footer-certifications img {
    max-height: 50px;
    width: auto;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-certifications img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-copyright {
    text-align: center;
    padding: 25px 20px 30px;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 400;
}

.footer-lock-link {
    color: #fff;
    margin-right: 8px;
    text-decoration: none;
}

/* Responsive */

/* Resoluções MUITO grandes (monitores 4K e acima) */
@media (min-width: 2000px) {
    .slide img {
        object-fit: contain;
        object-position: center;
    }
    
    .slider-container {
        height: clamp(420px, 32vw, 700px);
    }
    
    .slider-section {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .about-text h2,
    .section-title,
    .videos-header h2,
    .payments-section-heading-like-videos,
    .photo-gallery-header h2,
    .contact-form-header h2 {
        font-size: var(--section-heading-size-tablet);
    }

    .testimonials-carousel {
        --cards-per-view: 2;
    }

    .home-about-layout {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .home-about-media,
    .home-about-image {
        min-height: 320px;
    }

    .leaders-carousel {
        --leaders-per-view: 4;
    }

    .leader-avatar {
        width: 118px;
        height: 118px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
        margin: 0 !important;
    }
    
    .header-content {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .header .logo .logo-link {
        max-height: 54px;
    }

    .header .logo img,
    .header .logo .logo-link img {
        height: 48px;
        max-height: 52px;
        max-width: 134px;
    }
    
    .nav-menu {
        display: flex !important;
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        width: 280px;
        background: var(--white);
        flex-direction: column;
        padding: 20px 30px 30px;
        gap: 20px;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
        transition: left 0.3s ease-in-out;
        z-index: 10001;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-menu.active * {
        pointer-events: auto !important;
    }
    
    /* Logo no menu mobile */
    .mobile-menu-logo {
        display: block !important;
        text-align: center;
        padding: 20px 0 30px;
        border-bottom: 2px solid #e0e0e0;
    }
    
    .mobile-menu-logo img,
    .mobile-menu-logo .logo-link img {
        max-width: 170px;
        width: auto;
        height: auto;
    }
    
    .nav-menu a {
        font-size: 18px;
        padding: 12px 0;
        border-bottom: 1px solid #e0e0e0;
        position: relative;
        z-index: 10002;
        pointer-events: auto !important;
        display: block;
        cursor: pointer;
    }
    
    /* Botão de fechar menu mobile */
    .close-menu {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        font-size: 28px;
        color: var(--text-color);
        cursor: pointer;
        padding: 5px;
        line-height: 1;
        transition: var(--transition);
        z-index: 10;
    }
    
    .close-menu:hover {
        color: var(--primary-color);
        transform: rotate(90deg);
    }
    
    .social-icons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        position: relative;
        z-index: 10002;
        pointer-events: auto !important;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        font-size: 24px;
        color: var(--text-color);
    }
    
    .mobile-menu-toggle i {
        pointer-events: none;
    }
    
    /* Overlay quando menu está aberto */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 280px; /* Largura do menu */
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9999;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    /* Prevenir scroll quando menu está aberto */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Ícones sociais na parte inferior do mobile */
    .floating-sidebar {
        display: flex;
        left: auto;
        right: 0;
        top: auto;
        bottom: 0;
        transform: none;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        padding: 10px 5px;
        gap: 8px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
        border-top: 2px solid var(--primary-color);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: var(--transition);
        z-index: 9;
    }
    
    .floating-sidebar.visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    /* Ícones redondos e menores no mobile */
    .sidebar-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 20px;
        flex-shrink: 0;
    }
    
    /* Slider mobile - 480x550 */
    .slider-section {
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
        max-width: 100%;
    }
    
    .slider-container {
        height: 550px;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .slide img {
        width: 100%;
        height: 550px;
        object-fit: cover;
    }
    
    /* Reduzir espaçamento entre seções no mobile */
    .about-section,
    .gallery-section,
    .cta-section,
    .photo-gallery-section {
        padding: 20px 0 !important;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        order: 1;
    }

    .about-text {
        order: 2;
    }

    .home-about-section {
        padding: 24px 0 34px;
    }

    .home-about-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .home-about-content h2 {
        font-size: 30px;
    }

    .home-about-text {
        font-size: 16px;
    }

    .home-about-media,
    .home-about-image {
        min-height: 260px;
    }

    .leaders-section {
        padding: 14px 0 22px;
    }

    .leaders-carousel {
        --leaders-per-view: 3;
        --leaders-gap: 14px;
    }

    .leader-card h3 {
        font-size: 15px;
    }

    .leader-instagram {
        font-size: 13px;
    }

    .leader-avatar {
        width: 96px;
        height: 96px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Filtros no mobile */
    .gallery-filters-primary {
        margin-bottom: 15px;
    }
    
    .filter-btn-primary {
        width: 90%;
        max-width: 350px;
        font-size: 17px;
    }
    
    /* Botões secundários - SEMPRE em linha horizontal */
    .gallery-filters-secondary {
        display: flex;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
        padding: 0 10px;
    }
    
    .gallery-filters-secondary .filter-btn {
        flex: 1;
        min-width: 100px;
        padding: 12px 15px;
        font-size: 13px;
    }
    
    /* Quando TEM intercâmbio - grid 2x2 no mobile */
    .gallery-filters-secondary.has-intercambio {
        display: flex;
        grid-template-columns: none;
        gap: 10px;
    }
    
    .gallery-filters-secondary.has-intercambio .filter-btn {
        flex: none;
        font-size: 14px;
    }
    
    .split-cta-box,
    .split-cta-box-home {
        grid-template-columns: 1fr;
    }

    .home-cta-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-cta-media {
        margin-left: 0;
        min-height: 220px;
    }

    .home-cta-media-inner {
        min-height: 240px;
        height: 240px;
        border-radius: 28px;
    }

    .home-cta-media img {
        min-height: 0;
    }

    .cta-media-contact-overlay {
        padding: 72px 20px 20px;
    }

    .cta-media-contact-item {
        min-width: 0;
    }

    .home-cta-content {
        min-height: auto;
        padding: 0 20px 0 0;
    }

    .about-cta-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-cta-media {
        margin-right: 0;
        min-height: 220px;
        order: 1;
    }

    .about-cta-media-inner {
        min-height: 240px;
        height: 240px;
        border-radius: 28px;
    }

    .about-cta-media img {
        min-height: 0;
    }

    .about-cta-content {
        min-height: auto;
        padding: 0 0 0 20px;
        order: 2;
    }

    .home-cta-action {
        width: 100%;
    }

    .home-cta-action .cta-btn {
        width: 100%;
    }

    .home-cta-text h2 {
        font-size: 24px;
    }

    .split-cta-content {
        padding: 24px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .split-cta-action {
        width: 100%;
    }

    .split-cta-action .cta-btn,
    .about-cta-action .cta-btn {
        width: 100%;
    }

    .split-cta-media {
        min-height: 200px;
    }

    .split-cta-media-left,
    .split-cta-media-right {
        clip-path: none;
    }
    
    .photo-carousel-track {
        gap: 15px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-text h2,
    .section-title,
    .videos-header h2,
    .payments-section-heading-like-videos,
    .home-services-header h2,
    .photo-gallery-header h2,
    .contact-form-header h2 {
        font-size: var(--section-heading-size-mobile);
    }

    .videos-header p {
        font-size: 16px;
    }

    .home-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
    }

    .home-service-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 12px;
    }

    .home-service-icon i {
        font-size: 38px;
    }

    .home-service-icon img {
        width: 48px;
        height: 48px;
    }

    .testimonials-carousel {
        --cards-per-view: 1;
        gap: 10px;
        --testimonial-gap: 16px;
    }

    .testimonials-arrow {
        width: 38px;
        height: 38px;
    }

    .about-cta-action .cta-btn {
        width: 100%;
        min-width: 210px;
        max-width: 100%;
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .photo-carousel-item {
        flex: 0 0 calc(50% - 7.5px);
    }
    
    .photo-carousel {
        padding: 0 50px;
    }
    
    .lightbox-prev, .lightbox-next {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
        left: auto;
    }
    
    /* Galeria de Fotos - 2 imagens por vez no mobile */
    .photo-carousel {
        padding: 0 50px;
    }
    
    .photo-carousel-item {
        flex: 0 0 calc(50% - 10px) !important;
        min-width: calc(50% - 10px);
    }
    
    .photo-carousel-item img {
        height: 220px;
        object-fit: cover;
    }
    
    .photo-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .photo-arrow-prev {
        left: 5px;
    }
    
    .photo-arrow-next {
        right: 5px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-column:first-child {
        align-items: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
        object-position: center top;
    }
    
    .footer-column p {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-certifications {
        gap: 20px;
    }
    
    .footer-certifications img {
        max-height: 40px;
    }
    
    /* Espaço no copyright para não colar nos ícones fixos */
    .footer-copyright {
        padding-bottom: 90px !important;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header .logo .logo-link {
        max-height: 50px;
    }

    .header .logo img,
    .header .logo .logo-link img {
        height: 44px;
        max-height: 48px;
        max-width: 118px;
    }
    
    /* Slider 480x550 */
    .slider-container {
        height: 550px;
        max-width: 100%;
    }
    
    .slide img {
        height: 550px;
        object-fit: cover;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .cta-text h2 {
        font-size: 26px;
    }
    
    .cta-text p {
        font-size: 16px;
    }
    
    .cta-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .photo-gallery-header p {
        font-size: 16px;
    }
    
    .photo-carousel-item img {
        height: 180px;
    }
}

/* ——— Página Pagamentos + menu Informações (mobile) ——— */
.logo .logo-link,
.mobile-menu-logo .logo-link {
    display: inline-block;
    line-height: 0;
}

/* Hero Pagamentos: título centralizado como Vídeos, mas fundo branco (sem faixa azulada da .videos-section) */
.payments-page-hero.videos-section {
    padding-top: 40px;
    padding-bottom: 28px;
    background: #ffffff;
}

.payments-page-hero .videos-header {
    margin-bottom: 0;
}

.payments-section {
    padding: 40px 0;
}

.payments-section-heading-like-videos {
    font-size: 40px;
    color: var(--text-color);
    margin: 0 0 22px;
    font-weight: 700;
    line-height: 1.2;
}

.payments-section-title {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    color: var(--primary-color);
    margin: 0 0 22px;
    font-weight: 800;
}

.payments-section-title--center {
    text-align: center;
    margin-bottom: 28px;
}

.payments-subtitle {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin: 28px 0 14px;
    font-weight: 700;
}

.payments-rich {
    color: #475569;
    line-height: 1.75;
    font-size: 1.02rem;
}

.payments-rich ul {
    padding-left: 1.25rem;
    margin: 0.5em 0 0;
}

.payments-rich li {
    margin-bottom: 0.65em;
}

.passport-page .payments-rich,
.passport-page .payments-acc-body {
    text-align: justify;
}

.passport-page .payments-subtitle,
.passport-page .payments-acc-summary {
    text-align: left;
}

.passport-page .videos-header h2 {
    text-align: left;
}

.passport-page .site-page-hero .videos-header h2 {
    text-align: center;
}

.passport-intro-section {
    padding-top: 48px;
}

.passport-emission-layout .passport-emission-copy {
    min-width: 0;
}

/* Emissão: imagem à esquerda preenche a altura da coluna (igual à coluna da direita) */
.payments-methods-layout--with-image.passport-emission-layout {
    grid-template-rows: minmax(0, auto);
    align-items: stretch;
}

.payments-methods-layout--with-image.passport-emission-layout .payments-methods-visual {
    grid-column: 1;
    grid-row: 1;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.payments-methods-layout--with-image.passport-emission-layout .payments-methods-frame {
    flex: 1 1 auto;
    width: 100%;
    min-height: 280px;
    max-height: none;
    height: 100%;
    display: block;
}

.payments-methods-layout--with-image.passport-emission-layout .payments-methods-frame img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    max-height: none;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.payments-methods-layout--with-image.passport-emission-layout .passport-emission-copy {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
}

.payments-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 900px) {
    .payments-intro-grid {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .payments-intro-visual {
        order: -1;
    }
}

.payments-intro-frame,
.payments-methods-frame {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(47, 70, 95, 0.12);
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: min(75vh, 620px);
}

.payments-intro-frame img,
.payments-methods-frame img {
    width: auto;
    max-width: 100%;
    max-height: min(75vh, 620px);
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    vertical-align: middle;
}

.payments-rich img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Formas de pagamento: imagem à esq.; título + sanfonas à dir. (título só sobre a coluna da sanfona) */
.payments-methods-layout--with-image {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    grid-template-rows: auto 1fr;
    gap: 24px 36px;
    align-items: start;
    margin-top: 0;
}

.payments-methods-layout--with-image .payments-methods-visual {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: stretch;
}

.payments-methods-layout--with-image .payments-methods-head {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    margin-bottom: 0;
}

/* Título “Formas de Pagamentos”: bem menor que o hero / Vídeos em Destaque */
.payments-methods-head.videos-header {
    margin-bottom: 0;
}

.payments-methods-head.videos-header h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.payments-methods-layout--with-image .payments-accordions {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
}

/* Formas de pagamento: imagem preenche o quadro (object-fit: cover) */
.payments-methods-section .payments-methods-layout--with-image .payments-methods-visual {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.payments-methods-section .payments-methods-layout--with-image .payments-methods-frame {
    flex: 1 1 auto;
    width: 100%;
    min-height: 320px;
    height: 100%;
    max-height: none;
}

.payments-methods-section .payments-methods-layout--with-image .payments-methods-frame img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
}

.payments-methods-layout--with-image.payments-methods-layout--no-methods-heading .payments-accordions {
    grid-row: 1 / span 2;
    align-self: start;
}

.payments-methods-layout--no-image {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}

.payments-methods-layout--no-image .payments-methods-head {
    text-align: center;
    margin-bottom: 0;
}

.payments-methods-layout--no-image .payments-methods-head h2 {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .payments-methods-head.videos-header h2 {
        font-size: 1.05rem;
    }
}

.payments-acc {
    border: 1px solid rgba(47, 70, 95, 0.12);
    border-radius: 14px;
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(47, 70, 95, 0.06);
    transition: box-shadow 0.2s ease;
}

.payments-acc[open] {
    box-shadow: 0 12px 32px rgba(47, 70, 95, 0.1);
}

.payments-acc-summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-weight: 700;
    color: var(--primary-color);
    user-select: none;
}

.payments-acc-summary::-webkit-details-marker {
    display: none;
}

.payments-acc-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(47, 70, 95, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.payments-acc[open] .payments-acc-icon {
    transform: rotate(45deg);
    background: rgba(47, 70, 95, 0.14);
}

.payments-acc-body {
    padding: 0 18px 18px;
    border-top: 1px solid rgba(47, 70, 95, 0.08);
}

.payments-cta-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    border-radius: 20px;
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 18px 40px rgba(47, 70, 95, 0.25);
}

.payments-cta-card .payments-rich {
    color: rgba(255, 255, 255, 0.95);
    flex: 1;
    min-width: 220px;
    margin: 0;
}

.payments-cta-card .payments-rich a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.payments-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    background: #fff;
    color: var(--primary-color) !important;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.payments-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Seguro viagem (Informações) — layout tipo “Formas de pagamento”: imagem à esq., título + texto à dir. */
.travel-insurance-section-layout.payments-methods-layout--with-image .travel-insurance-section-copy {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    width: 100%;
}

.travel-insurance-section-layout.payments-methods-layout--with-image .travel-insurance-section-head {
    margin-bottom: 0;
}

.travel-insurance-section-layout.payments-methods-layout--no-image {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.travel-insurance-section-layout.payments-methods-layout--no-image .travel-insurance-section-copy {
    width: 100%;
}

.travel-insurance-section-layout.payments-methods-layout--no-image .payments-methods-head {
    text-align: left;
}

.travel-insurance-section .payments-methods-layout--with-image .payments-methods-visual {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.travel-insurance-section .payments-methods-layout--with-image .payments-methods-frame {
    flex: 1 1 auto;
    width: 100%;
    min-height: 320px;
    height: 100%;
    max-height: none;
}

.travel-insurance-section .payments-methods-layout--with-image .payments-methods-frame img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
}

.travel-insurance-single-image-wrap {
    max-width: 920px;
    margin: 0 auto;
}

.travel-insurance-single-image-frame {
    min-height: 280px;
    max-height: min(85vh, 680px);
}

.travel-insurance-single-image-frame img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    object-position: center;
    max-width: none;
    max-height: min(85vh, 680px);
}

.travel-insurance-page .payments-rich,
.travel-insurance-section-body.payments-rich {
    text-align: justify;
}

@media (max-width: 900px) {
    .travel-insurance-section-layout.payments-methods-layout--with-image .videos-header.payments-methods-head {
        text-align: left;
    }
}

.travel-insurance-assist-section {
    background: #fff;
}

.travel-insurance-assist-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: 1120px;
    margin: 0 auto;
}

.travel-insurance-assist-grid .travel-insurance-assist-card {
    flex: 1 1 calc(25% - 12px);
    min-width: 220px;
    max-width: 100%;
}

@media (min-width: 900px) {
    .travel-insurance-assist-grid .travel-insurance-assist-card {
        max-width: calc(25% - 12px);
    }
}

.travel-insurance-assist-heading {
    text-align: center;
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1e293b;
    margin: 0 0 1.75rem;
}

.travel-insurance-assist-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    min-height: 88px;
    padding: 16px 18px;
    background: #f1f5f9;
    border-radius: 12px;
    border: 1px solid rgba(47, 70, 95, 0.06);
}

.travel-insurance-assist-card__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #1e293b;
}

.travel-insurance-assist-card__label {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1e293b;
}

@media (max-width: 640px) {
    .travel-insurance-assist-grid .travel-insurance-assist-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Regras gerais de viagem — sanfona à esquerda (coluna maior ~62%), imagem à direita (~38%) */
.regras-viagem-layout.payments-methods-layout--with-image {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
}

.regras-viagem-layout.payments-methods-layout--with-image .regras-viagem-acc-wrap {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-width: 0;
    align-self: start;
}

/* Imagem não acompanha a altura da sanfona ao expandir (evita “esticar”) */
.regras-viagem-layout.payments-methods-layout--with-image .payments-methods-visual {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
    width: 100%;
    min-width: 0;
    display: block;
}

/* Largura total da coluna; altura pela proporção da foto (não cresce com a sanfona) */
.regras-viagem-layout.payments-methods-layout--with-image .payments-methods-frame {
    display: block;
    width: 100%;
    max-width: none;
    max-height: none;
    min-height: 0;
}

.regras-viagem-layout.payments-methods-layout--with-image .payments-methods-frame img {
    width: 100%;
    max-width: none;
    height: auto;
    max-height: none;
    min-height: 0;
    display: block;
    object-fit: initial;
    object-position: center;
    vertical-align: middle;
}

/* Mesmo padrão visual do Passaporte: cartões .payments-acc; corpo justificado */
.regras-viagem-page .payments-rich,
.regras-viagem-page .payments-acc-body,
.vacinas-page .payments-rich,
.vacinas-page .payments-acc-body,
.moedas-page .payments-rich,
.moedas-page .payments-acc-body {
    text-align: justify;
}

.regras-viagem-page .payments-acc-summary,
.vacinas-page .payments-acc-summary,
.moedas-page .payments-acc-summary {
    text-align: left;
}

.regras-viagem-page .payments-acc-body h4,
.vacinas-page .payments-acc-body h4,
.moedas-page .payments-acc-body h4 {
    margin: 1.1em 0 0.5em;
    font-size: 1.02rem;
    color: var(--primary-color);
}

.regras-viagem-page .payments-acc-body h4:first-child,
.vacinas-page .payments-acc-body h4:first-child,
.moedas-page .payments-acc-body h4:first-child {
    margin-top: 0;
}

.regras-viagem-page .payments-acc-body ul,
.regras-viagem-page .payments-acc-body ol,
.regras-viagem-page .payments-acc-body li,
.vacinas-page .payments-acc-body ul,
.vacinas-page .payments-acc-body ol,
.vacinas-page .payments-acc-body li,
.moedas-page .payments-acc-body ul,
.moedas-page .payments-acc-body ol,
.moedas-page .payments-acc-body li {
    text-align: justify;
}

/* Moedas — títulos de secção e lojas de apps */
.moedas-page .moedas-section-heading {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 16px;
    line-height: 1.3;
}

.moedas-page .moedas-section + .moedas-section {
    padding-top: 8px;
}

.moedas-page .moedas-section-intro {
    margin-bottom: 20px;
}

.moedas-page .moedas-section-intro.payments-rich {
    text-align: justify;
}

/* Imagem ocupa toda a coluna (secções Dinheiro / Cartões) */
.moedas-page .regras-viagem-layout.payments-methods-layout--with-image .payments-methods-visual {
    width: 100%;
    min-width: 0;
}

.moedas-page .regras-viagem-layout.payments-methods-layout--with-image .payments-methods-frame {
    width: 100%;
    max-width: 100%;
}

.moedas-page .regras-viagem-layout.payments-methods-layout--with-image .payments-methods-frame img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.moedas-page .moedas-reco-section .moedas-reco-heading {
    margin-bottom: 14px;
}

.moedas-page .moedas-reco-body {
    margin-bottom: 24px;
    width: 100%;
    max-width: none;
    text-align: justify;
}

.moedas-page .moedas-reco-body.payments-rich {
    text-align: justify;
}

/* Selos Play / App Store: caixas iguais, próximas, alinhadas; mobile continua em linha */
.moedas-page .moedas-store-badges {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    max-width: 100%;
}

.moedas-page .moedas-store-badge {
    box-sizing: border-box;
    flex: 0 0 156px;
    width: 156px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.moedas-page .moedas-store-badge:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

.moedas-page .moedas-store-badge img {
    display: block;
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 380px) {
    .moedas-page .moedas-store-badge {
        flex: 1 1 calc(50% - 4px);
        width: auto;
        min-width: 0;
        height: 48px;
    }

    .moedas-page .moedas-store-badge img {
        max-height: 44px;
    }
}

@media (max-width: 900px) {
    .regras-viagem-layout.payments-methods-layout--with-image {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .regras-viagem-layout.payments-methods-layout--with-image .regras-viagem-acc-wrap,
    .regras-viagem-layout.payments-methods-layout--with-image .payments-methods-visual {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
    }

    .regras-viagem-layout.payments-methods-layout--with-image .payments-methods-visual {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }

    /* Moedas: imagem em cima, largura total da coluna (sem caixa estreita) */
    .moedas-page .regras-viagem-layout.payments-methods-layout--with-image .payments-methods-visual {
        max-width: none;
        margin: 0;
    }

    .clima-page .regras-viagem-layout.payments-methods-layout--with-image .payments-methods-visual {
        max-width: none;
        margin: 0;
    }

    .menores-page .regras-viagem-layout.payments-methods-layout--with-image .payments-methods-visual {
        max-width: none;
        margin: 0;
    }

    .dicas-viagem-page .regras-viagem-layout.payments-methods-layout--with-image .payments-methods-visual {
        max-width: none;
        margin: 0;
    }
}

/* Clima — corpo justificado; imagem em largura total da coluna */
.clima-page .clima-body.payments-rich {
    text-align: justify;
}

.clima-page .clima-body.payments-rich p {
    text-align: justify;
}

.clima-page .regras-viagem-layout.payments-methods-layout--with-image .payments-methods-visual {
    width: 100%;
    min-width: 0;
}

.clima-page .regras-viagem-layout.payments-methods-layout--with-image .payments-methods-frame {
    width: 100%;
    max-width: 100%;
}

.clima-page .regras-viagem-layout.payments-methods-layout--with-image .payments-methods-frame img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.clima-page .clima-main-copy {
    min-width: 0;
}

/* Menores de idade — corpo justificado; imagem em largura total da coluna */
.menores-page .menores-body.payments-rich {
    text-align: justify;
}

.menores-page .menores-body.payments-rich p,
.menores-page .menores-body.payments-rich li {
    text-align: justify;
}

.menores-page .regras-viagem-layout.payments-methods-layout--with-image .payments-methods-visual {
    width: 100%;
    min-width: 0;
}

.menores-page .regras-viagem-layout.payments-methods-layout--with-image .payments-methods-frame {
    width: 100%;
    max-width: 100%;
}

.menores-page .regras-viagem-layout.payments-methods-layout--with-image .payments-methods-frame img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.menores-page .menores-main-copy {
    min-width: 0;
}

.menores-page .menores-section-heading {
    text-align: left;
}

/* Dicas de viagem */
.dicas-viagem-page .payments-rich,
.dicas-viagem-page .payments-acc-body .payments-rich {
    text-align: justify;
}

.dicas-viagem-page .payments-rich p,
.dicas-viagem-page .payments-rich li,
.dicas-viagem-page .dicas-sub-acc-body p,
.dicas-viagem-page .dicas-sub-acc-body li,
.dicas-viagem-page .dicas-acc-rich p,
.dicas-viagem-page .dicas-acc-rich li {
    text-align: justify;
}

.dicas-viagem-page .dicas-doc-heading {
    margin-top: 0;
}

.dicas-viagem-page .dicas-doc-intro {
    margin-bottom: 20px;
}

.dicas-viagem-page .dicas-store-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 20px;
    margin: 8px 0 28px;
}

.dicas-viagem-page .dicas-store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    border-radius: 8px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dicas-viagem-page .dicas-store-badge:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.dicas-viagem-page .dicas-store-badge img {
    display: block;
    max-width: 100%;
    max-height: 54px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.dicas-viagem-page .dicas-doc-sub-accordions {
    margin-top: 8px;
    margin-bottom: 8px;
}

.dicas-viagem-page .dicas-prose-breaker {
    height: 1px;
    margin: 28px 0 24px;
    background: linear-gradient(
        90deg,
        rgba(47, 70, 95, 0) 0%,
        rgba(47, 70, 95, 0.12) 20%,
        rgba(47, 70, 95, 0.12) 80%,
        rgba(47, 70, 95, 0) 100%
    );
}

.dicas-viagem-page .dicas-after-bagagem-wrap {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 4px;
}

.dicas-viagem-page .dicas-after-bagagem-wrap .dicas-prose-breaker {
    margin-top: 8px;
}

.dicas-viagem-page .dicas-after-bagagem {
    padding: 20px 0 4px;
    border-radius: 12px;
    width: 100%;
    max-width: none;
}

.dicas-viagem-page .dicas-after-bagagem p + p {
    margin-top: 1em;
}

/* Anula max-width inline do editor nos parágrafos do bloco de largura total */
.dicas-viagem-page .dicas-after-bagagem-wrap .dicas-after-bagagem p,
.dicas-viagem-page .dicas-after-bagagem-wrap .dicas-after-bagagem li {
    max-width: none !important;
}

.dicas-viagem-page .dicas-doc-split .menores-main-copy {
    min-width: 0;
}

.dicas-viagem-page .dicas-doc-split.regras-viagem-layout.payments-methods-layout--with-image .payments-methods-visual {
    width: 100%;
    min-width: 0;
}

.dicas-viagem-page .dicas-doc-split.regras-viagem-layout.payments-methods-layout--with-image .payments-methods-frame,
.dicas-viagem-page .dicas-doc-split.regras-viagem-layout.payments-methods-layout--with-image .payments-methods-frame img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.dicas-viagem-page .dicas-viagem-topicos-section {
    padding-top: 8px;
}

.dicas-viagem-page .dicas-topicos-heading {
    text-align: center;
    margin: 0 0 28px;
}

.dicas-viagem-page .dicas-main-accordions .payments-acc-body {
    padding-top: 4px;
}

/* Sanfona com foto: imagem à direita com float; o texto que passa da altura da foto usa a largura toda */
.dicas-viagem-page .dicas-acc-float-wrap {
    display: flow-root;
}

.dicas-viagem-page .dicas-acc-float-visual {
    float: right;
    width: min(40%, 420px);
    max-width: 100%;
    margin: 0 0 1rem 1.5rem;
}

.dicas-viagem-page .dicas-acc-float-visual .payments-methods-frame {
    margin: 0;
    width: 100%;
}

.dicas-viagem-page .dicas-acc-float-visual .payments-methods-frame img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.dicas-viagem-page .dicas-acc-float-wrap .dicas-acc-rich {
    min-width: 0;
}

.dicas-viagem-page .dicas-acc-visual--solo {
    max-width: 420px;
    margin: 0 auto;
}

.dicas-viagem-page .dicas-acc-visual--solo .payments-methods-frame img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .dicas-viagem-page .dicas-acc-float-visual {
        float: none;
        width: 100%;
        max-width: 440px;
        margin: 0 auto 1.25rem;
    }
}

/* Informações — faixa “Saiba mais” antes do rodapé */
.info-related-section {
    border-top: 1px solid rgba(47, 70, 95, 0.12);
    background: #fff;
    padding: 48px 0 56px;
}

.info-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 24px;
    align-items: stretch;
}

.info-related-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
}

.info-related-card-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.info-related-card-desc {
    margin: 0;
    flex: 1;
    font-size: 0.94rem;
    line-height: 1.55;
    color: #64748b;
    max-width: 22rem;
}

.info-related-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    padding: 11px 22px;
    background: #1e3d52;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.info-related-card-btn:hover {
    background: #1e2d3d;
    transform: translateY(-1px);
}

.info-related-card-btn i {
    font-size: 0.85em;
    opacity: 0.95;
}

@media (max-width: 992px) {
    .info-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 20px;
    }
}

@media (max-width: 520px) {
    .info-related-section {
        padding: 36px 0 44px;
    }

    .info-related-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.payments-airlines-hint {
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
    margin: -8px 0 28px;
}

.payments-airlines-hint i {
    margin-right: 6px;
    color: var(--secondary-color);
}

.payments-airlines-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.payments-airline-cell {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payments-airline-trigger {
    width: 100%;
    border: none;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 16px 12px 14px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(47, 70, 95, 0.08);
    border: 1px solid rgba(47, 70, 95, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    font: inherit;
    text-align: center;
}

.payments-airline-trigger:hover,
.payments-airline-cell.is-popover-open .payments-airline-trigger {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(47, 70, 95, 0.14);
    border-color: rgba(47, 70, 95, 0.2);
}

.payments-airline-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
}

.payments-airline-logo-wrap img {
    max-width: 100%;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.payments-airline-badge {
    display: block;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--secondary-color);
}

.payments-airline-cloud {
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    transform: translateX(-50%);
    z-index: 50;
    width: min(380px, calc(100vw - 32px));
    padding: 0;
    border: none;
    background: transparent;
    filter: drop-shadow(0 16px 40px rgba(47, 70, 95, 0.2));
}

.payments-airline-cloud.is-open {
    animation: paymentsCloudIn 0.28s ease-out;
}

@keyframes paymentsCloudIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-6px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

.payments-airline-cloud-inner {
    background: #fff;
    border-radius: 28px 32px 36px 30px / 32px 28px 34px 36px;
    border: 1px solid rgba(47, 70, 95, 0.1);
    overflow: hidden;
    position: relative;
}

.payments-airline-cloud-inner::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -14px;
    width: 28px;
    height: 28px;
    background: #fff;
    border-left: 1px solid rgba(47, 70, 95, 0.1);
    border-top: 1px solid rgba(47, 70, 95, 0.1);
    transform: rotate(45deg);
    z-index: 0;
}

.payments-airline-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(47, 70, 95, 0.08);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.payments-airline-close:hover {
    background: rgba(47, 70, 95, 0.15);
}

.payments-airline-cloud-head {
    padding: 20px 20px 12px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(47, 70, 95, 0.04) 0%, transparent 100%);
}

.payments-airline-cloud-logo {
    max-height: 44px;
    width: auto;
    max-width: 85%;
    object-fit: contain;
}

.payments-airline-cloud-body {
    padding: 8px 20px 22px;
    position: relative;
    z-index: 1;
}

.payments-airline-cloud-top {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}

.payments-airline-cloud-top .payments-airline-row {
    margin-bottom: 0;
}

.payments-airline-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.5;
}

.payments-airline-row p {
    margin: 0;
}

.payments-airline-ico {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(18, 53, 68, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.payments-airline-row-detail .payments-airline-row-detail-inner {
    min-width: 0;
    flex: 1;
}

.payments-airline-row-detail h4 {
    margin: 0 0 6px;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 800;
}

.payments-airline-row-detail p {
    margin: 0;
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.55;
}

@media (max-width: 1100px) {
    .payments-airlines-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .payments-methods-layout--with-image {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .payments-methods-layout--with-image .payments-methods-visual,
    .payments-methods-layout--with-image .payments-methods-head,
    .payments-methods-layout--with-image .payments-accordions {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
    }

    .payments-methods-layout--with-image .payments-methods-visual {
        max-width: 420px;
        margin: 0 auto;
    }

    .payments-methods-layout--with-image .payments-methods-head {
        text-align: center;
    }

    .payments-methods-layout--with-image.passport-emission-layout .passport-emission-copy {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
    }

    .payments-methods-layout--with-image.passport-emission-layout .payments-methods-visual {
        width: 100%;
    }

    .payments-methods-layout--with-image.passport-emission-layout .payments-methods-frame {
        flex: none;
        min-height: 220px;
        max-height: min(70vh, 520px);
        height: auto;
    }

    .payments-methods-layout--with-image.passport-emission-layout .payments-methods-frame img {
        min-height: 0;
        height: auto;
        max-height: min(70vh, 520px);
        object-fit: cover;
    }

    .payments-airlines-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .payments-airlines-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .payments-airline-cloud {
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        max-width: none;
    }

    .payments-airline-cloud.is-open {
        animation: none;
    }

    .payments-cta-card {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .payments-cta-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu .nav-dropdown::after {
        display: none;
    }

    .nav-menu .nav-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 4px;
    }

    .nav-menu .nav-dropdown-trigger {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0 8px;
        font-size: 18px;
        border-bottom: none;
    }

    .nav-menu .nav-dropdown-trigger::after {
        display: none;
    }

    .nav-dropdown-panel {
        position: static;
        transform: none;
        display: block !important;
        margin: 0 0 4px 0;
        padding: 0 0 8px 12px;
        border: none;
        box-shadow: none;
        background: transparent;
        border-radius: 0;
    }

    .nav-dropdown-panel::before {
        display: none;
    }

    .nav-dropdown-panel .nav-dropdown-link {
        padding: 10px 0 10px 12px;
        font-size: 16px;
        font-weight: 600;
        border-left: 3px solid var(--secondary-color);
        margin-bottom: 4px;
        border-bottom: none;
        border-radius: 0 8px 8px 0;
    }

    .nav-dropdown-panel .nav-dropdown-link:hover {
        background: rgba(47, 70, 95, 0.06);
    }
}

/* ——— Página Vistos ——— */
.visas-page .payments-rich,
.visas-page .visa-country-acc__intro,
.visas-page .visa-country-acc__body {
    text-align: justify;
}

.visas-page .payments-rich p:last-child,
.visas-page .visa-country-acc__intro p:last-child,
.visas-page .visa-country-acc__body p:last-child {
    margin-bottom: 0;
}

.visas-page .visa-country-acc__body h4 {
    margin: 1.35em 0 0.55em;
    font-size: 1.04rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
}

.visas-page .visa-country-acc__body h4:first-child {
    margin-top: 0;
}

.visas-page .visa-country-acc__body ul {
    margin: 0 0 1em;
    padding-left: 1.25rem;
}

/* Hero escuro comum (Pagamentos, Passaporte, Vistos, Informações, Quem Somos, Destinos, Mídia, Contato) */
.videos-section.payments-page-hero.site-page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 42%, #0c4a6e 100%);
    padding-top: 44px;
    padding-bottom: 36px;
}

.site-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 20%, rgba(56, 189, 248, 0.18), transparent 55%),
        radial-gradient(ellipse 60% 50% at 85% 70%, rgba(251, 191, 36, 0.12), transparent 50%);
    pointer-events: none;
}

.site-page-hero .container {
    position: relative;
    z-index: 1;
}

.site-page-hero-inner {
    text-align: center;
    padding: 28px 16px 36px;
}

.site-page-hero-inner h2 {
    color: #f8fafc;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    margin: 0;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.site-page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.site-page-hero-eyebrow i {
    color: inherit;
}

/* Sobrepõe .videos-header p { color: #5f6b76 } — o selo “Informações” fica legível na faixa escura */
.videos-header.site-page-hero-inner .site-page-hero-eyebrow {
    color: #ffffff;
}

.videos-header.site-page-hero-inner .site-page-hero-eyebrow i {
    color: inherit;
}

.site-page-hero-sub {
    margin: 14px auto 0;
    max-width: 36rem;
    padding: 0 8px;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.55;
    font-weight: 500;
    color: rgba(248, 250, 252, 0.88);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

.informacoes-hub-section {
    padding: 40px 0 56px;
    background: #f8fafc;
}

.informacoes-hub-section .informacoes-hub-cards {
    margin-top: 0 !important;
}

.site-page-hero + .videos-page-section.midia-videos-below-hero {
    padding-top: 28px;
}

/* Vistos — seção inicial (abaixo do hero; sem sobrepor a faixa azul) */
.visas-intro-section {
    padding: 48px 0 32px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 55%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.visas-intro {
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
}

.visas-intro--with-image {
    display: grid;
    grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.visas-intro__visual {
    min-width: 0;
}

.visas-intro__figure {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.visas-intro__figure img {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: cover;
    display: block;
}

.visas-intro__text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #334155;
    min-width: 0;
}

.visas-page .visas-intro__text {
    text-align: justify;
}

.visas-intro:not(.visas-intro--with-image):not(.visas-intro--image-only) .visas-intro__text {
    max-width: 42rem;
    margin: 0 auto;
}

.visas-intro--image-only {
    max-width: 640px;
    margin: 0 auto;
}

.visas-intro--image-only .visas-intro__figure img {
    max-height: 380px;
}

.visas-countries-section {
    padding: 36px 0 56px;
    background: #fff;
}

.visas-countries-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 880px;
    margin: 0 auto;
}

.visa-country-acc {
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

.visa-country-acc__summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 15px 18px;
    background: #fff;
    font-weight: 600;
    color: #0f172a;
    user-select: none;
}

.visa-country-acc__summary::-webkit-details-marker {
    display: none;
}

.visa-country-acc__num {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #0284c7;
}

.visa-country-acc__name {
    flex: 1;
    min-width: 140px;
    font-size: 1.06rem;
}

.visa-country-acc__thumb-wrap {
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    line-height: 0;
}

.visa-country-acc__thumb {
    width: 100px;
    height: 68px;
    object-fit: cover;
    display: block;
}

.visa-country-acc__chev {
    color: #64748b;
    transition: transform 0.2s ease;
    margin-left: auto;
}

.visa-country-acc[open] .visa-country-acc__chev {
    transform: rotate(180deg);
}

.visa-country-acc__panel {
    border-top: 1px solid #e8edf3;
    background: #fafbfc;
}

.visa-country-acc__layout {
    padding: 20px 20px 22px;
    font-size: 0.97rem;
    line-height: 1.68;
    color: #475569;
}

.visa-country-acc__media-row {
    display: grid;
    grid-template-columns: minmax(0, 260px) 1fr;
    gap: 22px;
    align-items: start;
}

.visa-country-acc__figure {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    line-height: 0;
}

.visa-country-acc__figure--top {
    max-width: 320px;
    margin-bottom: 4px;
}

.visa-country-acc__figure img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
    display: block;
}

.visa-country-acc__media-row .visa-country-acc__intro {
    margin: 0;
    padding: 0;
    border: none;
    min-width: 0;
}

.visa-country-acc__body {
    width: 100%;
    max-width: none;
}

.visa-country-acc__body:not(:first-child) {
    margin-top: 1.1rem;
    padding-top: 1.1rem;
    border-top: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .visa-country-acc__media-row {
        grid-template-columns: 1fr;
    }

    .visa-country-acc__figure img {
        max-height: 200px;
    }

    .visa-country-acc__figure--top {
        max-width: none;
    }

    .visa-country-acc__thumb-wrap {
        order: 3;
        width: 100%;
        max-width: 120px;
    }

    .visa-country-acc__chev {
        margin-left: 0;
    }

    .visas-intro-section {
        padding: 36px 0 28px;
    }

    .visas-intro--with-image {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .visas-intro__figure img {
        max-height: 240px;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

