/* 
==============
RESET 
==============
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* 
==============
VARIÁVEIS
==============
*/
:root {
    --primary: #0091dd;
    --dark-blue: #050a30;
    --black: #010101;
    --light-blue: #74e4fc;
    --white: #ffffff;
}

/* 
==============
BASE
==============
*/
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-blue);
    color: var(--white);
    overflow-x: hidden;
    /* Ocultar barra horizontal */
}

/* 
==============
NAVBAR
==============
*/
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: background 0.4s ease, box-shadow 0.4s ease;

    /* Começa transparente */
    background: transparent;
}

/* Ativa quando o usuário rola a página */
.navbar.scrolled {
    background: rgba(5, 10, 48, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 2px 30px rgba(0, 145, 221, 0.12);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-nav {
    display: flex;
    align-items: center;
}

.logo-nav img {
    height: 70px;
    width: auto;
    display: block;
    transition: 0.3s ease;
}

.logo-nav img:hover {
    transform: scale(1.05);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav li {
    list-style: none;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--light-blue));
    border-radius: 2px;
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--white);
    text-decoration: none;
}

nav a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--primary);
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: 0.3s;
}

.btn-nav:hover {
    box-shadow: 0 0 15px var(--primary);
    transform: translateY(-3px);
}

/* 
==============
HERO
==============
*/
.hero {
    position: relative;
    overflow: hidden;

    height: 100vh;

    background: linear-gradient(135deg,
            var(--dark-blue),
            #0a1150);

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0 20px;
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;

    background: linear-gradient(90deg,
            #ffffff,
            #74e4fc);

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 0 20px rgba(0, 145, 221, 0.25);
}

.hightlight {
    color: var(--white);
    -webkit-text-fill-color: var(--primary);
}

.sub-titulo {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.90rem;
    color: var(--white);
    margin-bottom: 40px;
    ;
}

/* 
==============
HERO BADGE
==============
*/
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 145, 221, 0.1);
    border: 1px solid rgba(0, 145, 221, 0.3);
    color: var(--light-blue);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

/* 
==============
HERO STATS
==============
*/
.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-number span {
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* 
==============
PARTICLES
==============
*/
#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 1;
}

/* 
==============
HERO EFFECTS
==============
*/
.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(circle at 50% 40%,
            rgba(0, 145, 221, 0.15),
            transparent 70%);
}

.hero::before {
    content: "";
    position: absolute;

    width: 600px;
    height: 600px;

    background: radial-gradient(circle,
            rgba(0, 145, 221, 0.25),
            transparent 70%);

    top: -200px;
    left: -200px;

    filter: blur(120px);
}

/* 
==============
ANIMAÇÕES DE ENTRADA
==============
*/
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 
==============
BUTTONS
==============
*/
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;

}

.btn-primary {
    background-color: var(--primary);
    padding: 14px 28px;
    border-radius: 8px;

    text-decoration: none;
    color: var(--white);
    font-weight: 600;

    transition: 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 0 20px var(--primary);
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--primary);
    padding: 14px 28px;
    border-radius: 8px;

    text-decoration: none;
    color: var(--white);
    font-weight: 600;

    transition: 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary);
    box-shadow: 0 0 15px var(--primary);
}

.about-btn {
    display: inline-block;
    margin-top: 25px;

    background: var(--primary);
    color: var(--white);

    padding: 12px 22px;
    border-radius: 8px;

    text-decoration: none;
    font-weight: 600;

    transition: 0.3s;
}

.about-btn:hover {
    box-shadow: 0 0 15px var(--primary);
    transform: translateY(-3px);
}

/* 
==============
ABOUT 
==============
*/
.about {
    background: linear-gradient(180deg, var(--dark-blue), #060d40);
}

.container {
    max-width: 1200px;
    padding: 100px 25px;
    margin: auto;
}

.about-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.tag {
    display: inline-block;
    border: 1px solid var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--light-blue);
    margin-bottom: 15px;
}

.about-header h1 {
    font-size: 2.7rem;
}

.about-header h1 span {
    color: var(--light-blue);
}

.about-text h1 span {
    color: var(--primary);
    -webkit-text-fill-color: var(--light-blue);
}

.about-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    /* Cria uma griglia, usando linhas e colunas (grigilia é uma tabela) */
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
    line-height: 1.6;
    color: var(--white)
}

/*
==============
FEATURE CARDS
==============
*/

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Cria duas colunas */
    gap: 25px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(116, 228, 252, 0.1);
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
}

