@charset "UTF-8";
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* CONTAINER */
.intro {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #0f3057, #0a192f);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: white;
    z-index: 9999;
	   backdrop-filter: blur(10px);
    transition: all 1.2s ease;
}
/* =========================
   GRID FUNDO (ESTILO STRIPE)
========================= */
.bg-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: linear-gradient(rgba(0,170,255,0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,170,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    from { transform: translate(0,0); }
    to { transform: translate(-40px,-40px); }
}

/* =========================
   SVG CODE DRAW
========================= */
.code-symbol {
    width: 120px;
    margin-bottom: 20px;
}

.code-symbol path {
    fill: none;
    stroke: #00aaff;
    stroke-width: 3;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: draw 1.2s ease forwards;
}

.code-symbol path:nth-child(2) {
    animation-delay: 0.3s;
}
.code-symbol path:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

/* =========================
   LOGO COM ENERGIA
========================= */
.logo {
    font-size: 2.8rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards 1.5s;
}

.logo span {
    color: #00aaff;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PULSO ELÉTRICO */
.logo::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00aaff, transparent);
    top: 50%;
    left: -50%;
    animation: scan 2s infinite 2s;
}
@keyframes fadeHero {
    to {
        opacity: 1;
        transform: perspective(1000px) rotateY(-4deg) translateY(0);
    }
}
@keyframes introOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.1) translateY(-80px);
        pointer-events: none;
    }
}
@keyframes scan {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}
/* ESTADO FINAL DA INTRO */
.intro.final-state {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
	
    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding: 0 40px;

    background: rgba(10,25,47,0.7);
    backdrop-filter: blur(12px);
	/* 🔥 NÃO SUMIR */
    opacity: 1;
    visibility: visible;
    transform: none;
}

/* LOGO VIRA HEADER */
.intro.final-state .logo {
    position: relative;
    top: 0;
    left: 0;
    font-size: 1.4rem;
    margin: 0;
}

/* ESCONDE ELEMENTOS EXTRAS */
.intro.final-state .triangle,
.intro.final-state .typing,
.intro.final-state .final,
.intro.final-state .bg-grid {
    opacity: 0;
}

/* =========================
   TRIÂNGULO INTELIGENTE
========================= */
.triangle {
    width: 120px;
    margin: 30px 0;
    opacity: 0;
    animation: fadeUp 1s forwards 2s;
}

.triangle circle {
    fill: #00aaff;
    animation: pulse 2s infinite;
}

.triangle line {
    stroke: #00aaff;
    stroke-width: 1;
    opacity: 0.5;
}

@keyframes pulse {
    0%,100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* =========================
   DIGITAÇÃO REAL
========================= */
.typing {
    font-size: 1.2rem;
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #00aaff;

    width: 0;
    max-width: 100%;
    
    animation: typingCenter 2.5s steps(40) forwards 2.5s,
               blinkCursor 0.7s infinite;
}
.text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    text-align: center;
}
@keyframes typing {
    to { width: 100%; }
}
@keyframes typingCenter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blinkCursor {
    0%, 100% { border-color: transparent; }
    50% { border-color: #00aaff; }
}
/* =========================
   FINAL FRASE
========================= */
.final {
    font-size: 1rem;
    color: #00aaff;
    margin-top: 8px;

    opacity: 0;
    transform: translateY(10px);

    animation: fadeConnected 1s ease forwards 5s;
}

@keyframes fadeConnected {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   SAÍDA CINEMATOGRÁFICA
========================= */
@keyframes exit {
    to {
        opacity: 0;
        transform: scale(1.05);
        visibility: hidden;
    }
}
/* =========================
   CONVERSION SECTION
========================= */

.conversion {
    background: linear-gradient(180deg, #f5f7fa, #ffffff);
}

.conversion-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

/* TAG */
.tag {
    display: inline-block;
    background: rgba(0,123,255,0.1);
    color: var(--blue);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

/* HEADLINE */
.conversion-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* SUBTITLE */
.subtitle {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

/* BENEFITS */
.benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits li {
    margin-bottom: 0.6rem;
}

/* MODELOS */
.models {
    display: grid;
    gap: 1rem;
}

.model-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s;
}

.model-card:hover {
    transform: translateY(-4px);
}

/* FORM */
.conversion-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.conversion-form h3 {
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

/* INPUTS */
.conversion-form input,
.conversion-form select {
      width: 100%; /* 🔥 ESSENCIAL */
    padding: 0.7rem;
    font-size: 0.95rem;
    box-sizing: border-box;
}

/* BOTÃO */
.btn-full {
    width: 100%;
    font-weight: 600;
}

/* TRUST */
.trust {
    display: block;
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.6;
    text-align: center;
}
.date-time-row {
    display: flex;
    gap: 10px;
}

.date-time-row > div {
    flex: 1;
    display: flex;
    flex-direction: column;
}
/* RESPONSIVO */
@media (max-width: 900px) {
    .conversion-grid {
        grid-template-columns: 1fr;
    }

    .conversion-text h2 {
        font-size: 2rem;
    }
}
.hero {
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 3rem;
}

/* IMAGEM */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 20px;

    box-shadow: 
        0 40px 100px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.05);

    transform: perspective(1000px) rotateY(-8deg);
    transition: 0.4s;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.03);
    box-shadow: 
        0 60px 140px rgba(0,0,0,0.5),
        0 0 40px rgba(0,170,255,0.25);
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0,170,255,0.08), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0,170,255,0.05), transparent 50%);
    animation: moveBg 12s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}
