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

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100vw;
    background: #070c1f;
}

/* Barra de progresso de scroll */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFC700);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* Primeira seção fixa - apenas para telas não-mobile */
.first-section-fixed {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

@media (min-width: 769px) {
    .first-section-fixed {
        position: relative;
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        min-height: 100vh;
        overflow: hidden;
    }
}


/* Container da imagem de fundo */
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

@media (min-width: 769px) {
    .first-section-fixed .background-container {
        height: 100vh;
        max-height: 100vh;
        position: absolute;
    }
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.68);
    transform: scale(1.1);
}

/* Fallback quando a imagem não carrega */
.background-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: 0;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.12);
    z-index: 1;
}

/* Container principal do conteúdo */
.content-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    z-index: 1;
}

@media (min-width: 769px) {
    .first-section-fixed .content-container {
        height: 100vh;
        max-height: 100vh;
        min-height: 100vh;
        overflow: hidden;
        display: flex;
    }
}

/* Ajustes para telas grandes - reduzir espaçamento */
@media (min-width: 1400px) {
    .first-section-fixed .content-container {
        padding: 40px 5% 40px 20%;
        justify-content: flex-start;
        gap: 35px;
    }
    
    .first-section-fixed .left-section {
        padding-left: 0 !important;
        padding-right: 25px;
        padding-top: 40px;
        max-width: 48%;
        flex: 0 0 48%;
        align-items: flex-start;
    }
    
    .first-section-fixed .logo-container {
        margin-bottom: 30px;
    }
    
    .first-section-fixed .text-content {
        gap: 20px;
        margin-top: 0;
        margin-left: 0;
    }
    
    .first-section-fixed .cta-button {
        margin-left: 0;
    }
    
    .first-section-fixed .right-section {
        padding-right: 0;
        padding-left: 25px;
        max-width: 48%;
        flex: 0 0 48%;
        justify-content: flex-start;
    }
}

/* Ajustes para telas muito grandes */
@media (min-width: 1920px) {
    .first-section-fixed .content-container {
        padding: 30px 5% 30px 22%;
        gap: 30px;
    }
    
    .first-section-fixed .left-section {
        padding-left: 0 !important;
        padding-right: 20px;
        padding-top: 30px;
        max-width: 48%;
        flex: 0 0 48%;
    }
    
    .first-section-fixed .logo-container {
        margin-bottom: 25px;
    }
    
    .first-section-fixed .text-content {
        gap: 18px;
    }
    
    .first-section-fixed .right-section {
        padding-right: 0;
        padding-left: 20px;
        max-width: 48%;
        flex: 0 0 48%;
    }
}

/* Seção esquerda */
.left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 120px;
    padding-top: 60px;
    z-index: 2;
    max-width: 50%;
}

/* Container do logo */
.logo-container {
    margin-bottom: 40px;
    width: 100%;
}

.logo {
    max-width: 260px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.9s ease;
}

.logo.is-visible {
    opacity: 1;
}

/* Controle de exibição das logos - Mobile e Web */
.logo-mobile {
    display: block;
}

.logo-web {
    display: none;
}

/* Na versão web, exibir LogoWeb e ocultar MORE_COOKIE */
@media (min-width: 769px) {
    .logo-mobile {
        display: none;
    }
    
    .logo-web {
        display: block;
    }
}

/* Na versão mobile, exibir MORE_COOKIE e ocultar LogoWeb */
@media (max-width: 768px) {
    .logo-mobile {
        display: block;
    }
    
    .logo-web {
        display: none;
    }
}

.logo-placeholder,
.place-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    min-width: 200px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Conteúdo de texto */
.text-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 10px;
    margin-left: 15px;
}

.main-text {
    color: #ffffff;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInLeft 1s ease-out 0.2s both;
}

/* Botão CTA */
.cta-button {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    background-size: 200% 100%;
    color: #000000;
    border: none;
    padding: 20px 50px;
    font-size: 24px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInLeft 1s ease-out 0.4s both, gradientShift 3s ease infinite;
    max-width: fit-content;
    margin-left: 15px;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: inline-block;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s ease-in-out infinite;
}

.cta-button .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.cta-button:active {
    transform: translateY(0);
}