.feature-card span {
    font-size: 1.8rem;
}

.feature-card h3 {
    margin-top: 10px;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--light-blue);
}

/* Hover glow -> glow é um efeito de brilho */

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 145, 221, 0.3);
    cursor: pointer;
}

/* 
==============
SERVICES
==============
*/


.services {
    background: linear-gradient(180deg,
            var(--dark-blue),
            #060d40);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 70px;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-header h2 span {
    color: var(--light-blue);
}

.services-header p {
    color: var(--light-blue);
    line-height: 1.6;
}

/* Grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Cria 3 colunas */
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Cards */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(116, 228, 252, 0.1);
    padding: 35px 30px;
    border-radius: 14px;
    transition: transform 0.3s ease, border-color 0.3s ease,
        box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Linha de brilho no topo */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 145, 221, 0.4);
    box-shadow: 0 8px 30px rgba(0, 145, 221, 0.15);
    background: rgba(0, 145, 221, 0.04);
    cursor: pointer;
}

/* Topo do card — número + ícone */
.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.service-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(0, 145, 221, 0.4);
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.service-card i {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}

.service-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    flex: 1;
}

/* Botão do card */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-top: 6px;
    transition: gap 0.3s ease, color 0.3s ease;
    width: fit-content;
}

.service-link:hover {
    gap: 10px;
    color: var(--light-blue);
}

/* 
===================
    Responsividade
===================
*/

@media (max-width: 900px) {

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 900px) {

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

}

@media (max-width: 600px) {

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

}

/* 
==============
PLANS
==============
*/
.plans {
    padding: 0;
    background: linear-gradient(180deg, #060d40, var(--dark-blue));
}

.plans-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 70px;
}

.plans-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.plans-header h2 span {
    color: var(--light-blue);
}

.plans-header p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    font-size: 0.97rem;
}

/* Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* Card base */
.plan-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(116, 228, 252, 0.1);
    border-radius: 16px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Features ocupa o espaço disponível — botão fica sempre no fundo */
.plan-card .plan-features {
    flex: 1;
}

.plan-card .plan-btn {
    margin-top: auto;
}

.plan-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 145, 221, 0.3);
    box-shadow: 0 8px 30px rgba(0, 145, 221, 0.12);
}

/* Card destaque — Pro */
.plan-featured {
    background: rgba(0, 145, 221, 0.07);
    border-color: rgba(0, 145, 221, 0.4);
    box-shadow: 0 0 40px rgba(0, 145, 221, 0.2);
}

.plan-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 145, 221, 0.3);
}

/* Badge "Mais popular" */
.plan-badge-top {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 18px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Topo do card */
.plan-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    line-height: 1;
}

.price-value {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
}

.price-period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    margin-bottom: 6px;
}

.plan-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

/* Lista de features */
.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.plan-features li i {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Botões */
.plan-btn {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.plan-btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.plan-btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 145, 221, 0.55);
    transform: translateY(-2px);
}

.plan-btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.plan-btn-outline:hover {
    border-color: var(--primary);
    background: rgba(0, 145, 221, 0.08);
    transform: translateY(-2px);
}

/* Responsivo */
@media (max-width: 900px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: auto;
    }

    .plan-featured {
        transform: translateY(0);
    }
}

/* 
==============
CONTACT
==============
*/
.contact {
    background: linear-gradient(180deg, var(--dark-blue), #060d40);
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 70px;
}

.contact-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-header h2 span {
    color: var(--light-blue);
}

.contact-header p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    font-size: 0.97rem;
}

/* Layout dois lados */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 60px;
    align-items: start;
}

/* 
==============
FORMULÁRIO
==============
*/
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 13px 16px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    outline: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

/* Foco nos campos */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 145, 221, 0.12);
    background: rgba(0, 145, 221, 0.05);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: #0a1550;
    color: var(--white);
}

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

/* ─── PHONE INPUT DDI ──────────────────────────────────── */
.phone-field-group {
    position: relative;
}

.phone-input-wrapper {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: visible;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.phone-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 145, 221, 0.12);
    background: rgba(0, 145, 221, 0.05);
}

.phone-ddi-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
    border-radius: 8px 0 0 8px;
    flex-shrink: 0;
}

.phone-ddi-btn:hover {
    background: rgba(255, 255, 255, 0.06);
}

.phone-flag {
    font-size: 1.15rem;
    line-height: 1;
}

