/* =========================
CONFIGURAÇÕES GLOBAIS
========================= */

html {
    font-size: 15px;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================
TÍTULOS
========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.5em;
}

/* =========================
CONTAINER
========================= */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================
HEADER
========================= */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;

    background: rgba(0, 0, 0, 0.55);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    transition: 0.3s ease;
}

.navbar {
    width: 100%;
}

.nav-container {
    max-width: 1280px;
    height: 88px;

    margin: 0 auto;
    padding: 0 24px;

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

.nav-logo h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-right: 160px;
    list-style: none;
}

.nav-menu a {
    color: #ffffff;

    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 500;

    transition: 0.3s ease;
}

.nav-menu a:hover {
    color: #d4af37;
}

/* =========================
HERO
========================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: flex-start;

    padding-top: 90px;
    padding-bottom: 30px;

    background: #050505;
}

.hero-content {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto;

    padding: 0 24px;

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

.hero-text {
    flex: 1;
    max-width: 760px;
}

.hero-video {
    flex: 1;

    display: flex;
    flex-direction: column;

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

    margin-top: -25px;
    
}

.hero-video video {
    width: 100%;
    max-width: 430px;
    max-height: 75vh;

    border-radius: 22px;

    border: 2px solid #d4af37;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .45);

    object-fit: cover;
}

.hero-video-btn {

    display: inline-block;

    margin-top: 70px;

    padding: 18px 60px;

    background: #ffffff;

    color: #000;

    text-decoration: none;

    font-weight: 700;

    border-radius: 14px;

    letter-spacing: 1px;

    transition: .3s ease;
}

.hero-video-btn:hover {

    background: #d4af37;

    transform: translateY(-3px);
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6.5rem);

    line-height: 0.92;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: -4px;

    margin-bottom: 28px;
}

.hero-subtitle {
    font-size: 1.15rem;

    color: #cfcfcf;

    line-height: 1.7;

    max-width: 650px;
}

.subtitle-cta-gap {
    margin-bottom: 32px;
}

/* =========================
PROMOÇÕES DO HERO
========================= */

.hero-promocoes {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;

    max-width: 760px;

    margin-bottom: 32px;
}

.promocao-card {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 18px;

    padding: 24px;

    background: #0f0f0f;

    border: 1px solid #222222;

    border-radius: 18px;

    overflow: hidden;

    transition: 0.3s ease;
}

.promocao-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: #d4af37;

    opacity: 0;

    transition: 0.3s ease;
}

.promocao-card:hover {
    transform: translateY(-5px);

    border-color: #3a3a3a;

    background: #121212;
}

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

.promocao-icon {
    width: 46px;
    height: 46px;

    min-width: 46px;

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

    background: #181818;

    border: 1px solid #292929;

    border-radius: 12px;

    color: #d4af37;

    font-size: 1.2rem;
}

.promocao-content {
    flex: 1;
}

.promocao-tag {
    display: inline-block;

    color: #d4af37;

    font-size: 0.7rem;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 8px;
}

.promocao-content h3 {
    color: #ffffff;

    font-size: 1.1rem;

    line-height: 1.3;

    margin-bottom: 12px;
}

.promocao-preco {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 10px;
}

.preco-antigo {
    color: #777777;

    font-size: 0.95rem;

    text-decoration: line-through;
}

.preco-novo {
    color: #ffffff;

    font-family: 'Montserrat', sans-serif;

    font-size: 1.7rem;

    font-weight: 800;

    line-height: 1;
}

.promocao-content p {
    color: #999999;

    font-size: 0.82rem;

    line-height: 1.6;

    margin: 0;
}

/* =========================
BOTÃO
========================= */

.cta-button {
    display: inline-block;

    background: #ffffff;

    color: #000000;

    text-decoration: none;

    padding: 18px 34px;

    border-radius: 12px;

    font-size: 0.9rem;

    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.3s ease;
}

.cta-button:hover {
    background: #d4af37;

    transform: translateY(-3px);
}

/* =========================
FEATURES
========================= */

.features {
    background: #0a0a0a;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: #111111;
    border: 1px solid #1f1f1f;
    border-radius: 20px;
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #2f2f2f;
}

.feature-link {
    display: block;
    padding: 42px 32px;
    text-decoration: none;
    text-align: center;
}

.feature-link i {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 22px;
}

.feature-link h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.feature-link p {
    color: #b5b5b5;
    line-height: 1.7;
}

/* CTA dos cards */

.feature-cta {
    display: block;
    margin-top: 24px;
    color: #d4af37;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: 0.3s ease;
}

.feature-link:hover .feature-cta {
    transform: translateX(6px);
}

/* =========================
BARBEIROS
========================= */

.barbeiros-section {
    padding: 110px 0;
    background: #050505;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 14px;
}