/* Seção direita */
.right-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 40px;
    z-index: 2;
    max-width: 50%;
}

/* Container da imagem do lugar */
.place-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.place-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.9s ease;
}

.place-image.is-visible {
    opacity: 1;
}

.place-placeholder {
    max-width: 500px;
    min-height: 300px;
}

/* Caixa de informações branca */
.info-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.info-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 35px;
    color: #1a237e;
}

.title-normal {
    color: #1a237e;
}

.title-highlight {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

/* Lista de benefícios */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.benefit-item {
    background: #f0f0f0;
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 17px;
    color: #333333;
    font-weight: 500;
    line-height: 1.5;
}


/* Animações */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

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

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

/* Animação de gradiente */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Efeito de brilho nos botões */
@keyframes shine {
    0% {
        left: -100%;
    }
    20%, 100% {
        left: 100%;
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .content-container {
        flex-direction: column;
        gap: 24px;
        padding: 30px 20px;
    }

    .left-section {
        max-width: 100%;
        padding-left: 0;
        padding-top: 20px;
        align-items: center;
        text-align: center;
        display: contents;
    }

    .right-section {
        max-width: 100%;
        padding-right: 0;
        justify-content: center;
        order: 2;
    }

    .logo-container {
        order: 1;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .text-content {
        order: 3;
    }

    .logo {
        max-width: 300px;
    }

    .place-image {
        max-width: 400px;
    }

    .main-text {
        font-size: 28px;
        text-align: center;
    }

    .cta-button {
        align-self: center;
        margin-left: 0;
    }

    .info-box {
        padding: 30px 25px;
    }

    .info-title {
        font-size: 28px;
    }

    .cookie-image {
        max-width: 320px;
    }

    .cookie-wrapper::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .content-container {
        padding: 20px 15px;
    }

    .left-section {
        padding-top: 10px;
    }

    .logo {
        max-width: 250px;
    }

    .place-image {
        max-width: 300px;
    }

    .main-text {
        font-size: 24px;
    }

    .cta-button {
        padding: 18px 35px;
        font-size: 22px;
        margin-left: 0;
        width: auto;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
    }
}

/* Ajustes para telas menores - primeira seção */
@media (max-width: 480px) {
    .cta-button {
        padding: 16px 28px;
        font-size: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 360px) {
    .cta-button {
        padding: 14px 24px;
        font-size: 18px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* ============================================
   NOVA SEÇÃO - FUNDO TEXTURIZADO
   ============================================ */

.second-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.textured-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.textured-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.second-content-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    z-index: 1;
}

.second-left-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    z-index: 2;
    max-width: 50%;
}

.cookie-wrapper-second {
    position: relative;
    max-width: 500px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cookie-image-second {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    z-index: 1;
    transition: all 0.6s ease;
}

.cookie-image-second:hover {
    transform: scale(1.02);
    box-shadow: none;
}

.cookie-image-second.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.8s ease forwards;
}

/* Borda amarela decorativa na segunda seção */
.cookie-wrapper-second::before {
    content: '';
    position: absolute;
    left: 18px;
    bottom: 30px;
    width: 55%;
    height: 55%;
    border-left: 8px solid #FFD700;
    border-bottom: 8px solid #FFD700;
    border-radius: 0 0 0 20px;
    z-index: 0;
    animation: float 3s ease-in-out infinite;
}

/* Borda amarela decorativa na parte superior direita */
.cookie-wrapper-second::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 30px;
    width: 55%;
    height: 55%;
    border-right: 8px solid #FFD700;
    border-top: 8px solid #FFD700;
    border-radius: 0 20px 0 0;
    z-index: 0;
    animation: float 3s ease-in-out infinite;
}

.second-right-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    z-index: 2;
    max-width: 50%;
}

.info-box-second {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.6s ease;
}

.info-box-second:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.info-box-second.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.8s ease forwards;
}

.info-title-second {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 35px;
    color: #1a237e;
}

.title-normal-second {
    color: #1a237e;
}

.title-highlight-second {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.benefits-list-second {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.benefit-item-second {
    background: #f0f0f0;
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 20px;
    color: #333333;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.benefit-item-second:hover {
    background: #e8e8e8;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-button-second {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    background-size: 200% 100%;
    color: #1a237e;
    border: none;
    padding: 22px 60px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 100%;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
    text-align: center;
}

.cta-button-second::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s ease-in-out infinite;
    animation-delay: 1s;
}

.cta-button-second .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(13, 21, 51, 0.2);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

.cta-button-second:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.differentials-cta-button:hover {
    background: #FFC700;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.cta-button-second:active {
    transform: translateY(0);
}

/* Responsividade para a segunda seção */
@media (max-width: 1024px) {
    .second-content-container {
        flex-direction: column;
        gap: 40px;
        padding: 40px 30px;
    }

    .second-left-section {
        max-width: 100%;
        padding: 20px;
        order: 2;
    }
    
    .second-right-section {
        max-width: 100%;
        padding: 20px;
        order: 1;
    }

    .info-box-second {
        padding: 30px 25px;
    }

    .info-title-second {
        font-size: 34px;
    }

    .cookie-image-second {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .second-content-container {
        padding: 30px 20px;
    }

    .info-title-second {
        font-size: 28px;
    }

    .benefit-item-second {
        font-size: 18px;
        padding: 15px 20px;
    }

    .cta-button-second {
        padding: 20px 50px;
        font-size: 22px;
    }
    
    .cookie-wrapper-second::before {
        left: 0px;
        bottom: 0px;
        width: 50%;
        height: 50%;
        border-left: 6px solid #FFD700;
        border-bottom: 6px solid #FFD700;
        z-index: 0;
    }
    
    .cookie-wrapper-second::after {
        right: -15px;
        top: 0px;
        width: 50%;
        height: 50%;
        border-right: 6px solid #FFD700;
        border-top: 6px solid #FFD700;
        z-index: 0;
    }
}

/* ============================================
   SEÇÃO DIFERENCIAIS DO MODELO
   ============================================ */

.differentials-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #0d1533;
    background-image: url('assets/Azul_texturizado.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px 80px;
}

.differentials-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.differentials-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 40px 0;
    transition: all 0.8s ease;
}

.differentials-title.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInDown 0.8s ease forwards;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 50px;
}

.differential-box {
    background: #2a3a7a;
    border-radius: 12px;
    padding: 22px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.differential-box.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.differential-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

    .differential-box-center {
        grid-column: 2;
    }
    
    .differential-box {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

.differential-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.differential-icon svg {
    transition: transform 0.3s ease;
}

.differential-box:hover .differential-icon svg {
    animation: pulse 1s ease infinite;
}

.differential-icon svg {
    width: 100%;
    height: 100%;
}

.differential-text {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
    flex: 1;
}

.differential-box:hover .differential-text {
    color: #FFD700;
}

.differentials-cta-button {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    background-size: 200% 100%;
    color: #1a237e;
    border: none;
    padding: 22px 120px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    width: auto;
    min-width: 400px;
    position: relative;
    animation: gradientShift 3s ease infinite;
    overflow: hidden;
    text-align: center;
    line-height: 1.4;
}

.differentials-cta-button.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.8s ease forwards, gradientShift 3s ease infinite;
}

.differentials-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s ease-in-out infinite;
    animation-delay: 2s;
}

.differentials-cta-button .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

.differentials-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.differentials-cta-button:active {
    transform: translateY(0);
}

/* Responsividade para Diferenciais */
@media (max-width: 1024px) {
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .differential-box-center {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .differentials-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .differentials-section {
        padding: 60px 20px;
    }

    .differentials-container {
        gap: 40px;
        text-align: center;
    }

    .differentials-title {
        font-size: 38px;
    }

    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .differential-box-center {
        grid-column: 1;
    }

    .differential-box {
        padding: 24px 20px;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .differential-text {
        font-size: 17px;
    }
    
    .differential-icon {
        min-width: 50px;
        width: 50px;
        height: 50px;
    }

    .differentials-cta-button {
        padding: 22px 36px;
        font-size: 22px;
        min-width: 310px;
        width: auto;
        max-width: 420px;
        text-align: center;
        line-height: 1.5;
        display: inline-block;
        white-space: normal;
        margin: 0 auto;
    }
}

/* ============================================
   SEÇÃO DE RESULTADOS
   ============================================ */

.results-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.textured-background-results {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.textured-bg-image-results {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.results-content-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    z-index: 1;
}

.results-left-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    z-index: 2;
    max-width: 50%;
}

.cookie-wrapper-results {
    position: relative;
    max-width: 540px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cookie-image-results {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    z-index: 1;
    transition: all 0.6s ease;
}

.cookie-image-results.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.8s ease forwards;
}

.cookie-image-results:hover {
    transform: scale(1.02);
    box-shadow: none;
}

/* Borda amarela decorativa na seção de resultados */
.cookie-wrapper-results::before {
    content: '';
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 55%;
    height: 55%;
    border-left: 8px solid #FFD700;
    border-bottom: 8px solid #FFD700;
    border-radius: 0 0 0 20px;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

/* Borda amarela decorativa na parte superior direita - seção de resultados */
.cookie-wrapper-results::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 20px;
    width: 55%;
    height: 55%;
    border-right: 8px solid #FFD700;
    border-top: 8px solid #FFD700;
    border-radius: 0 20px 0 0;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.results-right-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    z-index: 2;
    max-width: 50%;
}

.results-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.6s ease;
}

.results-box.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.8s ease forwards;
}

.results-box:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.results-title {
    font-size: 44px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 40px;
    line-height: 1.3;
}

.results-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.result-card {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    background-size: 200% 100%;
    border-radius: 12px;
    padding: 28px 32px;
    text-align: center;
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite;
}

.result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.result-value {
    font-size: 52px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
    line-height: 1.2;
}

.result-label {
    font-size: 20px;
    font-weight: 500;
    color: #333333;
    line-height: 1.4;
}

.results-disclaimer {
    font-size: 17px;
    color: #666666;
    text-align: center;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* Responsividade para Seção de Resultados */
@media (max-width: 1024px) {
    .results-content-container {
        flex-direction: column;
        gap: 40px;
        padding: 40px 30px;
    }

    .results-left-section {
        max-width: 100%;
        padding: 20px;
        order: 2;
    }
    
    .results-right-section {
        max-width: 100%;
        padding: 20px;
        order: 1;
    }

    .results-box {
        padding: 40px 30px;
    }

    .results-title {
        font-size: 40px;
    }

    .cookie-image-results {
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .results-content-container {
        padding: 30px 20px;
    }

    .results-title {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .result-value {
        font-size: 44px;
    }

    .result-label {
        font-size: 19px;
    }

    .results-disclaimer {
        font-size: 15px;
    }

    .cookie-image-results {
        max-width: 380px;
    }
    
    .cookie-wrapper-results::before {
        left: 0px;
        bottom: 0px;
        width: 50%;
        height: 50%;
        border-left: 6px solid #FFD700;
        border-bottom: 6px solid #FFD700;
        z-index: 0;
    }
    
    .cookie-wrapper-results::after {
        right: -15px;
        top: 0px;
        width: 50%;
        height: 50%;
        border-right: 6px solid #FFD700;
        border-top: 6px solid #FFD700;
        z-index: 0;
    }
}

/* ============================================
   SEÇÃO DE VÍDEO
   ============================================ */

.video-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #0d1533;
    background-image: url('assets/Azul_texturizado.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.video-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.video-title {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin: 0;
    line-height: 1.2;
    transition: all 0.8s ease;
    animation: gradientShift 3s ease infinite;
}

.video-title.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInDown 0.8s ease forwards;
}

.video-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin: 0;
    line-height: 1.5;
    transition: all 0.8s ease;
}

.video-subtitle.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.8s ease forwards;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    background: #2a3a7a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.8s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: scaleIn 0.8s ease forwards;
}

.video-player {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
    border-radius: 16px;
    background: #000;
}

/* Estilizar controles do vídeo */
.video-player::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.7);
}