.phone-ddi-code {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.phone-input-wrapper input[type="tel"] {
    flex: 1;
    background: transparent;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 13px 16px;
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    outline: none;
    width: 100%;
    box-shadow: none !important;
}

.phone-input-wrapper input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

/* Dropdown DDI */
.phone-ddi-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 300px;
    background: #0d1b3e;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
    z-index: 9999;
    overflow: hidden;
}

.phone-ddi-dropdown.open {
    display: block;
}

.phone-ddi-search-wrap {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.phone-ddi-search-wrap input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    padding: 8px 12px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 0.83rem;
    outline: none;
}

.phone-ddi-search-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

#phoneDdiList {
    list-style: none;
    margin: 0;
    padding: 6px 0;
    max-height: 240px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,145,221,0.3) transparent;
}

#phoneDdiList li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    cursor: pointer;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    transition: background 0.15s ease;
}

#phoneDdiList li:hover,
#phoneDdiList li.selected {
    background: rgba(0, 145, 221, 0.12);
    color: #fff;
}

#phoneDdiList li .ddi-flag {
    font-size: 1.1rem;
    flex-shrink: 0;
}

#phoneDdiList li .ddi-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#phoneDdiList li .ddi-code {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ─── SELECT SERVIÇO CUSTOMIZADO ───────────────────────── */
.servico-field-group {
    position: relative;
}

.servico-select-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 13px 16px;
    color: rgba(255, 255, 255, 0.25);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.servico-select-btn.has-value {
    color: var(--white);
}

.servico-select-btn:hover,
.servico-select-btn.open {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 145, 221, 0.12);
    background: rgba(0, 145, 221, 0.05);
}

.servico-select-btn svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.2s ease;
}

.servico-select-btn.open svg {
    transform: rotate(180deg);
}

.servico-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #0d1b3e;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
    z-index: 9999;
    overflow: hidden;
}

.servico-dropdown.open {
    display: block;
}

#servicoList {
    list-style: none;
    margin: 0;
    padding: 6px 0;
}

#servicoList li {
    padding: 11px 16px;
    cursor: pointer;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    transition: background 0.15s ease, color 0.15s ease;
}

#servicoList li:hover,
#servicoList li.selected {
    background: rgba(0, 145, 221, 0.12);
    color: #fff;
}

/* Botão enviar */
.contact-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 32px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}

.contact-btn:hover {
    box-shadow: 0 0 25px rgba(0, 145, 221, 0.55);
    transform: translateY(-2px);
}

/* 
==============
INFO LATERAL
==============
*/
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 8px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(116, 228, 252, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.info-card:hover {
    border-color: rgba(0, 145, 221, 0.35);
    transform: translateX(4px);
}

.info-card i {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.info-card div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-card span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.info-card a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--light-blue);
}

/* Nota de tempo de resposta */
.info-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 10px;
    background: rgba(0, 145, 221, 0.06);
    border: 1px solid rgba(0, 145, 221, 0.15);
    margin-top: 4px;
}

.info-note i {
    width: 18px;
    height: 18px;
    color: var(--light-blue);
    flex-shrink: 0;
}

.info-note p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.info-note p strong {
    color: var(--white);
    font-weight: 600;
}

/* Responsivo */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
    }
}

/* 
==============
FOOTER
==============
*/
.footer {
    background: linear-gradient(180deg, #060d40, #030820);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

/* Topo do footer */
.footer-top {
    padding: 80px 0 60px;
}

.footer-top .footer-container {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

/* Coluna da marca */
.footer-brand img {
    height: 55px;
    width: auto;
    margin-bottom: 18px;
    display: block;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}

/* Redes sociais */
.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease,
        background 0.3s ease, transform 0.3s ease;
}

.footer-socials a i {
    width: 16px;
    height: 16px;
}

.footer-socials a:hover {
    border-color: var(--primary);
    color: var(--white);
    background: rgba(0, 145, 221, 0.1);
    transform: translateY(-3px);
}

/* Colunas de links */
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--light-blue);
    transform: translateX(6px);
}

/* Lista de contato com ícones */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-list li i {
    width: 15px;
    height: 15px;
    color: var(--primary);
    flex-shrink: 0;
}

