/* =========================================
   RESET E CONFIGURAÇÕES GERAIS
========================================= */

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

:root {
    --primary: #f1c40f;
    --accent: #ff5203;
    --dark-bg: #0f0f0f;
    --header-bg: #cd480a;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #bdbdbd;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: clip;
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

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

header {
    background: var(--header-bg);
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    height: 65px;
    border-radius: 8px;
}

.brand-name {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
}

.brand-name .highlight {
    color: var(--primary);
    display: block;
    font-size: 13px;
    letter-spacing: 3px;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    font-size: 14px;
}

nav a:hover {
    color: var(--primary);
}

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

.hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("imagem-logo-fundo.PNG");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 120px 20px;
    text-align: center;
}

.hero h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero p {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto 30px;
    color: #ddd;
}

/* =========================================
   BOTÕES
========================================= */

.btn {
    background: var(--primary);
    color: #000;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

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

.btn-full {
    width: 100%;
}

/* =========================================
   BARRA ATENDIMENTO
========================================= */

.atendimento-barra {
    background: #111;
    border-top: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
    padding: 25px 5%;
}

.atendimento-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.status-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #000;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #333;
}

.ponto-pulsante {
    width: 12px;
    height: 12px;
    background: #25D366;
    border-radius: 50%;
    animation: pulse-verde 1.5s infinite;
}

@keyframes pulse-verde {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

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

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

.section-title {
    color: var(--accent);
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
}

/* =========================================
   CARROSSEL
========================================= */

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 50px auto;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.carousel-track .card {
    min-width: calc(33.333% - 14px);
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.carousel-track .card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.card-img-wrapper {
    height: 220px;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.card:hover img {
    transform: scale(1.08);
}

.card-info {
    padding: 20px;
    text-align: center;
}

.card-title {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: bold;
}

.card-description {
    color: var(--text-gray);
    font-size: 14px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: #000;
    font-size: 22px;
    cursor: pointer;
    z-index: 100;
    transition: 0.3s;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* =========================================
   VITRINE
========================================= */

.vendas-vitrine {
    background: #161616;
    padding: 70px 5%;
    margin-top: 60px;
}

.vitrine-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.produto-item {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #1c1c1c;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #333;
    transition: 0.3s;
}

.produto-item:hover {
    border-color: var(--primary);
}

.item-reverso {
    flex-direction: row-reverse;
}

.produto-img-box {
    flex: 1;
    height: 320px;
    overflow: hidden;
    border-radius: 15px;
}

.produto-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produto-info-box {
    flex: 1;
}

.produto-info-box h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary);
}

.medida-destaque {
    color: var(--accent);
    font-weight: bold;
    margin-bottom: 15px;
}

.copy-venda {
    color: #ccc;
    margin-bottom: 20px;
}

.produto-beneficios {
    margin-bottom: 25px;
    list-style: none;
}

.produto-beneficios li {
    margin-bottom: 10px;
}

/* =========================================
   CONTATO
========================================= */

.contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: #111;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #333;
    max-width: 1150px;
    margin: 60px auto;
}

#whatsappForm {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-title {
    color: var(--primary);
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#whatsappForm input,
#whatsappForm textarea {
    width: 100%;
    padding: 15px;
    background: #1b1b1b;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: 0.3s;
}

#whatsappForm input:focus,
#whatsappForm textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-text {
    flex: 1;
}

.contact-text .tag {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: bold;
}

.contact-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    margin: 15px 0;
}

.contact-text p {
    color: #bbb;
    margin-bottom: 25px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-features span {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =========================================
   WHATSAPP FLOAT
========================================= */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

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

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

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

footer {
    text-align: center;
    padding: 40px 20px;
    background: #000;
    border-top: 1px solid #222;
    margin-top: 60px;
}

/* =========================================
   RESPONSIVIDADE TABLET
========================================= */

@media (max-width: 992px) {

    .hero h2 {
        font-size: 38px;
    }

    .carousel-track .card {
        min-width: calc(50% - 10px);
    }

    .produto-item,
    .item-reverso {
        flex-direction: column;
    }

    .produto-info-box {
        text-align: center;
    }

}

/* =========================================
   RESPONSIVIDADE MOBILE
========================================= */

@media (max-width: 768px) {

    header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .brand-container {
        flex-direction: column;
    }

    .hero {
        padding: 90px 20px;
    }

    .hero h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .carousel-track .card {
        min-width: 100%;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .contact-box {
        flex-direction: column-reverse;
        padding: 30px;
    }

    .contact-text {
        text-align: center;
    }

    .contact-features {
        align-items: center;
    }

    .produto-item {
        padding: 20px;
    }

    .produto-info-box h3 {
        font-size: 25px;
    }

    .atendimento-content {
        flex-direction: column;
        text-align: center;
    }

}

/* =========================================
   CELULARES PEQUENOS
========================================= */

@media (max-width: 480px) {

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .btn {
        width: 100%;
    }

    .contact-text h2 {
        font-size: 28px;
    }

    .form-title {
        font-size: 22px;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
        bottom: 15px;
        right: 15px;
    }

}