.section-title p {
    color: #b5b5b5;
}

.barbeiros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.barbeiro-card {
    background: #0f0f0f;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #1d1d1d;
    transition: 0.3s ease;
}

.barbeiro-card:hover {
    transform: translateY(-8px);
    border-color: #2d2d2d;
}

.barbeiro-img {
    height: 430px;
    overflow: hidden;
}

.barbeiro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.barbeiro-content {
    padding: 30px;
}

.barbeiro-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.barbeiro-funcao {
    display: inline-block;
    color: #d4af37;
    margin-bottom: 18px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.barbeiro-content p {
    color: #b5b5b5;
    line-height: 1.7;
    margin-bottom: 24px;
}

.barbeiro-social {
    display: flex;
    gap: 14px;
}

.barbeiro-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #151515;
    color: #ffffff;

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

    text-decoration: none;

    border: 1px solid #252525;

    transition: 0.3s ease;
}

.barbeiro-social a:hover {
    background: #d4af37;
    color: #000000;
}

/* =========================
MÉTODO KTB
========================= */

.newsletter {
    padding: 100px 0;
    background: #080808;
    border-top: 1px solid #151515;
}

.newsletter-content {
    text-align: center;
}

.newsletter-content h2 {
    font-size: 3rem;
    margin-bottom: 18px;
}

.newsletter-content p {
    color: #b5b5b5;
    margin-bottom: 35px;
}

/* =========================
FOOTER
========================= */

.footer {
    background: #000000;
    border-top: 1px solid #151515;
    padding-top: 70px;
}

.footer-content {
    max-width: 1280px;

    margin: 0 auto;

    padding: 0 24px 60px;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 50px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 22px;
}

.footer-column li,
.footer-column a {
    color: #b5b5b5;
    text-decoration: none;
    line-height: 1.9;
    transition: 0.3s ease;
}