.footer-contact-list li a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
    color: var(--light-blue);
    padding-left: 0px;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 0;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom p strong {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

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

.footer-divider {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.82rem;
}

.footer-privacy-link {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-privacy-link:hover {
    color: var(--primary);
}

/* Responsivo */
@media (max-width: 900px) {
    .footer-top .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-top .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* 
==============
GRADE DE LINHAS
==============
*/
.about,
.services,
.plans,
.contact {
    position: relative;
    overflow: hidden;
}

.about::before,
.services::before,
.plans::before,
.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 145, 221, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 145, 221, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Garante que o conteúdo fica acima */
.about .container,
.services .container,
.services-header,
.services-grid,
.services-cta,
.plans .container,
.contact .container {
    position: relative;
    z-index: 1;
}

/* 
==============
MODAL
==============
*/
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    background: rgba(3, 8, 32, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Caixa do modal */
.modal-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 36px;
    width: 100%;
    max-width: 420px;
    position: relative;

    box-shadow:
        0 0 60px rgba(0, 145, 221, 0.12),
        0 25px 50px rgba(0, 0, 0, 0.4);

    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

/* Botão fechar */
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
    color: rgba(255, 255, 255, 0.5);
}

.modal-close i {
    width: 16px;
    height: 16px;
}

.modal-close:hover {
    background: rgba(0, 145, 221, 0.15);
    border-color: var(--primary);
    color: var(--white);
}

/* Logo */
.modal-logo {
    text-align: center;
    margin-bottom: 28px;
}

.modal-logo img {
    height: 90px;
    width: auto;
}

/* Banner de aviso — área exclusiva para clientes */
.modal-aviso-cliente {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(0, 145, 221, 0.07);
    border: 1px solid rgba(0, 145, 221, 0.22);
    border-left: 3px solid var(--primary);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 4px; /* o gap do flex do modal-content já adiciona 18px */
    transition: border-color 0.3s ease;
}
 
.modal-aviso-cliente:hover {
    border-left-color: var(--light-blue);
    background: rgba(0, 145, 221, 0.10);
}
 
.modal-aviso-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}
 
.modal-aviso-titulo {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(116, 228, 252, 0.9); /* --light-blue com leve transparência */
    margin-bottom: 3px;
    letter-spacing: 0.02em;
}
 
.modal-aviso-texto {
    display: block;
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.38);
}
 
.modal-aviso-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
    white-space: nowrap;
}
 
.modal-aviso-link:hover {
    color: var(--light-blue);
}

/* Abas */
.modal-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 28px;
    gap: 4px;
}

.modal-tab {
    flex: 1;
    padding: 9px;
    border: none;
    border-radius: 7px;
    background: transparent;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.modal-tab.active {
    background: var(--primary);
    color: var(--white);
}

/* Conteúdo das abas */
.modal-content {
    display: none;
    flex-direction: column;
    gap: 18px;
}

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

/* Toggle usuário/admin */
.access-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 4px;
}

.access-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.access-btn i {
    width: 15px;
    height: 15px;
}

.access-btn.active {
    background: rgba(0, 145, 221, 0.12);
    border-color: var(--primary);
    color: var(--white);
}

.access-btn:hover {
    border-color: rgba(0, 145, 221, 0.4);
    color: var(--white);
}

/* Campos do modal */
.modal-content .form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.modal-content .form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

.modal-content .form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.modal-content .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.modal-content .form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 145, 221, 0.1);
}

/* Campo senha com botão */
.input-password {
    position: relative;
    display: flex;
    align-items: center;
}

.input-password input {
    padding-right: 44px !important;
}

.toggle-password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    padding: 0;
}

.toggle-password i {
    width: 16px;
    height: 16px;
}

.toggle-password:hover {
    color: var(--primary);
}

/* Opções lembrar/esqueci */
.modal-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.checkbox-label input {
    width: 14px;
    height: 14px;
    accent-color: var(--primary);
    cursor: pointer;
}