.video-player::-webkit-media-controls-play-button,
.video-player::-webkit-media-controls-pause-button {
    background-color: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 21, 51, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.video-overlay:hover {
    background: rgba(13, 21, 51, 0.5);
}

.play-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button:active {
    transform: scale(0.95);
}

.play-button svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: opacity 0.3s ease;
}

/* Indicador de carregamento do vídeo */
.play-button::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-button.loading::after {
    opacity: 1;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.video-cta-button {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    background-size: 200% 100%;
    color: #1a237e;
    border: none;
    padding: 22px 120px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    width: auto;
    min-width: 400px;
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
    text-align: center;
}

.video-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.video-cta-button.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.8s ease forwards, gradientShift 3s ease infinite;
}

.video-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.video-cta-button:active {
    transform: translateY(0);
}

.video-cta-button .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(13, 21, 51, 0.2);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

/* Responsividade para Seção de Vídeo */
@media (max-width: 1024px) {
    .video-section {
        padding: 60px 30px;
    }

    .video-title {
        font-size: 36px;
    }

    .video-subtitle {
        font-size: 18px;
    }

    .video-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 40px 20px;
    }

    .video-container {
        gap: 30px;
    }

    .video-title {
        font-size: 32px;
    }

    .video-subtitle {
        font-size: 16px;
    }

    .video-cta-button {
        padding: 20px 80px;
        font-size: 24px;
        min-width: 320px;
        width: 100%;
        max-width: 450px;
    }

    .play-button svg {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   SEÇÃO SUPORTE COMPLETO
   ============================================ */

.support-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #0d1533;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    overflow: hidden;
}

