/* RESET E DEFINIÇÕES GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #e61919;
    /* Vermelho Taekwondo */
    --bg-dark: rgba(10, 10, 10, 0.9);
    --text-light: #ffffff;
    --transition: all 0.3s ease;
}

body {
    background-color: #000;
    color: var(--text-light);
    overflow-x: hidden;
    font-size: 18px;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}


/* VÍDEO DE FUNDO (BACKGROUND) */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Fica atrás de tudo */
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* máscara preta semitransparente */
    pointer-events: none;
    /* não bloqueia cliques */
}

/* Opcional: deixa uma suavidade maior no centro do vídeo */
.video-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 80%);
    pointer-events: none;
}

/* HEADER / NAVIGATION */
.header-main {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #333;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-img {
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    padding: 8px 10px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

/* HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    min-height: 90vh;
}


.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-left p {
    font-size: 1.7rem;
}

.btn-cta {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 18px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.4rem;
    margin: 30px 0;
    transition: var(--transition);
}

.btn-cta:hover {
    background: #ff0000;
    transform: scale(1.05);
}

.hero-numbers {
    display: flex;
    gap: 35px;
    margin-top: 40px;
}

.hero-numbers strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
}

.hero-numbers span {
    font-size: 1.4rem;
    color: #ccc;
}

.hero-photo {
    width: 100%;
    max-width: 450px;
}

/* CARROSSEL / SERVICES SECTION */
.services,
.testimonials {
    padding: 80px 10%;
    text-align: center;
}



.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    /* Esconde scroll no Firefox */
    scroll-snap-type: x mandatory;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    min-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #222;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.carousel-slide:hover {
    transform: translateY(-5px);
}

.testimonial-form {
    margin: 25px auto 0;
    background: rgba(255, 255, 255, 0.04);
    padding: 18px;
    border: 1px solid #333;
    border-radius: 12px;
    max-width: 920px;
    /* largura alinhada com 3 cards de 280 + gaps */
    width: 100%;
    box-sizing: border-box;
}

.testimonials .carousel-wrapper {
    margin: 0 auto;
    max-width: 920px;
    width: 100%;
}

.circle-desc h3 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.circle-desc p {

    font-size: 1.3rem;
}

.testimonial-form h3 {
    margin-bottom: 12px;
}

.testimonial-form input,
.testimonial-form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #111;
    color: #fff;
}

.file-label {
    display: inline-block;
    margin-top: 8px;
    color: #ddd;
    font-size: 0.9rem;
}

.testimonial-form button {
    width: 100%;
    margin-top: 5px;
}

.circle-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
}

.circle-photo.treinos {
    background-image: url('../img/pedro-med.png');
}

.circle-photo.cursos {
    background-image: url('../img/WhatsApp Image 2026-03-18 at 21.47.17.jpeg');
}

.circle-photo.competicoes {
    background-image: url('../img/PEDRO MOREIRA LOGO-cabecario 2.png');
}

.circle-photo.quarentreinos {
    background-image: url('../img/log.png');
}

.circle-photo.pedro {
    background-image: url('../img/pedro-med.png');
}

.circle-photo.lauany {
    background-image: url('../img/WhatsApp Image 2026-03-18 at 21.47.17.jpeg');
}

.circle-photo.claudio {
    background-image: url('../img/PEDRO MOREIRA LOGO-cabecario 2.png');
}

/* CONTACT SECTION */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 10%;
    background: rgba(0, 0, 0, 0.6);
    align-items: start;
}

.contact-left,
.contact-right {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.contact-right video {
    width: 100%;
    height: 550px;
    display: block;
    border-radius: 10px;
    opacity: 0.7;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #aaa;
}

input,
textarea {
    background: #111;
    border: 1px solid #333;
    padding: 12px;
    color: white;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 60px 5%;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        max-width: 100%;
        width: 100%;
    }

    .header-inner {
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-menu {
        width: 100%;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .contact {
        grid-template-columns: 1fr;
        padding: 60px 5%;
    }

    .services,
    .testimonials {
        padding: 40px 5%;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 1rem;
    }

    .btn-cta {
        dis
        padding: 14px 22px;
        font-size: 0.9rem;
        align-items: center;
    }

    .hero-numbers {
        flex-direction: column;
        gap: 15px;
    }

    .carousel-slide {
        min-width: 220px;
        padding: 20px;
    }

    .circle-photo {
        width: 100px;
        height: 100px;
    }

    .carousel-track {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .header-main {
        padding: 12px 5%;
    }

    .nav-menu a {
        margin-left: 8px;
        font-size: 0.8rem;
    }

    .hero {
        padding: 40px 4%;
    }

    .hero-left h1 {
        font-size: 1.6rem;
    }

    .contact {
        padding: 40px 4%;
    }

    .footer {
        padding: 30px 4% 15px;
    }

    .whatsapp-float {
        width: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    z-index: 100;
}

.whatsapp-float img {
    width: 100%;
}

/* FOOTER */
.footer {
    background: #000;
    padding: 50px 10% 20px;
    border-top: 1px solid #222;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-content a {
    color: #aaaaaa;
    text-decoration: none;
}


.footer-copy {
    text-align: center;
    color: #555555;
    font-size: 0.8rem;
}