.modal-options a {
    font-size: 0.82rem;
    color: rgba(0, 145, 221, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.modal-options a:hover {
    color: var(--light-blue);
}

/* Botão principal */
.modal-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 13px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin-top: 4px;
    width: 100%;
}

.modal-btn:hover {
    box-shadow: 0 0 25px rgba(0, 145, 221, 0.5);
    transform: translateY(-2px);
}

/* Responsivo */
@media (max-width: 480px) {
    .modal-box {
        padding: 30px 22px;
    }
}

/* 
==============
DIFFERENTIAL
==============
*/
.differential {
    background: linear-gradient(180deg, #060d40, var(--dark-blue));
    position: relative;
    overflow: hidden;
}

.differential::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 145, 221, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 145, 221, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.differential .container {
    position: relative;
    z-index: 1;
}

.differential-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Texto esquerda */
.differential-text {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.differential-text h2 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.differential-text h2 span {
    color: var(--light-blue);
}

.differential-text p {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    max-width: 420px;
}

/* Métricas direita */
.differential-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(116, 228, 252, 0.1);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 145, 221, 0.35);
    box-shadow: 0 8px 25px rgba(0, 145, 221, 0.12);
}

.metric-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.metric-top i {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.metric-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.metric-plus {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.metric-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

/* Responsivo */
@media (max-width: 900px) {
    .differential-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .differential-text p {
        max-width: 100%;
    }

    .differential-text {
        align-items: center;
    }
}

@media (max-width: 500px) {
    .differential-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .metric-number {
        font-size: 2.2rem;
    }
}

/* 
==============
NAVBAR RESPONSIVA
==============
*/
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger:hover {
    border-color: var(--primary);
}

/* Animação X ao abrir */
.nav-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlay escuro atrás do drawer */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(3, 8, 32, 0.7);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Esconde no desktop */
.drawer-brand {
    display: none;
}

.drawer-login {
    display: none;
}

@media (max-width: 768px) {

    .nav-hamburger {
        display: flex;
    }

    .btn-nav {
        display: none;
    }

    /* Drawer lateral */
    nav ul {
        position: fixed;
        top: 0;
        right: -280px;
        /* começa escondido */
        width: 280px;
        height: 100vh;
        z-index: 999;

        background: rgba(5, 10, 48, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(0, 145, 221, 0.15);

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 6px;
        padding: 40px 30px;

        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    nav ul.active {
        right: 0;
    }

    nav li {
        width: 100%;
    }

    nav a {
        display: block;
        font-size: 1.1rem;
        font-weight: 600;
        padding: 12px 16px;
        margin: 0;
        border-radius: 8px;
        transition: background 0.3s ease, color 0.3s ease;
    }

    nav a:hover {
        background: rgba(0, 145, 221, 0.1);
        color: var(--light-blue);
        text-decoration: none;
    }

    nav a::after {
        display: none;
    }

    /* Logo e slogan no drawer */
    .drawer-brand {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-bottom: 30px;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        width: 100%;
    }

    .drawer-brand img {
        height: 75px;
        width: auto;
        object-fit: contain;
        object-position: center;
    }

    .drawer-brand span {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.35);
        letter-spacing: 0.5px;
    }

    /* Botão login no drawer */
    .drawer-login {
        display: block !important;
        width: 100%;
        text-align: center;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .drawer-login a {
        display: block;
        background: var(--primary);
        color: var(--white) !important;
        padding: 12px !important;
        border-radius: 8px;
        text-align: center;
        font-weight: 600;
        font-size: 0.95rem !important;
    }
}

/* 
==============
ABOUT CTA
==============
*/
.about-cta { /* Conteudo do CTA -> CTA é uma caixa de texto com botão */
    display: flex;
    justify-content: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-discover {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.btn-discover span {
    transition: color 0.3s ease;
}

.btn-discover i {
    width: 20px;
    height: 20px;
    color: var(--primary);
    animation: bounceDown 1.8s ease-in-out infinite;
}

.btn-discover:hover {
    color: var(--white);
}

.btn-discover:hover i {
    color: var(--light-blue);
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0);    opacity: 1; }
    50%       { transform: translateY(6px); opacity: 0.6; }
}

/* 
==============
SUCCESS SCREEN
==============
*/
.success-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.success-screen.active {
    opacity: 1;
    pointer-events: all;
}

.success-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 145, 221, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 145, 221, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.success-screen::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 145, 221, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.success-lightning {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.success-logo {
    width: 160px;
    height: auto;
    position: relative;
    z-index: 2; /* Para ficar acima dos raios */
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease 0.3s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
    filter: drop-shadow(0 0 25px rgba(0, 145, 221, 0.9));
}

.success-screen.active .success-logo {
    opacity: 1;
    transform: scale(1);
}

.lightning-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 145, 221, 0.4);
    opacity: 0;
}

.success-screen.active .ring {
    animation: ringPulse 2s ease-out infinite;
}

.ring-1 { width: 120px; height: 120px; animation-delay: 0.4s !important; }
.ring-2 { width: 160px; height: 160px; animation-delay: 0.7s !important; }
.ring-3 { width: 200px; height: 200px; animation-delay: 1.0s !important; }

@keyframes ringPulse {
    0%   { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.sparks {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sparks span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--light-blue);
    opacity: 0;
}

.success-screen.active .sparks span {
    animation: sparkFly 1s ease-out forwards;
}

.sparks span:nth-child(1) { animation-delay: 0.5s !important;  --tx: -80px; --ty: -80px; }
.sparks span:nth-child(2) { animation-delay: 0.6s !important;  --tx:  80px; --ty: -80px; }
.sparks span:nth-child(3) { animation-delay: 0.55s !important; --tx: -90px; --ty:  20px; }
.sparks span:nth-child(4) { animation-delay: 0.65s !important; --tx:  90px; --ty:  20px; }
.sparks span:nth-child(5) { animation-delay: 0.5s !important;  --tx: -40px; --ty:  90px; }
.sparks span:nth-child(6) { animation-delay: 0.7s !important;  --tx:  40px; --ty:  90px; }
.sparks span:nth-child(7) { animation-delay: 0.45s !important; --tx: -60px; --ty: -40px; }
.sparks span:nth-child(8) { animation-delay: 0.75s !important; --tx:  60px; --ty: -40px; }

@keyframes sparkFly {
    0%   { opacity: 1; transform: translate(0, 0) scale(1); }
    100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0); }
}

.success-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.6s, transform 0.5s ease 0.6s;
    background: linear-gradient(90deg, #ffffff, var(--light-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-screen.active .success-title {
    opacity: 1;
    transform: translateY(0);
}

.success-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 360px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease 0.8s, transform 0.5s ease 0.8s;
}

.success-screen.active .success-sub {
    opacity: 1;
    transform: translateY(0);
}

.success-sub strong {
    color: var(--white);
}

.success-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s ease 1s;
}

.success-screen.active .success-bar {
    opacity: 1;
}

.success-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--light-blue));
    border-radius: 10px;
    transition: width 3s linear;
}