.support-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.support-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    z-index: 1;
}

.support-title {
    font-size: 60px;
    font-weight: 700;
    color: #FFD700;
    text-align: center;
    margin: 0;
    line-height: 1.2;
    transition: all 0.8s ease;
}

.support-title.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInDown 0.8s ease forwards;
}

.support-content {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.support-box {
    background: #2a3a7a;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.8s ease;
    width: 100%;
    max-width: 1100px;
}

.support-box-inner {
    display: flex;
    gap: 40px;
    align-items: center;
}

.support-left {
    flex: 1;
    min-width: 0;
}

.support-box.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInLeft 0.8s ease forwards;
}

.support-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.4;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.5;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.support-right {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.support-images {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.support-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Borda amarela decorativa nas imagens de suporte - inferior esquerda */
.support-image-wrapper::before {
    content: '';
    position: absolute;
    left: 15px;
    bottom: 15px;
    width: 55%;
    height: 55%;
    border-left: 8px solid #FFD700;
    border-bottom: 8px solid #FFD700;
    border-radius: 0 0 0 20px;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
    pointer-events: none;
}

/* Borda amarela decorativa nas imagens de suporte - superior direita */
.support-image-wrapper::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 15px;
    width: 55%;
    height: 55%;
    border-right: 8px solid #FFD700;
    border-top: 8px solid #FFD700;
    border-radius: 0 20px 0 0;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
    pointer-events: none;
}

.support-image {
    width: 300px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.support-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.support-image:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: none;
}

.support-image:hover::before {
    left: 100%;
}

.support-image-left {
    animation: float 4s ease-in-out infinite;
}

.support-image-right {
    animation: float 4s ease-in-out infinite 0.5s;
}

.support-image.is-visible {
    opacity: 1 !important;
    transform: translateX(0) !important;
    animation: fadeInRight 0.8s ease forwards, float 4s ease-in-out infinite;
}

.support-image-right.is-visible {
    animation: fadeInRight 0.8s ease forwards, float 4s ease-in-out infinite 0.5s;
}

.support-image:hover {
    transform: scale(1.05);
}

.support-cta-button {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    background-size: 200% 100%;
    color: #1a237e;
    border: none;
    padding: 22px 120px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    width: auto;
    min-width: 400px;
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
    text-align: center;
}

.support-cta-button.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.8s ease forwards, gradientShift 3s ease infinite;
}