.date-time-row {
    display: flex;
    gap: 10px;
}

.date-time-row > div {
    flex: 1;
}

@media (max-width: 500px) {
    .date-time-row {
        flex-direction: column;
    }
}
/* RESPONSIVO */
@media (max-width: 900px) {

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        transform: none; /* remove deslocamento */
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 120%;
        margin-top: 0px;
    }

    .hero-image img {
        width: 90%;
        
        margin: 0 auto;
        display: block;

        transform: none; /* remove efeito 3D no mobile */
    }
    .hero-image img {
        transform: none;
        animation: fadeHeroMobile 1s ease forwards;
    }
	
}
    @keyframes fadeHeroMobile {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-image::before {
        width: 250px;
        height: 250px;
    }
}
.hero-image::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,170,255,0.35), transparent 70%);
    top: -80px;
    right: -80px;
    filter: blur(80px);
    z-index: -1;
    animation: floatGlow 6s ease-in-out infinite;
}.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;

    background: #0a192f;
    color: #fff;

    padding: 14px 18px;
    border-radius: 8px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

    font-size: 0.9rem;

    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;

    transition: all 0.3s ease;
    z-index: 9999;
}

/* estado visível */
.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* variações */
.toast.success {
    border-left: 4px solid #00c853;
}

.toast.error {
    border-left: 4px solid #ff3d00;
}
/* BOTÃO WHATSAPP */
.whatsapp-wrapper {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;

    display: flex;
    justify-content: flex-end; /* 🔥 AGORA VAI PRA DIREITA */

    pointer-events: none;
    z-index: 999;
}

.whatsapp-btn {
    pointer-events: all;
}

/* ÍCONE */
.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #1ebe5d);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 
        0 10px 30px rgba(37,211,102,0.4),
        0 0 0 0 rgba(37,211,102,0.6);

    transition: all 0.3s ease;
    position: relative;
}

/* SVG */
.whatsapp-icon svg {
    width: 28px;
    height: 28px;
}

/* HOVER */
.whatsapp-btn:hover .whatsapp-icon {
    transform: scale(1.1);
    box-shadow: 
        0 20px 50px rgba(37,211,102,0.6),
        0 0 20px rgba(37,211,102,0.4);
}

/* PULSE ANIMATION */
.whatsapp-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.5);
    animation: pulseWhats 2s infinite;
}