/* 
==============
PROJECTS
==============
*/
.projects {
    background: linear-gradient(180deg, #060d40, var(--dark-blue));
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 145, 221, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 145, 221, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.projects .container {
    position: relative;
    z-index: 1;
}

.projects-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.projects-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.projects-header h2 span {
    color: var(--light-blue);
}

.projects-header p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    font-size: 0.97rem;
}

/* 
==============
CARROSSEL
==============
*/
/* 
==============
PROJECT SHOWCASE (carousel inovador)
==============
*/
.proj-showcase {
    position: relative;
    margin-bottom: 70px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 145, 221, 0.12);
    box-shadow: 0 0 60px rgba(0, 145, 221, 0.07);
    isolation: isolate;
}

/* ── Slides ── */
.proj-track {
    position: relative;
    height: 420px;
}

.proj-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0s;
}

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

/* Entrada: slide info vem da esquerda */
.proj-slide.enter-from-right .proj-slide-info {
    animation: infoSlideInRight 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.proj-slide.enter-from-left .proj-slide-info {
    animation: infoSlideInLeft 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes infoSlideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes infoSlideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Entrada: visual vem da direita com clip-path */
.proj-slide.enter-from-right .proj-slide-visual {
    animation: visualRevealRight 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.proj-slide.enter-from-left .proj-slide-visual {
    animation: visualRevealLeft 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes visualRevealRight {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0% 0 0); }
}
@keyframes visualRevealLeft {
    from { clip-path: inset(0 0 0 100%); }
    to   { clip-path: inset(0 0 0 0%); }
}

/* ── Info panel ── */
.proj-slide-info {
    padding: 48px 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: rgba(4, 8, 38, 0.92);
    position: relative;
    z-index: 1;
}

.proj-slide-info::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 145, 221, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 145, 221, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

.proj-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.proj-tags span {
    background: rgba(0, 145, 221, 0.15);
    border: 1px solid rgba(0, 145, 221, 0.3);
    color: #74e4fc;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.03em;
}

.proj-counter {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(0, 145, 221, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: -4px;
}

.proj-title {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.3px;
    color: var(--white);
}

.proj-title span {
    background: linear-gradient(90deg, #0091dd, #74e4fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.proj-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    max-width: 360px;
}

.proj-meta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: -4px;
}

.proj-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.45);
}

.proj-badge i {
    width: 12px;
    height: 12px;
    color: var(--primary);
    flex-shrink: 0;
}

.proj-badge--live {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.25);
    color: #10b981;
}

.proj-badge--live i {
    color: #10b981;
}

.proj-badge--stat {
    background: rgba(0, 145, 221, 0.08);
    border-color: rgba(0, 145, 221, 0.2);
    color: var(--light-blue);
}

.proj-badge--stat i {
    color: var(--light-blue);
}

.proj-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 10px;
    width: fit-content;
    margin-top: auto;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 18px rgba(0, 145, 221, 0.3);
}

