:root {
    --bg-dark: #0043b0;
    --cta-green: #00bf63;
    --white: #ffffff;
    --text-gray: #f0f0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    background-image: linear-gradient(180deg, #002d75 0%, #01173a 100%);
    color: var(--white);
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 0 20px;
    text-align: center;
    position: relative;
}

/* HERO (100vh) */
.hero-screen {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 10px;
    padding: 20px 0;
}

.header-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-container {
    width: 110px;
    height: 110px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.main-logo {
    width: 100%;
    height: auto;
    display: block;
}

.tagline {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
}

.text-group {
    flex-shrink: 0;
}

h1 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 8px;
}

h1 span {
    color: var(--cta-green);
    background: rgba(0, 191, 99, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 2px;
}

.subheadline {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
    opacity: 0.9;
}

/* ITENS PROMOCIONAIS - DESIGN CLEAN */
.promo-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    flex-shrink: 0;
    margin: 10px 0;
}

.promo-item {
    /*display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);*/
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    color: #d7c259;
    text-transform: uppercase;
    transition:
        background-color 0.2s,
        border-color 0.2s,
        padding 0.2s;
    animation: bounce 2s infinite;
}

/* Linha interna */
.promo-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #00bf63;
    transition: width 0.3s ease;
}

/* Hover */
.promo-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    padding: 6px 10px;
}

/* Animação da linha */
.promo-item:hover::after {
    width: 100%;
}

.promo-icon {
    font-size: 16px;
    flex-shrink: 0;
    line-height: 1;
}

.promo-text {
    line-height: 1.3;
}

/* CARROSSEL */
.slider-area {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px 0;
    margin: 0 -20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    flex-shrink: 0;
}

.slider {
    height: 40px;
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: calc(70px * 26);
    animation: scroll 20s linear infinite;
}

.slide {
    height: 40px;
    width: 70px;
    display: flex;
    align-items: center;
    padding: 0 8px;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.8);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* BENEFÍCIOS */
.benefits-box {
    padding: 5px 0;
    text-align: left;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-item {
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(146, 69, 90, 0.3);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.check-icon {
    color: var(--cta-green);
    font-size: 16px;
    flex-shrink: 0;
}

/* CTA */
.cta-container {
    padding-bottom: 10px;
    width: 100%;
}

.cta-button {
    background-color: var(--cta-green);
    color: #003b1f;
    text-decoration: none;
    padding: 14px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0, 191, 99, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: pulse-green 2s infinite;
    border: 2px solid #45ff9d;
    width: 100%;
    cursor: pointer;
}

.scroll-hint {
    font-size: 10px;
    opacity: 0.5;
    margin-top: 5px;
    animation: bounce 2s infinite;
}

/* ABAIXO DA DOBRA */
.below-fold {
    padding: 40px 0 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 0.8;
}

/* FAQ */
.faq-section {
    text-align: left;
}

.faq-title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--cta-green);
    text-align: center;
}

.faq-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 12px;
}

.faq-question {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
}

.faq-answer {
    font-size: 12px;
    color: var(--text-gray);
}

/* FOOTER */
footer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    color: var(--cta-green);
    font-size: 11px;
    font-weight: 600;
}

.footer-dev {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.tripscale-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color .25s ease;
}

.footer-brand:hover .tripscale-text {
    color: rgba(255, 255, 255, 0.75);
}

/* TOAST DE NOTIFICAÇÃO */
.notification-toast {
    position: fixed;
    top: 15px;
    right: 15px;
    background: rgba(20, 10, 15, 0.9);
    border: 1px solid var(--cta-green);
    backdrop-filter: blur(10px);
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--white);
    font-size: 11px;
    line-height: 1.4;
    max-width: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transform: translateX(150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.notification-toast.visible {
    transform: translateX(0);
}

.notif-icon {
    color: var(--cta-green);
    font-size: 18px;
    flex-shrink: 0;
}

.notif-content strong {
    color: var(--cta-green);
    font-weight: 800;
}

/* ANIMAÇÕES */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 191, 99, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 191, 99, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 191, 99, 0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}