.support-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.support-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.support-cta-button:active {
    transform: translateY(0);
}

.support-cta-button .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(13, 21, 51, 0.2);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

/* Responsividade para Seção Suporte */
@media (max-width: 1024px) {
    .support-box-inner {
        flex-direction: column;
        gap: 30px;
    }

    .support-right {
        width: 100%;
    }

    .support-images {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    .support-image {
        width: 220px;
    }
    
    .support-image-wrapper::before {
        left: 10px;
        bottom: 10px;
        width: 50%;
        height: 50%;
        border-left: 6px solid #FFD700;
        border-bottom: 6px solid #FFD700;
    }
    
    .support-image-wrapper::after {
        right: -2px;
        top: 10px;
        width: 50%;
        height: 50%;
        border-right: 6px solid #FFD700;
        border-top: 6px solid #FFD700;
    }
}

@media (max-width: 768px) {
    .support-section {
        padding: 60px 20px;
    }

    .support-container {
        gap: 40px;
    }

    .support-title {
        font-size: 48px;
    }

    .support-box {
        padding: 30px 25px;
    }

    .support-box-inner {
        gap: 25px;
    }

    .support-subtitle {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .support-item {
        font-size: 20px;
    }

    .support-images {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .support-image {
        width: 100%;
        max-width: 300px;
    }
    
    .support-image-wrapper::before {
        left: 0px;
        bottom: 0px;
        width: 50%;
        height: 50%;
        border-left: 6px solid #FFD700;
        border-bottom: 6px solid #FFD700;
    }
    
    .support-image-wrapper::after {
        right: -15px;
        top: 0px;
        width: 50%;
        height: 50%;
        border-right: 6px solid #FFD700;
        border-top: 6px solid #FFD700;
        z-index: 0;
    }

    .support-cta-button {
        padding: 20px 80px;
        font-size: 24px;
        min-width: 320px;
        width: 100%;
        max-width: 450px;
    }
}

/* ============================================
   SEÇÃO HISTÓRIA
   ============================================ */

.history-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    overflow: hidden;
}

.history-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.history-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history-container {
    position: relative;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    z-index: 1;
}

.history-title {
    font-size: 54px;
    font-weight: 700;
    color: #1a237e;
    text-align: center;
    margin: 0;
    line-height: 1.3;
    transition: all 0.8s ease;
}

.history-title.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInDown 0.8s ease forwards;
}

.history-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.history-text {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    line-height: 1.7;
    margin: 0;
    text-align: center;
    transition: all 0.8s ease;
}

.history-text-normal {
    font-weight: 400;
}

.history-text-light {
    color: #333333;
    font-weight: 700;
    font-size: 22px;
    font-style: italic;
}

.history-text-center {
    text-align: center;
}

.history-text.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.8s ease forwards;
}

