body {
    
    background-repeat: repeat;
    background-size: 18px 18px;
    /* Aumentado em 50% (era 14px) */
}

.tema-escuro {
    background-color: #1a1a1a;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 16 16'%3E%3Cpath d='M1 3c.5 2 2 3 3 1s1.5-2 2 0M9 2c.4 2.2 1.8 3.2 2.8 1.2s1.4-2.1 2.2.2M3 11c.6 1.8 2.2 2.8 3.1.8s1.2-2.3 2.1-.2M10 10c.5 2 1.9 3 2.9 1s1.3-2.2 2.2 0' fill='none' stroke='%23050505' stroke-width='2.2' stroke-linecap='round' opacity='0.85'/%3E%3C/svg%3E");
}

.tema-claro {
    background-color: #e6e6e6;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 16 16'%3E%3Cpath d='M1 3c.5 2 2 3 3 1s1.5-2 2 0M9 2c.4 2.2 1.8 3.2 2.8 1.2s1.4-2.1 2.2.2M3 11c.6 1.8 2.2 2.8 3.1.8s1.2-2.3 2.1-.2M10 10c.5 2 1.9 3 2.9 1s1.3-2.2 2.2 0' fill='none' stroke='%23cccccc' stroke-width='2.2' stroke-linecap='round' opacity='0.6'/%3E%3C/svg%3E");
}

.tema-claro-b {
    background-color: #e6e6e6;
}

/* HEADER BASE */
.navbar {
    position: absolute;
    top: clamp(20px, 5.76vw, 140px);
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Adiciona transição suave para quando ela surgir/deslizar */
    transition: transform 0.4s ease, background-color 0.3s ease;
}

.navbar .logo-img {
    max-height: 38px;
}

/* QUANDO O MENU FICAR FIXED */
.navbar.is-fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 15px 0 !important;
    
    /* Usamos !important para anular o 'bg-transparent' do Bootstrap */
    background-color: rgba(5, 8, 28, 0.95) !important; 
    
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    
    animation: slideDown 0.4s ease forwards;
}

/* Animação keyframe para o efeito de deslizar */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* GERAL */
.container-text {
    width: 65%;
    max-width: 972px;
    margin-left: auto;
    margin-right: auto;
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    min-height: clamp(900px, 58vw, 1450px);
    display: flex;
    align-items: flex-start;
    padding-top: clamp(15px, 4.12vw, 100px);
    overflow: hidden;
    /* Corta o excesso aqui para não dar scroll horizontal */
}

/* OVERLAY LARANJA: Ocupa apenas os 50% inferiores da altura */
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    /* Reduzido para ocupar metade da altura */
    pointer-events: none;
    z-index: 2;

    /* Gradiente iniciando do transparente no topo do overlay até o laranja sólido na base */
    background: linear-gradient(180deg,
            rgba(255, 92, 19, 0) 0%,
            rgba(255, 92, 19, 0.6) 50%,
            #ff5c13 100%);
}