@keyframes pulseWhats {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* TOOLTIP */
.whatsapp-tooltip {
    position: absolute;
    left: calc(100% - 220px); /* 🔥 sempre fica ao lado do botão */
    background: #0a192f;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;

    font-size: 0.8rem;
    white-space: nowrap;

    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s;
}

/* MOSTRAR TOOLTIP */
.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* MOBILE */
@media (max-width: 600px) {
    .whatsapp-tooltip {
        display: none;
    }

    .whatsapp-icon {
        width: 54px;
        height: 54px;
    }
}
.header-content {
    position: absolute;
    top: 20px;
    left: 0px;
    right: 0px;
	padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}
.menu {
    display: flex;
    gap: 24px;
}

.menu a {
    color: #e6f1ff;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: 0.3s;
}

.menu a:hover {
    opacity: 1;
}

.btn-menu {
    background: #007bff;
    padding: 8px 16px;
    border-radius: 6px;
}
.intro.final-state .bg-grid,
.intro.final-state .code-symbol,
.intro.final-state .triangle,
.intro.final-state .typing,
.intro.final-state .final {
    display: none;
}
.intro.final-state .header-content {
    position: relative;
    top: 0;
}
#particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}
.cookie-banner{
    position:fixed;
    bottom:20px;
    left:20px;
    right:20px;
    background:rgba(10,14,30,0.95);
    border:1px solid rgba(255,255,255,0.1);
    padding:15px 20px;
    border-radius:14px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    z-index:999;
    backdrop-filter: blur(12px);
}

.cookie-banner p{
    margin:0;
    font-size:0.9rem;
    color:rgba(255,255,255,0.8);
}

.cookie-actions button{
    padding:8px 14px;
    border-radius:10px;
    border:none;
    cursor:pointer;
    transition:0.3s;
}

.cookie-actions button:first-child{
    background:#3b82f6;
    color:white;
}

.cookie-actions button:last-child{
    background:transparent;
    border:1px solid rgba(255,255,255,0.2);
    color:white;
}
/* 📱 HEADER RESPONSIVO */
@media (max-width: 768px) {

    /* HEADER FINAL (fixo no topo) */
    .intro.final-state {
        height: 60px;
        padding: 0 20px;
    }

    /* CONTAINER DO HEADER */
    .header-content {
        padding: 10px 20px;
        top: 10px;
    }

    /* LOGO */
    .logo {
        font-size: 1.6rem;
    }

    .intro.final-state .logo {
        font-size: 1.1rem;
    }

    /* BOTÃO */
    .btn-menu {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* 📱 CELULARES MENORES */
@media (max-width: 480px) {

    .intro.final-state {
        height: 55px;
        padding: 0 15px;
    }

    .header-content {
        padding: 8px 15px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .intro.final-state .logo {
        font-size: 1rem;
    }

    .btn-menu {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}
/* 📱 TABLET */
@media (max-width: 768px) {
    .footer-inner {
        font-size: 0.8rem;
        padding: 16px;
    }
}

/* 📱 CELULAR */
@media (max-width: 480px) {
    .footer-inner {
        font-size: 0.75rem;
        padding: 14px;
        line-height: 1.4;
    }
}
.footer-inner a {
    display: inline-block;
    margin-top: 6px;
}
/* FOOTER BASE */
.footer {
    background: #0a192f;
    color: #e6f1ff;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

/* GLOW FUNDO */
.footer::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,170,255,0.15), transparent 70%);
    top: -150px;
    right: -150px;
    filter: blur(80px);
    animation: floatGlow 6s ease-in-out infinite;
}

/* GRID */
.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px 40px;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

/* BRAND */
.footer-brand h2 {
    font-size: 1.6rem;
}

.footer-brand span {
    color: #00aaff;
}

.footer-brand p {
    opacity: 0.7;
    margin-top: 10px;
}

/* COLUNAS */
.footer-links h4,
.footer-legal h4 {
    margin-bottom: 12px;
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer a {
    display: block;
    text-decoration: none;
    color: #e6f1ff;
    margin-bottom: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: 0.3s;
}

/* HOVER PREMIUM */
.footer a:hover {
    opacity: 1;
    color: #00aaff;
    transform: translateX(4px);
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    padding: 16px;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* 📱 RESPONSIVO */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer a:hover {
        transform: none;
    }
}