.footer-column a:hover {
    color: #d4af37;
}

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

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.social-links a {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #111111;

    border: 1px solid #222;

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

.social-links a:hover {
    background: #d4af37;
    color: #000000;
}

.footer-bottom {
    border-top: 1px solid #151515;
    padding: 24px;
    text-align: center;
}

.copyright-text {
    color: #777777;
    font-size: 0.95rem;
}

/* =========================
DEPOIMENTOS
========================= */

.depoimentos {

    padding: 70px 0;

    background: #050505;

}

.depoimentos .container {

    position: relative;

    min-height: 360px;

    margin-top: -20px;

}

.titulo-depoimentos {

    text-align: center;

    font-size: 3rem;

    margin-bottom: 40px;

}

.depoimento-card {

    opacity: 0;

    visibility: hidden;

    position: absolute;

    width: 100%;

    max-width: 900px;

    left: 50%;

    transform: translateX(-50%) translateY(15px);

    background: #111111;

    border: 1px solid #222;

    border-radius: 20px;

    padding: 40px;

    text-align: center;

    transition:
        opacity 1s ease,
        transform 1s ease;

}

.depoimento-card.active {

    opacity: 1;

    visibility: visible;

    transform: translateX(-50%) translateY(0);

}

.depoimento-card p {

    font-size: 1.2rem;

    line-height: 1.8;

    color: #e5e5e5;

    margin-bottom: 20px;

}

.depoimento-card span {

    color: #d4af37;

    font-weight: 600;

}

/* =========================
RESPONSIVO MOBILE
========================= */

@media (max-width: 768px) {

    .container {
        padding: 0 18px;
    }

    /* HEADER */

    .nav-container {
        height: 75px;
    }

    .nav-logo h1 {
        font-size: 1.5rem;
    }

    .nav-menu {
        display: none;
    }

    /* HERO */

    .hero {
        min-height: 90vh;
        padding-top: 110px;
        padding-bottom: 60px;
    }

    .hero-content {
        text-align: center;
        padding: 0 18px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .subtitle-cta-gap {
        margin-bottom: 28px;
    }

    /* PROMOÇÕES */

    .hero-promocoes {
        grid-template-columns: 1fr;

        max-width: 500px;

        margin-left: auto;
        margin-right: auto;

        gap: 14px;

        margin-bottom: 28px;
    }

    .promocao-card {
        text-align: left;

        padding: 20px;

        gap: 15px;
    }

    .promocao-icon {
        width: 42px;
        height: 42px;

        min-width: 42px;

        font-size: 1rem;
    }

    .promocao-content h3 {
        font-size: 1rem;
    }

    .preco-novo {
        font-size: 1.5rem;
    }

    .promocao-content p {
        font-size: 0.8rem;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    /* FEATURES */

    .features {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* BARBEIROS */

    .barbeiros-section {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .section-title p {
        text-align: center;
    }

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

    .barbeiro-img {
        height: 320px;
    }

    .barbeiro-content h3 {
        font-size: 1.5rem;
    }

    /* DEPOIMENTOS */

    .depoimentos {
        padding: 80px 0;
    }

    .titulo-depoimentos {
        font-size: 2.2rem;
    }

    .depoimentos .container {
        min-height: 320px;
    }

    .depoimento-card {
        padding: 25px;
        width: calc(100% - 20px);
    }

    .depoimento-card p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* MÉTODO KTB */

    .newsletter {
        padding: 80px 0;
    }

    .newsletter-content h2 {
        font-size: 2.2rem;
    }

    /* FOOTER */

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* =========================
TELAS MUITO PEQUENAS
========================= */

@media (max-width: 420px) {

    .hero-title {
        font-size: 2.6rem;
    }

    .promocao-card {
        flex-direction: column;

        align-items: center;

        text-align: center;
    }

    .promocao-preco {
        justify-content: center;
    }

}

/* =========================================
   AJUSTE PARA NOTEBOOKS
========================================= */

@media (max-width: 1366px) {

    .hero-content {
        padding: 0 36px;
    }

}

/* ===========================
   MENU MOBILE
=========================== */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 20px;
}

@media (max-width:768px) {

    /* =========================
    MENU
    ========================= */

    .hamburger {
        display: flex;
    }

    .nav-menu {

        position: absolute;

        top: 80px;

        left: 0;

        width: 100%;

        background: #0b0b0b;

        flex-direction: column;

        align-items: center;

        gap: 25px;

        padding: 30px 0;

        display: none;

        border-top: 1px solid #1d1d1d;

        z-index: 999;

    }

    .nav-menu.active {
        display: flex;
    }

    /* =========================
    RECONHECIMENTO
    ========================= */

    .reconhecimento-section {

        padding: 80px 0;

    }

    .reconhecimento-header {

        margin-bottom: 45px;

    }

    .reconhecimento-header h2 {

        font-size: 2rem;

    }

    .reconhecimento-header p {

        font-size: 1rem;

    }

    .premiacao-destaque img {

        width: 100%;
        height: 280px;

        object-fit: cover;

    }

    .premiacao-grid {

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 20px;

    }

    .premiacao-grid img {

        width: 100%;

        max-width: 320px;

        height: auto;

        object-fit: cover;

        border-radius: 20px;

    }

    .premiacao-video h3 {

        font-size: 1.5rem;

    }

    .premiacao-video video {

        width: 100%;
        max-width: 100%;

    }

    /* HERO */

    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-content {
        flex-direction: column;
        gap: 35px;
    }

    .hero-video {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 0;
    }

    .hero-video video {
        width: 100%;
        max-width: 300px;
        border-radius: 20px;
    }

    .hero-promocoes {
        grid-template-columns: 1fr;
    }
}

/* =========================
RECONHECIMENTO
========================= */

.reconhecimento-section {

    padding: 110px 0;

    background: #080808;

}

.reconhecimento-header {

    text-align: center;

    max-width: 900px;

    margin: 0 auto 70px;

}

.reconhecimento-tag {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #d4af37;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 20px;

}

.reconhecimento-tag i {

    font-size: 1.1rem;

}

.reconhecimento-header h2 {

    font-size: clamp(2.2rem, 5vw, 3.5rem);

    margin-bottom: 25px;

}

.reconhecimento-header p {

    color: #bfbfbf;

    line-height: 1.9;

    font-size: 1.05rem;

}

.premiacao-destaque {

    margin-bottom: 35px;

}

.premiacao-destaque img {

    width: 100%;

    height: 600px;

    object-fit: cover;

    border-radius: 22px;

    border: 2px solid #d4af37;

    transition: .4s;

}

.premiacao-destaque img:hover {

    transform: scale(1.01);

}

/* GALERIA - DESKTOP */

.premiacao-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    justify-content: center;

    align-items: center;

}

.premiacao-grid img {

    width: 100%;

    height: 350px;

    object-fit: cover;

    border-radius: 20px;

    transition: .3s;

}

.premiacao-grid img:hover {

    transform: translateY(-6px);

}

.premiacao-video {

    text-align: center;
    margin-top: 80px;

}

.premiacao-video h3 {

    margin-bottom: 30px;

    font-size: 2rem;

}

.premiacao-video video {

    width: 100%;

    max-width: 355px;

    border-radius: 22px;

    border: 2px solid #d4af37;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);

}

/* FORÇA O LAYOUT MOBILE DAS PREMIAÇÕES */
@media (max-width: 768px) {

    .premiacao-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        gap: 20px;
    }

    .premiacao-grid img {
        width: 100%;
        max-width: 320px;
        height: auto;
    }

}