/* CARD COM A IMAGEM: Remove o z-index e overflow internos */
.hero-card {
    position: relative;
    /* SEM z-index e SEM overflow: hidden aqui para não prender os filhos num contexto isolado */
    width: 100%;
    height: 100%;
    min-height: clamp(820px, 55vw, 1350px);
    display: flex;
    flex-direction: column;
    background-image: url("../img/section-1-img-1.3d94e1195d42.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 40px;
    padding-bottom: clamp(20px, 2.5vw, 50px);
    border-radius: 50px;
}

/* TEXTOS: Força para a camada mais alta (z-index: 3) */
.hero-card .container-text {
    position: relative;
    z-index: 3;
    /* Maior que o z-index: 2 do overlay laranja */
    width: 100%;
    margin-top: auto !important;
    margin-bottom: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.hero-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(1.875rem, 3.5vw + 0.8rem, 4.167rem);
    line-height: 1;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0;
}

.hero-subtext {
    font-family: "Helvetica Now Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 1.2vw + 0.5rem, 2rem);
    line-height: 1.35;
    letter-spacing: 0;
    color: #ffffff;
    margin: 0;
}

/* SECTION 2 */
.features-section {
    width: 100%;
    height: auto;
    padding: clamp(60px, 8vw, 120px) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff5c13;
}

.feature-card {
    background-color: #1b184f;
    border-radius: clamp(24px, 3.5vw, 51px);
    padding: clamp(20px, 2.5vw, 40px);
    min-height: clamp(240px, 21.5vw, 310px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.feature-title {
    font-family: "Myriad Pro", sans-serif;
    font-weight: 700;
    font-size: clamp(1.3rem, 2.1vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0;
}

.feature-highlights span {
    font-family: "Myriad Pro", sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 1.8vw, 2.2rem);
    letter-spacing: -0.01em;
    color: #000000;
}

/* Ajuste proporcional para os blocos/ícones internos não estourarem o card */
.feature-card .d-flex,
.feature-card [class*="features"],
.feature-card [class*="pills"] {
    max-width: 100% !important;
    gap: clamp(8px, 1.5vw, 16px) !important;
    box-sizing: border-box;
}

.feature-card img,
.feature-card .feature-pill {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box;
}

.btn-orange-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ff5c13;
    width: 100%;
    max-width: 558px;
    min-height: 98px;
    padding: 10px 30px;
    border: 4px solid #ffffff;
    border-radius: 24px;
    font-family: "Myriad Pro", sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 2.25vw, 2.25rem);
    letter-spacing: -0.01em;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.45);
    transition: all 0.3s ease;
}

.btn-orange-primary:hover {
    background-color: #e54e08;
    color: #ffffff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.btn-orange-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    width: 100%;
    max-width: 208px;
    min-height: 98px;
    padding: 10px 20px;
    border: 4px solid #ffffff;
    border-radius: 24px;
    font-family: "Myriad Pro", sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 2.25vw, 2.25rem);
    letter-spacing: -0.01em;
    color: #000000;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.45);
    transition: all 0.3s ease;
}

.btn-orange-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #000000;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* SEC 3 */
.data-decisions-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* Permite crescer se o accordion abrir */
    padding: clamp(40px, 5vw, 80px) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* OVERLAY LARANJA DE LARGURA TOTAL (Atrás do container) */
.data-decisions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    /* Cobrirá a metade superior por trás do card */
    pointer-events: none;
    z-index: 0;
    /* Fica no fundo absoluto da seção */

    /* Gradiente Laranja de cima para baixo */
    background: linear-gradient(180deg,
            #ff5c13 0%,
            rgba(255, 92, 19, 0.6) 50%,
            rgba(255, 92, 19, 0) 100%);
}

.data-decisions-section .container {
    position: relative;
    z-index: 1;
    /* Fica ACIMA do overlay laranja */
    background-image: url("../img/sec-3-img-1.cefd4bb2b5b5.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: clamp(30px, 4vw, 60px);
    padding-bottom: clamp(40px, 5vw, 80px);
    border-radius: clamp(40px, 4.5vw, 60px);
}

.data-card-title {
    font-family: "Helvetica Neue LT", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 61.4px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0;
}

.custom-accordion {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.5vw, 20px);
    margin-top: clamp(24px, 3.5vw, 48px);
    /* Reduzido para caber confortavelmente */
    width: 100%;
}

/* Remove estilos padrão do Bootstrap */
.custom-accordion .accordion-item {
    background-color: #1e1e24;
    border: none;
    border-radius: clamp(16px, 2vw, 24px) !important;
    overflow: hidden;
}

/* Botão/Header do Accordion */
.custom-accordion .accordion-button {
    background-color: transparent;
    color: #ffffff;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-weight: 400;
    padding: clamp(16px, 2vw, 24px) clamp(20px, 2.5vw, 32px);
    box-shadow: none !important;
    border: none;
}

