@charset "UTF-8";

:root {
    --azul: #023e66;
    --azul-escuro: #0f52af;
    --azul-claro: #e7f1ff;
    --branco: #ffffff;
    --cinza: #f8f9fa;
}

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

/* ================= FONTES MODERNAS ================= */

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.2rem;
}

body {
    background: var(--cinza);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* alinhamento perfeito no menu */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header {
    background-color: rgba(255, 255, 255, 0.897);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;

    background: linear-gradient(
        90deg,
        #023e66,
        #0f52af,
        #2563eb
    );

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

    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

/* brilho passando infinito */
.logo::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.7),
        transparent
    );

    transform: skewX(-25deg);

    animation: brilhoLogo 4s linear infinite;
}

@keyframes brilhoLogo {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}




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

nav a {
    color: black;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}

nav a:hover {
    color: var(--azul-escuro);

}

.hero {
    background: linear-gradient(120deg, var(--azul), var(--azul-escuro));
    color: white;

    display: flex;
    align-items: center;      /* centraliza vertical */
    justify-content: center;  /* centraliza horizontal */

    text-align: center;
    
   
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.section {
    padding: 80px 0;
}

.azul {
    background: var(--azul-claro);
}

.sobre {
    display: flex;
    gap: 40px;
    align-items: center;
}

.sobre img {
    width: 300px;
    border-radius: 15px;
}

.cards {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    width: 300px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card i {
    font-size: 35px;
    color: var(--azul);
    margin-bottom: 15px;
}

.center {
    text-align: center;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--azul);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: var(--azul-escuro);
}

.btn-outline {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border: 2px solid var(--azul);
    color: var(--azul);
    border-radius: 30px;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--azul);
    color: white;
}

.btn-whatsapp {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: #25D366;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
   
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5);
}

/* ================= SOBRE MODERNO ================= */

.sobre-moderno {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.sobre-texto {
    flex: 1;
    min-width: 280px;
}

.sobre-texto h2 {
    margin-bottom: 20px;
}

.sobre-texto p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.carrossel {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.carrossel-track {
    display: flex;
    width: calc(300px * 4); /* 8 imagens (4 + 4 repetidas) */
    animation: slide 20s linear infinite;
}

.carrossel-track img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    flex-shrink: 0;
}

/* LOOP PERFEITO */
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-634px); /* 4 imagens */
    }
}

.carrossel:hover .carrossel-track {
    animation-play-state: paused;
}



.video iframe {
    width: 90%;
    max-width: 800px;
    height: 450px;
    border-radius: 15px;
    margin-top: 30px;
}

.redes {
    margin-top: 30px;
}

.redes a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 10px;
    border-radius: 50%;
    font-size: 26px;
    background: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* CORES ORIGINAIS */
.redes a .fa-whatsapp { color: #25D366; }
.redes a .fa-facebook { color: #1877F2; }
.redes a .fa-youtube { color: #FF0000; }

.redes a .fa-instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* HOVER PREMIUM */
.redes a:hover {
    transform: translateY(-8px) scale(1.1);
}

/* Hover individual com glow */
.redes a:nth-child(1):hover {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.redes a:nth-child(2):hover {
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.5);
}

.redes a:nth-child(3):hover {
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.5);
}

.redes a:nth-child(4):hover {
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.5);
}



footer {
    background: var(--azul-escuro);
    color: white;
    text-align: center;
    padding: 20px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-decoration: none;
    width: 60px;
    height: 60px;

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

    background: #25D366;
    color: white;
    font-size: 28px;

    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* ================= PRODUTOS MODERNO ================= */

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px; /* aumentei o espaço */
    margin: 90px 0;
}

.produto-item {
    position: relative;
    padding: 30px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

/* efeito desalinhado mais equilibrado */
.produto-item:nth-child(2) {
    margin-top: 40px;
}

.produto-item:nth-child(3) {
    margin-top: -20px;
}

.produto-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.produto-item img {
    width: 80%;
    height: 190px;
    object-fit: cover;
    border-radius: 50px 20px 60px 30px; /* formato moderno mais controlado */
    margin-bottom: 20px;
}

.produto-item h3 {
    color: var(--azul);
    font-size: 1.2rem;
}
/* ================= CURSO MODERNO ================= */

.curso-capa {
    position: relative;
    margin: 70px 0;
}

.curso-capa img {
    width: 100%;
    max-width: 650px;
    height: 400px;
    object-fit: cover;

    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    transition: 0.5s ease;
}

.curso-capa img:hover {
    transform: scale(1.02);
}

/* detalhe decorativo azul atrás */
.curso-capa::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--azul);
    top: -30px;
    left: -30px;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.08;
}

.avaliacoes {
    padding: 70px 20px;
    background: linear-gradient(135deg,#023e66,#03588c);
    text-align: center;
    color: #fff;
}

.avaliacoes h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.avaliacao-box {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 40px 25px;
    border-radius: 16px;
    max-width: 500px;
    margin: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.estrelas {
    font-size: 2.5rem;
    color: #fbbf24;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.nota {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn-avaliacoes {
    display: inline-block;
    padding: 14px 28px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: .3s;
}

.btn-avaliacoes:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

.google-logo {
    font-weight: bold;
    font-size: 1.1em;
    letter-spacing: -1px;
    white-space: nowrap; /* ⭐ IMPEDIR QUEBRA */
}

.google-logo span {
    font-family: Arial, sans-serif;
    display: inline-block;
    line-height: 1;
}

/* Cores oficiais Google */
.g1 { color: #4285F4; } /* Azul */
.g2 { color: #EA4335; } /* Vermelho */
.g3 { color: #FBBC05; } /* Amarelo */
.g4 { color: #4285F4; } /* Azul */
.g5 { color: #34A853; } /* Verde */
.g6 { color: #EA4335; } /* Vermelho */

/* ================================= */
/* WHATSAPP FLUTUANTE MODERNO */
/* ================================= */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 75px;
    height: 75px;

    background: #25D366;
    color: #ffffff;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    text-decoration: none;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 999;

    transition: transform 0.3s ease;

    animation: pulseWhatsapp 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* PULSO SUAVE PROFISSIONAL */
@keyframes pulseWhatsapp {
    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0.4),
            0 15px 35px rgba(0, 0, 0, 0.2);
    }

    70% {
        box-shadow:
            0 0 0 18px rgba(37, 211, 102, 0),
            0 15px 35px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0),
            0 15px 35px rgba(0, 0, 0, 0.2);
    }
}

/* FOOTER */
.footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 60px 0 20px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-logo {
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.footer h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: white;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    text-decoration: none;
    color: #cbd5e1;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: var(--azul);
    padding-left: 5px;
}

/* Redes sociais */
.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 8px;
    border-radius: 50%;
    background: #1e293b;
    color: white;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--azul);
    transform: translateY(-3px);
}

/* Linha inferior */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #94a3b8;
}