.proj-cta i {
    width: 15px;
    height: 15px;
    transition: transform 0.2s ease;
}

.proj-cta:hover {
    background: #007ec0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 145, 221, 0.4);
}

.proj-cta:hover i {
    transform: translate(2px, -2px);
}

/* ── Visual panel ── */
.proj-slide-visual {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 145, 221, 0.1), rgba(116, 228, 252, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.proj-slide-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 145, 221, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 145, 221, 0.07) 1px, transparent 1px);
    background-size: 32px 32px;
}

.proj-num-bg {
    position: absolute;
    bottom: -10px;
    right: -8px;
    font-size: clamp(120px, 18vw, 200px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -8px;
    background: linear-gradient(135deg, rgba(0, 145, 221, 0.22), rgba(116, 228, 252, 0.08));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
    pointer-events: none;
    z-index: 1;
    font-variant-numeric: tabular-nums;
    /* mantém nítido sem vazar para fora do painel */
    filter: blur(0px);
}
 
/* No slide com foto, o número fica mais apagado para não brigar */
.proj-slide-visual--photo .proj-num-bg {
    background: linear-gradient(135deg, rgba(0, 145, 221, 0.14), rgba(116, 228, 252, 0.04));
    -webkit-background-clip: text;
    background-clip: text;
    z-index: 2; /* acima da foto, abaixo do overlay */
}
 
/* Responsivo: reduz em mobile para não transbordar */
@media (max-width: 900px) {
    .proj-num-bg {
        font-size: clamp(80px, 28vw, 130px);
        letter-spacing: -4px;
        bottom: -6px;
        right: -4px;
    }
}

.proj-slide-visual--photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.proj-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 8, 38, 0.6) 0%, transparent 40%),
                linear-gradient(0deg, rgba(4, 8, 38, 0.3) 0%, transparent 50%);
}

.proj-icon-mock {
    position: relative;
    z-index: 1;
    width: 100px;
    height: 100px;
    border-radius: 24px;
    background: rgba(0, 145, 221, 0.12);
    border: 1px solid rgba(0, 145, 221, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(0, 145, 221, 0.15);
}

.proj-icon-mock i {
    width: 44px;
    height: 44px;
    color: var(--primary);
}

/* ── Navegação ── */
.proj-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(4, 8, 38, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.proj-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(0, 145, 221, 0.25);
    background: rgba(0, 145, 221, 0.07);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.proj-nav-btn i {
    width: 17px;
    height: 17px;
}

.proj-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.proj-indicators {
    display: flex;
    align-items: center;
    gap: 10px;
}

.proj-ind {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.proj-ind.active {
    background: var(--primary);
    width: 44px;
}

/* ── Barra de progresso do autoplay ── */
.proj-progress-bar {
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.proj-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), #74e4fc);
    transition: width linear;
}

/* ── Responsivo ── */
@media (max-width: 900px) {
    .proj-track { height: auto; }

    .proj-slide {
        grid-template-columns: 1fr;
        position: relative;
        display: none;
        flex-direction: column;
    }

    .proj-slide.active { display: flex; }

    .proj-slide-visual {
        height: 220px;
        order: -1;
    }

    .proj-slide-info {
        padding: 28px 24px 24px;
        gap: 14px;
    }

    .proj-title { font-size: 1.25rem; }
}

@media (max-width: 500px) {
    .proj-slide-visual { height: 180px; }
    .proj-slide-info { padding: 22px 18px 20px; }
    .proj-title { font-size: 1.1rem; }
    .proj-desc { font-size: 0.84rem; }
}

/* 
==============
DEPOIMENTOS
==============
*/
.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 12px;
    letter-spacing: -0.5px;
}

.testimonials-header h3 span {
    color: var(--light-blue);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(116, 228, 252, 0.1);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 22px;
    font-size: 4rem;
    color: rgba(0, 145, 221, 0.12);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 145, 221, 0.3);
    box-shadow: 0 8px 28px rgba(0, 145, 221, 0.12);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonial-stars i {
    width: 16px;
    height: 16px;
    color: #f4bc2a;
    fill: #f4bc2a;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #0060aa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-info strong {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
}

.author-info span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.38);
}

/* Responsivo */
@media (max-width: 900px) {
    .project-card {
        min-width: calc(50% - 12px);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: auto;
    }
}

@media (max-width: 600px) {
    .project-card {
        min-width: 100%;
    }
    .projects-header h2 {
        font-size: 1.9rem;
    }
}