.custom-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
    background-size: clamp(1rem, 1.2vw, 1.4rem);
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #ffffff;
    box-shadow: none;
}

.accordion-title-wrapper {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.5vw, 20px);
}

.accordion-title-wrapper span {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(1.1rem, 2vw, 28px);
    font-weight: 300;
    font-stretch: condensed;
    line-height: 1.2;
    letter-spacing: 0;
    color: #ffffff;
}

.accordion-icon {
    width: clamp(24px, 2.5vw, 32px);
    height: clamp(24px, 2.5vw, 32px);
    object-fit: contain;
}

.glow-icon {
    filter: drop-shadow(0px 0px 10px #0066ff);
}

.custom-accordion .accordion-body {
    color: #d1d1d6;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    line-height: 1.5;
    padding-left: clamp(56px, 5.5vw, 84px);
    padding-right: clamp(20px, 2.5vw, 32px);
    padding-bottom: clamp(20px, 2.5vw, 28px);
    padding-top: 0;
}

.data-card-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.5vw, 20px);
    margin-top: clamp(28px, 4vw, 48px);
    width: 100%;
    flex-wrap: wrap;
}

.data-card-actions .btn {
    font-family: "Myriad Pro", sans-serif;
    font-size: clamp(1rem, 1.8vw, 24px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #ffffff;
    padding: clamp(12px, 1.2vw, 16px) clamp(24px, 2.5vw, 40px);
    border-radius: clamp(12px, 1.5vw, 18px);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-primary-blue {
    background-color: #174883;
    color: #ffffff;
    border: 2px solid transparent;
}

.btn-primary-blue:hover {
    background-color: #1a5395;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-2px);
}

/* SEC 4 */
/* Seção Externa */
.hotel-features-section {
    width: 100%;
    padding: clamp(40px, 5vw, 80px) 0;
}

.hotel-features-section .container {
    height: 100%;
    width: 100%;
    display: block;
    /* Garante que o container ocupe toda a largura da grid */
}

.hotel-features-section .container-text {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
}

/* Card Laranja */
.orange-card {
    background-color: #f15a24;
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centraliza o cabeçalho e a lista de pills no meio do card */
    box-sizing: border-box;

    border-radius: clamp(30px, 4.5vw, 60px);
    padding: clamp(40px, 6vw, 80px) clamp(24px, 4vw, 60px);
    gap: clamp(35px, 5vw, 65px);
}


.orange-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centraliza logo + texto */
    text-align: left;
}

.orange-card-title {
    font-family: "Helvetica Neue LT Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(2rem, 4.5vw, 66.67px);
    /* Varia de ~32px no mobile até 66.67px no desktop */
    line-height: 1;
    /* Mantém a proporção exata do 66.67px de entrelinha */
    font-weight: 900;
    /* Heavy */
    font-stretch: expanded;
    /* Extended */
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0;
}

.orange-card-logo {
    width: clamp(60px, 8vw, 110px);
    height: auto;
}

/* Wrapper de Tags/Pills */
.features-pills-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centraliza as linhas de pills */
    width: 100%;
    gap: clamp(10px, 1.2vw, 16px);
}

.pills-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* Centraliza as pills dentro de cada linha */
    gap: clamp(10px, 1.2vw, 16px);
    width: 100%;
}

/* Pill/Tag Individual */
.feature-pill {
    background-color: #1a1a1a;
    border-radius: clamp(14px, 1.8vw, 24px);
    padding: clamp(12px, 1.4vw, 18px) clamp(20px, 2.2vw, 32px);

    display: inline-flex;
    align-items: center;
    gap: clamp(12px, 1.5vw, 20px);

    width: fit-content;
}

.pill-icon {
    width: clamp(24px, 2.5vw, 36px);
    height: clamp(24px, 2.5vw, 36px);
    object-fit: contain;
}