.history-cta-button {
    background: linear-gradient(90deg, #FF6B35 0%, #FFD700 100%);
    background-size: 200% 100%;
    color: #333333;
    border: none;
    padding: 22px 120px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    width: auto;
    min-width: 400px;
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
    text-align: center;
}

.history-cta-button.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.8s ease forwards, gradientShift 3s ease infinite;
}

.history-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s ease-in-out infinite;
    animation-delay: 1s;
}

.history-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.history-cta-button:active {
    transform: translateY(0);
}

.history-cta-button .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(51, 51, 51, 0.2);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

/* Responsividade para Seção História */
@media (max-width: 1024px) {
    .history-container {
        max-width: 800px;
    }

    .history-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .history-section {
        padding: 60px 20px;
    }

    .history-container {
        gap: 30px;
    }

    .history-title {
        font-size: 42px;
    }

    .history-text {
        font-size: 22px;
    }
    
    .history-text-light {
        font-size: 20px;
    }

    .history-cta-button {
        padding: 20px 80px;
        font-size: 24px;
        min-width: 320px;
        width: 100%;
        max-width: 450px;
    }
}

/* ============================================
   SEÇÃO FINAL
   ============================================ */

.final-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.final-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
}

.final-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 80px 60px;
    color: #333333;
}

.final-title {
    font-size: 52px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 30px;
    line-height: 1.2;
}

