/* RESET & VARIÁVEIS DE COR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-blue: #6f00ff;
    --bg-dark: #000;
    --card-dark: #1c1a1a;
    --accent-orange: #fff;
    --text-white: #ffffff;
    --text-gray: #a5a5a5;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    
    /* Imagem de Fundo com Overlay Escuro em Gradiente */
    background-image: 
        linear-gradient(180deg, rgba(17, 17, 17, 0.856) 0%, rgba(0, 0, 0, 0.644) 100%),
        url('../img/bg.jpg'); /* Nome da sua imagem baixada */
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Efeito Parallax suave ao rolar */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.blue-bg { background-color: var(--bg-blue); }
.dark-bg { background-color: var(--bg-dark); }

/* NAVBAR FLUTUANTE (FLOATING NAVBAR) */
.navbar-floating {
    position: fixed;
    top: 20px;            /* Afasta do topo */
    left: 50%;
    transform: translateX(-50%); /* Centraliza perfeitamente */
    width: calc(100% - 40px);   /* Afasta das laterais em 20px de cada lado */
    max-width: 1300px;
    z-index: 999;
    
    /* Estilo Flutuante / Dark Glassmorphism */
    background: rgba(12, 12, 12, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;  /* Cantos totalmente arredondados */
    padding: 10px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* LOGO */
.navbar-floating .logo {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* LINKS DE NAVEGAÇÃO */
.navbar-floating .nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.navbar-floating .nav-links a {
    color: #b5b5b5;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-floating .nav-links a:hover,
.navbar-floating .nav-links a.active {
    color: #ffffff;
}

/* BOTÕES DE AÇÃO */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-register {
    background-color: #c7c8ff; /* Tom roxo/azul claro pastel */
    color: #111;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.btn-register:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

.btn-login {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ADAPTAÇÃO PARA DISPOSITIVOS MÓVEIS */
@media (max-width: 1024px) {
    .navbar-floating .nav-links {
        display: none; /* Em telas menores esconde os links do meio (ideal criar menu hambúrguer) */
    }
}

/* HERO SECTION */
.hero-section {
    padding: 200px 0 100px 0;
    background: transparent;
}


/* Deixar as seções com transparência suave */
.feature-section.blue-bg {
    /*background-color: rgba(62, 3, 201, 0.85); *//* Azul semi-transparente */
    /*backdrop-filter: blur(4px);*/

    background-color: #6f00ff;
    backdrop-filter: blur(4px);
}

.newsletter-wrapper.blue-bg {
    background-color: rgba(62, 3, 201, 0.85);
    backdrop-filter: blur(4px);
}

.breadcrumb {
    font-size: 13px;
    color: var(--accent-orange);
    margin-bottom: 15px;
    display: inline-block;
}

.breadcrumb span {
    color: var(--text-white);
}

.hero-section h1 {
    font-size: 38px;
    max-width: 750px;
    margin: 0 auto 15px auto;
    line-height: 1.3;
}

.hero-section .subtitle {
    font-size: 14px;
    color: #d1d5ff;
    margin-bottom: 50px;
}

/* STATS CARD */
.stats-card {
    background-color: var(--bg-blue);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    background-color: var(--accent-orange);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.stat-info h3 {
    font-size: 22px;
    text-align: left;
}

.stat-info p {
    font-size: 13px;
    color: var(--text-gray);
    text-align: left;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background-color: #000;
}

/* GRID SECTIONS */
.feature-section {
    padding: 60px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.media-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.media-container img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--bg-blue);
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.feature-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-content p {
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i {
    color: #00ff88;
}

.btn-orange {
    display: inline-block;
    background-color: var(--accent-orange);
    color: #000;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    border: none;
    cursor: pointer;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 90px 0;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background-color: var(--card-dark);
    border: 1px solid #2d2d2d;
    border-radius: 12px;
    padding: 25px;
}

.testimonial-card.active-card {
    border: 1px solid var(--accent-orange);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-header img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.user-info h4 {
    font-size: 15px;
}

.user-info span {
    font-size: 12px;
    color: var(--text-gray);
}

.rating {
    margin-left: auto;
    font-size: 13px;
}

.rating i {
    color: #ffc107;
}

.card-text {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* NEWSLETTER */
.newsletter-wrapper {
    padding: 40px 0 80px 0;
}

.newsletter-card {
    background-color: var(--card-dark);
    border-radius: 12px;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.newsletter-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.newsletter-text p {
    font-size: 13px;
    color: var(--text-gray);
    max-width: 450px;
}

.newsletter-form {
    display: flex;
    background-color: #2b2b2b;
    border-radius: 8px;
    padding: 5px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: white;
    outline: none;
    width: 250px;
}

.newsletter-form .btn-orange {
    margin-top: 0;
}

/* FOOTER */
.footer-dark {
    background-color: var(--bg-dark);
    padding: 60px 0 20px 0;
    border-top: 1px solid #222;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 15px 0;
}

.footer-brand .handle {
    color: var(--text-white);
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--text-white);
}

.footer-col p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.footer-col .phone {
    color: var(--text-white);
    font-weight: 600;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background-color: var(--text-white);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 12px;
    color: var(--text-gray);
}

/* RESPONSIVIDADE (MOBILE & TABLET) */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .nav-links { display: none; } /* Pode ser adaptado para menu hambúrguer */
    .stats-card {
        flex-direction: column;
        gap: 20px;
    }
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    .newsletter-form input {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}