.feature-pill span {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(1.1rem, 2.4vw, 36px);
    font-weight: 300;
    /* Light */
    font-stretch: condensed;
    /* Condensed */
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    white-space: nowrap;
}

/* SEC 5 */
.stats-carousel-section {
    width: 100%;
    padding: clamp(30px, 4vw, 60px) 0;
    overflow: hidden;
}

.stats-carousel-section .container {
    max-width: 1000px !important;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-swiper {
    width: 100%;
    overflow: visible !important;

    -webkit-mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.2) 15%,
            rgba(0, 0, 0, 1) 35%,
            rgba(0, 0, 0, 1) 65%,
            rgba(0, 0, 0, 0.2) 85%,
            rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.2) 15%,
            rgba(0, 0, 0, 1) 35%,
            rgba(0, 0, 0, 1) 65%,
            rgba(0, 0, 0, 0.2) 85%,
            rgba(0, 0, 0, 0) 100%);
}

.stats-swiper .swiper-wrapper {
    align-items: center;
}

.stats-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.35;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0.92);
    user-select: none;
}

.stats-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* Padrão Tema Escuro */
.stat-number {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 64px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(0.9rem, 1.4vw, 20px);
    font-weight: 300;
    color: #ffffff;
    margin-top: 6px;
    white-space: nowrap;
}


/* ==========================================
   REGRA PARA O TEMA CLARO E CLARO-B NA SEC 5
   ========================================== */
.tema-claro .stat-number,
.tema-claro-b .stat-number {
    color: #222222 !important;
}

.tema-claro .stat-label,
.tema-claro-b .stat-label {
    color: #222222 !important;
}

/* SEC 6 */
.banner-plans-section {
    width: 100%;
    padding: clamp(30px, 4vw, 60px) 0;
}

.banner-plans-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    /* Altura proporcional que chega exatamente aos 875px no desktop */
    height: clamp(400px, 60vw, 875px);
    border-radius: clamp(30px, 4.5vw, 60px);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    cursor: pointer;
}

/* Imagem de Fundo e Animação de Zoom Leve */
.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s ease;
}

.banner-plans-card:hover .banner-bg {
    transform: scale(1.03);
    /* Dá um zoom sutil ao passar o mouse */
}

/* Overlay do Degradê Azul (Inicia invisível e surge no hover) */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* Degradê azul suave de baixo para cima */
    background: linear-gradient(to top,
            rgba(26, 21, 80, 0.95) 0%,
            rgba(30, 25, 95, 0.6) 35%,
            rgba(0, 0, 0, 0) 70%);
    opacity: 0;
    /* Padrão invisível */
    transition: opacity 0.5s ease;
}

.banner-plans-card:hover .banner-overlay {
    opacity: 1;
    /* Transição suave para o azul surgir no hover */
}

/* Conteúdo de Texto e Seta */
.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding-bottom: clamp(30px, 5vw, 60px);
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 3vw, 35px);
}

.banner-title {
    font-family: "Helvetica Neue LT Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(2rem, 4.5vw, 66.67px);
    font-weight: 900;
    /* Heavy */
    font-stretch: expanded;
    /* Extended */
    line-height: 1;
    /* Mantém 66.67px exato */
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0;
    text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
}

.banner-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: clamp(24px, 2.6vw, 38px);
    transition: transform 0.4s ease;
}

.banner-arrow svg {
    height: 100%;
    width: auto;
    display: block;
}

/* Animação suave ao passar o mouse */
.banner-plans-card:hover .banner-arrow {
    transform: translateY(10px);
}

/* SEC 7 - Tabela de Preços / Planos */
.pricing-section {
    width: 100%;
    padding: clamp(40px, 6vw, 90px) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 32px);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Responsividade para telas menores */
@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

/* Base dos Cards (Brancos por padrão) */
.pricing-card {
    background-color: #ffffff;
    border-radius: clamp(24px, 3.5vw, 40px);
    padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #000000;
    transition: background-color 0.4s ease, transform 0.3s ease, color 0.4s ease, box-shadow 0.4s ease;
}