.project-card-image--photo {
    padding: 0;
}

.project-card-image--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    padding: 8px 16px;
    background: rgba(0, 145, 221, 0.1);
    border: 1px solid rgba(0, 145, 221, 0.3);
    border-radius: 8px;
    color: var(--light-blue);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    width: fit-content;
}

.project-link i {
    width: 13px;
    height: 13px;
}

.project-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* 
==============
HERO ANIMAÇÕES DE ENTRADA
==============
*/
.hero-anim {
    opacity: 0;
    transform: translateY(24px);
}

.hero-anim-1 {
    animation: fadeSlideUp 0.6s ease 0.1s forwards;
}

.hero-anim-2 {
    animation: fadeSlideUp 0.6s ease 0.3s forwards;
}

.hero-anim-3 {
    animation: fadeSlideUp 0.6s ease 0.5s forwards;
}

.hero-anim-4 {
    animation: fadeSlideUp 0.6s ease 0.7s forwards;
}

.hero-anim-5 {
    animation: fadeSlideUp 0.6s ease 0.9s forwards;
}
/* 
==============
NAVBAR — USUÁRIO LOGADO
==============
*/
#navUserArea {
    position: relative;
}

.nav-user-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(0,145,221,0.12);
    border: 1px solid rgba(0,145,221,0.3);
    border-radius: 50px;
    padding: 5px 14px 5px 5px;
    cursor: pointer;
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.nav-user-btn:hover {
    background: rgba(0,145,221,0.22);
    border-color: rgba(0,145,221,0.6);
}

.nav-user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.nav-user-chevron {
    width: 14px;
    height: 14px;
    color: rgba(255,255,255,0.5);
    transition: transform 0.2s;
}

.nav-user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #0d1b3e;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 6px;
    min-width: 200px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.18s, transform 0.18s;
    z-index: 9999;
}

.nav-user-dropdown.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.nav-user-dropdown-header {
    padding: 10px 12px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 4px;
}

.nav-user-dropdown-header .nud-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: #fff;
}

.nav-user-dropdown-header .nud-email {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
    word-break: break-all;
}

.nav-user-dropdown a,
.nav-user-dropdown button {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    text-align: left;
}

.nav-user-dropdown a:hover,
.nav-user-dropdown button:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.nav-user-dropdown .nud-logout {
    color: rgba(239,68,68,0.8);
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 4px;
    padding-top: 9px;
}

.nav-user-dropdown .nud-logout:hover {
    background: rgba(239,68,68,0.1);
    color: #ef4444;
}


/* 
==============
FAQ
==============
*/
.faq {
    background: linear-gradient(180deg, #060d40, var(--dark-blue));
    position: relative;
    overflow: hidden;
}

/* Grade de fundo sutil — mesmo padrão do hero/serviços */
.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 145, 221, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 145, 221, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Brilho ambiente no centro — igual ao hero */
.faq::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(0, 145, 221, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.faq-container {
    position: relative;
    z-index: 1;
}

/* Header — alinhado ao padrão .services-header */
.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.faq-header h2 span {
    color: var(--light-blue);
}

.faq-header p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    font-size: 0.97rem;
}

/* Lista de itens */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Item individual */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(116, 228, 252, 0.1);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
}

/* Linha de brilho no topo — mesmo padrão .service-card */
.faq-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.faq-item:hover::before,
.faq-item.open::before {
    opacity: 1;
}

.faq-item:hover,
.faq-item.open {
    border-color: rgba(0, 145, 221, 0.35);
    box-shadow: 0 8px 30px rgba(0, 145, 221, 0.1);
    background: rgba(0, 145, 221, 0.04);
}

/* Botão da pergunta */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--white);
    transition: color 0.2s ease;
    line-height: 1.5;
}

.faq-question span {
    flex: 1;
}

.faq-question:hover {
    color: var(--light-blue);
}

/* Ícone chevron */
.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 145, 221, 0.1);
    border: 1px solid rgba(0, 145, 221, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.35s ease;
}

.faq-item.open .faq-icon {
    background: rgba(0, 145, 221, 0.18);
    border-color: rgba(0, 145, 221, 0.4);
    transform: rotate(180deg);
}

/* Resposta — animação via max-height (JS) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 24px 22px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    line-height: 1.8;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 18px;
    margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 1.9rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 18px 18px;
    }

    .faq-answer p {
        padding: 0 18px 18px;
        padding-top: 14px;
        font-size: 0.88rem;
    }
}