.final-text {
    font-size: 22px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.final-text strong {
    font-weight: 700;
    color: #1a237e;
}

.final-subtitle {
    font-size: 26px;
    font-weight: 700;
    color: #333333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.final-locations {
    font-size: 20px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 40px;
}

.final-box {
    background: #1a237e;
    color: #ffffff;
    padding: 30px 35px;
    border-radius: 12px;
    margin-top: 30px;
}

.final-box p {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

/* Responsividade para Seção Final */
@media (max-width: 1024px) {
    .final-content {
        max-width: 500px;
        padding: 60px 40px;
    }
    
    .final-title {
        font-size: 44px;
    }
    
    .final-text {
        font-size: 20px;
    }
    
    .final-subtitle {
        font-size: 24px;
    }
    
    .final-locations {
        font-size: 18px;
    }
    
    .final-box p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .final-section {
        justify-content: center;
        align-items: flex-start;
        padding: 0;
        min-height: 100vh;
        overflow: hidden;
        position: relative;
    }
    
    .final-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 100%;
        max-width: 100vw;
        object-fit: cover;
        object-position: center;
    }
    
    .final-content {
        max-width: 100%;
        padding: 30px 15px;
        margin: 0;
        width: 100%;
        min-height: 100vh;
        box-sizing: border-box;
        position: relative;
        background: rgba(255, 255, 255, 0.55);
        border-radius: 0;
        box-shadow: none;
        overflow-x: hidden;
    }
    
    .final-title {
        font-size: 32px;
        margin-bottom: 16px;
        line-height: 1.2;
        font-weight: 700;
        color: #1a237e;
        text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
        word-wrap: break-word;
    }
    
    .final-text {
        font-size: 16px;
        margin-bottom: 12px;
        line-height: 1.4;
        font-weight: 600;
        color: #1a1a1a;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
        word-wrap: break-word;
    }
    
    .final-text strong {
        font-weight: 700;
        color: #1a237e;
    }
    
    .final-subtitle {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 10px;
        font-weight: 700;
        color: #1a237e;
        text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
        word-wrap: break-word;
    }
    
    .final-locations {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 18px;
        font-weight: 600;
        color: #1a1a1a;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .final-box {
        padding: 14px 16px;
        margin-top: 18px;
        border-radius: 10px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
    }
    
    .final-box p {
        font-size: 14px;
        line-height: 1.4;
        margin: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

@media (max-width: 480px) {
    .final-section {
        padding: 0;
    }
    
    .final-content {
        max-width: 100%;
        padding: 20px 12px;
        background: rgba(255, 255, 255, 0.55);
        border-radius: 0;
        box-shadow: none;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .final-title {
        font-size: 30px;
        margin-bottom: 18px;
        font-weight: 700;
        color: #1a237e;
        text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    }
    
    .final-text {
        font-size: 16px;
        margin-bottom: 14px;
        font-weight: 600;
        color: #1a1a1a;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
    }
    
    .final-text strong {
        font-weight: 700;
        color: #1a237e;
    }
    
    .final-subtitle {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 10px;
        font-weight: 700;
        color: #1a237e;
        text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    }
    
    .final-locations {
        font-size: 15px;
        margin-bottom: 25px;
        font-weight: 600;
        color: #1a1a1a;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
    }
    
    .final-box {
        padding: 16px 18px;
        margin-top: 18px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
    }
    
    .final-box p {
        font-size: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
        margin: 0;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
    .final-content {
        padding: 20px 12px;
        min-height: 100vh;
        box-sizing: border-box;
    }
    
    .final-title {
        font-size: 26px;
        margin-bottom: 14px;
        line-height: 1.2;
    }
    
    .final-text {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .final-subtitle {
        font-size: 17px;
        margin-top: 16px;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    
    .final-locations {
        font-size: 13px;
        margin-bottom: 18px;
        line-height: 1.3;
    }
    
    .final-box {
        padding: 14px 16px;
        margin-top: 16px;
        box-sizing: border-box;
    }
    
    .final-box p {
        font-size: 14px;
        line-height: 1.3;
        margin: 0;
    }
}

/* Ajustes extras para telas extremamente pequenas */
@media (max-width: 320px) {
    .final-content {
        padding: 18px 10px;
    }
    
    .final-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .final-text {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .final-subtitle {
        font-size: 16px;
        margin-top: 14px;
        margin-bottom: 5px;
    }
    
    .final-locations {
        font-size: 12px;
        margin-bottom: 16px;
    }
    
    .final-box {
        padding: 12px 14px;
        margin-top: 14px;
    }
    
    .final-box p {
        font-size: 13px;
    }
}