/* Hover: Transiciona para Azul Escuro */
.pricing-card:hover {
    background-color: #11103a;
    color: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Cabeçalho do Card */
.card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: clamp(24px, 3vw, 36px);
}

/* Troca de Imagem do Losango - Proporcional até 33px */
.diamond-wrapper {
    position: relative;
    width: clamp(22px, 2vw, 33px);
    height: clamp(22px, 2vw, 33px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.diamond-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease;
}

.diamond-img.default {
    opacity: 1;
}

.diamond-img.hover {
    opacity: 0;
}

.pricing-card:hover .diamond-img.default {
    opacity: 0;
}

.pricing-card:hover .diamond-img.hover {
    opacity: 1;
}

/* Nome do Plano */
.plan-name {
    font-family: "Helvetica Neue LT Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(1.4rem, 2.4vw, 38px);
    font-weight: 900;
    font-stretch: expanded;
    line-height: 1.07;
    letter-spacing: -0.01em;
    margin: 0;
    color: currentColor;
    transition: color 0.4s ease;
}
}

/* Lista de Recursos */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 clamp(32px, 4vw, 48px) 0;
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.5vw, 18px);
    width: 100%;
    align-items: flex-start;
    /* Alinha todo o bloco à esquerda */
    text-align: left;
}

/* Texto da Lista - Proporcional até 20px */
.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(0.8rem, 1.2vw, 20px);
    font-weight: 300;
    /* Light */
    font-stretch: condensed;
    /* Condensed */
    line-height: 1.25;
    letter-spacing: 0;
    color: currentColor;
    text-align: left;
    transition: color 0.4s ease;
}

/* Ícones de Check / Circulo (Escalando até 26px para acompanhar o texto de 31.82px) */
.icon-check,
.icon-circle {
    width: clamp(18px, 1.5vw, 26px);
    height: clamp(18px, 1.5vw, 26px);
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    /* Ajuste sutil para alinhar com a primeira linha do texto */
    transition: border-color 0.4s ease;
}

/* Ícone de Check (Verde) */
.icon-check {
    border: 2px solid #10b981;
}

.icon-check::after {
    content: "✓";
    font-size: clamp(10px, 1vw, 14px);
    font-weight: 800;
    color: #10b981;
}

/* Ícone de Círculo Inativo */
.icon-circle {
    border: 2px solid #a1a1aa;
}

.pricing-card:hover .icon-circle {
    border-color: #64748b;
}

.btn-plan {
    margin-top: auto;

    /* Dimensões do Photoshop com escala fluida */
    width: 100%;
    max-width: clamp(160px, 13.5vw, 236.55px);
    height: clamp(48px, 3.8vw, 66.72px);

    /* Bordas e Formato */
    border: 4px solid #000000;
    border-radius: clamp(16px, 1.5vw, 24px);
    background: transparent;

    /* Centralização do Texto */
    display: inline-flex;
    justify-content: center;
    align-items: center;

    /* Tipografia Myriad Pro Bold */
    font-family: "Myriad Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(1rem, 1.8vw, 32px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #000000;
    text-decoration: none;

    transition: all 0.4s ease;
}

/* Transição de cores no Hover do Card */
.pricing-card:hover .btn-plan {
    border-color: #ffffff;
    color: #ffffff;
}

/* Hover direto sobre o Botão */
.pricing-card:hover .btn-plan:hover {
    background-color: #ffffff;
    color: #11103a;
}

/* SEC 8 */
.cta-section {
    width: 100%;
    padding: clamp(60px, 8vw, 120px) 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Título */
.cta-title {
    font-family: "Helvetica Neue LT Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(2.2rem, 4.2vw, 66.67px);
    font-weight: 900;
    font-stretch: expanded;
    line-height: 1;
    letter-spacing: -0.01em;
    margin: 0 0 24px 0;
    color: #ffffff;
}

.cta-title .highlight {
    color: #ff5500;
}

/* Subtítulo */
.cta-subtitle {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(1rem, 2.2vw, 36px);
    font-weight: 300;
    font-stretch: condensed;
    line-height: 1.25;
    letter-spacing: 0;
    margin: 0 0 40px 0;
    color: #ffffff;
}

/* Botão CTA Final */
.btn-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: clamp(280px, 28vw, 467.66px);
    height: clamp(54px, 5vw, 82.07px);
    background-color: #ff5500;
    border: none;
    border-radius: clamp(16px, 1.5vw, 24px);
    font-family: "Myriad Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(1.1rem, 2vw, 32px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 85, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #e04b00;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 85, 0, 0.45);
}


/* ==========================================
   DEGRADÊ DE BAIXO PARA CIMA (COM TRANSPARÊNCIA)
   ========================================== */
.tema-claro .cta-section,
.tema-claro-b .cta-section {
    /* Começa com o azul forte embaixo e vai sumindo até ficar transparente no topo */
    background: linear-gradient(to top, #7fa0e3 0%, rgba(184, 205, 233, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}

/* FOOTER */
.footer-custom {
    background-color: #0c0b29;
    /* Fundo azul bem escuro da imagem */
    color: #8fa0dd;
    padding: 60px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.footer-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.footer-text {
    color: #8c99bf;
    font-size: 0.88rem;
    line-height: 1.5;
    max-width: 320px;
}

.footer-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #8c99bf;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* ==================== MEDIA QUERIES (RESPONSIVIDADE) ==================== */

/* Telas Ultra-Wide e Monitores Grandes (1920px ou mais) */
@media (min-width: 1920px) {
    .container {
        max-width: 1440px !important;
    }
}

/* Notebooks Grandes / Telas Desktop Padrão (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919.98px) {
    .container {
        max-width: 1280px !important;
    }
}

/* Notebooks Médios (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439.98px) {
    .container {
        max-width: 1140px !important;
    }
}

/* Laptops / Telas Menores (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .container {
        max-width: 960px !important;
    }
}

/* DESKTOP A PARTIR DE 992px (Comportamento normal do Offcanvas) */
@media (min-width: 992px) {
    .offcanvas {
        position: static !important;
        visibility: visible !important;
        transform: none !important;
        background-color: transparent !important;
        width: auto !important;
        border: none !important;
    }

    .offcanvas-header {
        display: none !important; /* Esconde o topo/fechar do offcanvas no PC */
    }

    .offcanvas-body {
        display: flex !important;
        padding: 0 !important;
    }
}

/* Tablets e Dispositivos Móveis (Até 991px) */
@media (max-width: 991.98px) {
    .container {
        width: 100% !important;
        padding-left: 20px;
        padding-right: 20px;
    }

    .container-text {
        width: 100%;
    }

    /* 1. Posicionamento da Nav no Mobile */
    .navbar {
        position: relative !important;
        top: 0 !important;
        background-color: #05081c !important;
        padding: 12px 20px !important;
    }

    /* 2. Menu Offcanvas Mobile (Gaveta deslizando da direita) */
    .offcanvas-end {
        background-color: #05081c !important;
        width: 280px !important;
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .offcanvas-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px;
    }

    .offcanvas-body {
        padding: 30px 20px;
    }

    /* 3. Alinhamento dos links dentro do Offcanvas */
    .offcanvas-body .navbar-nav {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .offcanvas-body .nav-link {
        font-size: 1.1rem;
        color: #ffffff !important;
    }

    .offcanvas-body .btn-outline-white {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    /* 4. Garantir que a nav fixa do scroll continue funcionando perfeita no mobile */
    .navbar.is-fixed {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
    }

    /* HERO */
    .hero {
        min-height: 520px !important;
    }

    .hero-card {
        border-radius: 0 !important;
        min-height: 520px !important;
        justify-content: flex-end !important; 
        padding-bottom: 30px !important;
    }

    /* SEC 2 */
    /* 1. Alinha os blocos de recursos centralizados */
    .features-section .feature-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    /* 2. Centraliza os títulos e textos de dentro dos cards */
    .data-card-title, 
    .features-section h3, 
    .features-section p,
    .features-section .feature-title {
        text-align: center !important;
        width: 100% !important;
    }

    /* 3. Centraliza a imagem da IA (Card de cima) */
    .features-section .feature-icon-wrapper {
        margin-left: auto !important;
        margin-right: auto !important;
        float: none !important;
        display: flex !important;
        justify-content: center !important;
    }

    .features-section .feature-ico {
        display: block !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        height: auto !important;
    }

    /* 4. Ajuste da imagem de canais/logos (Card de baixo) com max-width */
    .features-section .col-md-6:nth-child(2) img,
    .features-section img.channels-img {
        max-width: 85% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 10px auto !important;
    }

    /* 5. Botões lado a lado com fonte maior e quebra de linha permitida */
    .features-section .d-flex:has(.btn),
    .features-section .buttons-wrapper {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .features-section .btn {
        width: 48% !important;
        font-size: 0.95rem !important; /* Fonte maior */
        padding: 12px 6px !important;
        white-space: normal !important; /* Permite quebrar a linha naturalmente */
        line-height: 1.2 !important;
    }

    /* SEC 3 - Ajustes finais: Margens laterais, imagem menor e texto à esquerda */
    
    /* 1. Dá espaçamento nas laterais da seção inteira */
    .data-decisions-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .data-decisions-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }

    /* 2. Garante padding interno no card azul para o conteúdo não colar nas bordas dele */
    .data-decisions-section .data-card {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* 3. Header organizado: imagem menor à esquerda e texto alinhado à esquerda */
    .data-decisions-section .data-card-header {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 15px !important;
    }

    /* 4. Imagem da IA reduzida */
    .data-decisions-section .data-card-logo {
        max-width: 55px !important;
        width: 100% !important;
        height: auto !important;
        flex-shrink: 0 !important;
    }

    /* 5. Texto perfeitamente alinhado à esquerda */
    .data-decisions-section .data-card-title {
        text-align: left !important;
        width: 100% !important;
        font-size: 1.15rem !important;
    }

    /* 6. Alinhar os botões lado a lado */
    .data-decisions-section .data-card-actions {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .data-decisions-section .data-card-actions .btn {
        width: 48% !important;
        font-size: 0.85rem !important;
        padding: 12px 6px !important;
        white-space: nowrap !important;
    }

    /* SEC 4 (Hotel Features) - Ajustes de layout mobile */
    
    /* 1. Margens laterais na seção inteira */
    .hotel-features-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .hotel-features-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }

    /* 2. Padding interno no card laranja */
    .hotel-features-section .orange-card {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* 3. Header organizado à esquerda */
    .hotel-features-section .orange-card-header {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 15px !important;
    }

    /* 4. Imagem da IA menor */
    .hotel-features-section .orange-card-logo {
        max-width: 55px !important;
        width: 100% !important;
        height: auto !important;
        flex-shrink: 0 !important;
    }

    /* 5. Título menor e alinhado à esquerda para caber perfeitamente */
    .hotel-features-section .orange-card-title {
        text-align: left !important;
        width: 100% !important;
        font-size: 1.15rem !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 768px) {
    .pills-row {
        flex-direction: column;
    }

    .feature-pill {
        width: 100%;
    }

    .feature-pill span {
        white-space: normal;
    }
}

@media (max-width: 576px) {
    .features-section {
        min-height: 650px;
        background-image: linear-gradient(to bottom,
                transparent 0%,
                #ff5c13 15%,
                #ff5c13 85%,
                transparent 100%);
    }

    .data-decisions-section {
        min-height: 700px;
    }
}