/* =====================================================
   RESPONSIVIDADE SIMPLES - ESTILO LIMPO E FÁCIL
   Desenvolvido para iniciantes entenderem
   ===================================================== */

/* Reset básico - remove estilos padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "TASA Orbiter", sans-serif;
}

/* Estilos base para toda a página */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: #011F26;
    color: #1F6A73;
    font-size: 16px;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* =====================================================
   HEADER / MENU - Versão Mobile First
   ===================================================== */

header {
    display: flex;
    width: 100%;
    position: fixed;
    top: 0;
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
    background: linear-gradient(180deg, rgba(1, 31, 38, 0.95) 0%, rgba(1, 31, 38, 0.85) 100%);
    border-bottom: 1px solid rgba(3, 115, 140, 0.2);
}

.menu-logo {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #03738C;
    text-shadow: 0px 0px 10px #015958;
    white-space: nowrap;
}

/* Menu de navegação - flex com wrap */
header nav ul {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

header nav ul li {
    cursor: pointer;
    position: relative;
    padding: 5px 0;
    font-size: 0.9rem;
    white-space: nowrap;
    color: white;
}

/* Efeito hover no menu (linha embaixo) */
header nav ul li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: aqua;
    transition: width 0.2s ease;
}

header nav ul li:hover::after {
    width: 100%;
}

/* =====================================================
   PAINEL PRINCIPAL
   ===================================================== */

.painel {
    height: 100vh;
    width: 100vw;
    position: relative;
    background: linear-gradient(135deg, #011F26 0%, #033A40 100%);
    overflow: hidden;
    padding-top: 70px;
}

/* Círculo de fundo com animação de pulsação */
.painel::before {
    content: '';
    width: 250px;
    height: 250px;
    border-radius: 100%;
    background: radial-gradient(circle, rgba(4, 94, 97, 0.753) 0%, rgba(23, 85, 102, 0) 70%);
    filter: blur(100px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse 6s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* =====================================================
   LISTA DE PRODUTOS (Container)
   ===================================================== */

.painel-lista {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Item do carousel - cada produto */
.painelitem {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(100vw);
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    padding: 60px 20px;
    gap: 20px;
    width: 100%;
}

/* Item ativo com animação */
.painelitemativo {
    opacity: 1;
    transform: translateX(0);
}

/* =====================================================
   CÍRCULOS DECORATIVOS
   ===================================================== */

.painel-circulo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: solid #033A40;
    opacity: 0.6;
}

/* Círculo 1 - pequeno, direita acima */
.circle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 15%;
    left: auto;
}

/* Círculo 2 - bem pequeno, direita abaixo */
.circle:nth-child(2) {
    width: 50px;
    height: 50px;
    top: 70%;
    right: 15%;
    left: auto;
}

/* Círculo 3 - grande, esquerda */
.circle:nth-child(3) {
    width: 250px;
    height: 250px;
    top: 20%;
    left: 10%;
    right: auto;
    border: solid #026f6dcd;
}

/* =====================================================
   IMAGEM DO PRODUTO
   ===================================================== */

.item-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.item-img img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 247, 255, 0.3));
    transform: translateX(200px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.15s;
}

.painelitemativo .item-img img {
    transform: translateX(0);
    opacity: 1;
}

/* =====================================================
   CONTEÚDO DO PRODUTO (Texto, nome, descrição)
   ===================================================== */

.item-conteudo {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 2;
    flex-direction: column;
    gap: 15px;
}

/* Rótulo (Promoção) */
.item-produto {
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #078a88;
    font-weight: 400;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
    margin: 0;
}

/* Nome do produto */
.item-name {
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 0;
    color: #078a88;
    text-transform: uppercase;
}

/* Descrição do produto */
.item-descrição {
    font-size: 0.95rem;
    color: rgb(128, 128, 128);
    line-height: 1.6;
    margin: 0;
}

/* Botão Saiba Mais */
.item-btn {
    padding: 12px 16px;
    background: #1F6A73;
    color: white;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
    margin-top: 10px;
}

.item-btn:hover {
    background: #078a88;
    color: #011a19;
}

/* =====================================================
   IMAGEM VISION PRO
   ===================================================== */

.vision-pro-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.vision-pro-img img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 247, 255, 0.3));
    transform: translateX(200px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.15s;
}

.painelitemativo .vision-pro-img img {
    transform: translateX(0);
    opacity: 1;
}

/* =====================================================
   SETAS DE NAVEGAÇÃO
   ===================================================== */

/* Container das setas */
.painel-seta {
    position: absolute;
    width: 90%;
    display: none;
    justify-content: space-between;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    padding: 0 20px;
}

/* Mostrar setas apenas em telas acima de 700px */
@media (min-width: 700px) {
    .painel-seta {
        display: flex;
    }
}

/* Botão de seta */
.seta-btn {
    width: 50px;
    height: 50px;
    background-color: #1F6A73;
    border-radius: 50%;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.seta-btn:hover {
    background: #078a88;
    transform: scale(1.1);
}

.seta-btn svg {
    width: 20px;
    height: 20px;
}

/* =====================================================
   INDICADORES (Número e Dots)
   ===================================================== */

.indicadores-numero {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 5;
}

/* Número do slide */
.numero {
    font-size: 2rem;
    font-weight: 600;
    color: white;
}

/* Container dos dots */
.dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Dot individual */
.dot {
    background-color: rgba(35, 123, 123, 0.3);
    width: 30px;
    height: 3px;
    border-radius: 2px;
    z-index: 5;
    transition: background-color 0.3s ease;
}

/* Dot ativo */
.Dativo {
    background-color: rgb(5, 255, 255);
    box-shadow: 0px 0px 10px #19a3c247;
    height: 4px;
}



/* =====================================================
   RESPONSIVIDADE - DESKTOP (769px+)
   Layout em linha, fontes maiores, elementos maiores
   ===================================================== */

@media (min-width: 769px) {

    /* Layout em linha para desktop */
    .painelitem {
        flex-direction: row;
        gap: 40px;
        justify-content: center;
        align-items: center;
        padding: 80px 40px;
    }

    /* Mostrar setas no desktop */
    .painel-seta {
        display: flex;
    }

    /* Aumentar fonte do nome */
    .item-name {
        font-size: 4rem;
    }

    /* Aumentar fonte do rótulo */
    .item-produto {
        font-size: 3rem;
    }

    /* Aumentar fonte da descrição */
    .item-descrição {
        font-size: 1rem;
    }

    /* Aumentar tamanho da imagem */
    .item-img img,
    .vision-pro-img img {
        max-width: 350px;
    }

    /* Aumentar círculos */
    .circle:nth-child(1) {
        width: 120px;
        height: 120px;
    }

    .circle:nth-child(2) {
        width: 80px;
        height: 80px;
    }

    .circle:nth-child(3) {
        width: 400px;
        height: 400px;
    }

    /* Aumentar botões de seta */
    .seta-btn {
        width: 60px;
        height: 60px;
    }

    .seta-btn svg {
        width: 24px;
        height: 24px;
    }

    /* Indicadores maiores */
    .numero {
        font-size: 3rem;
    }

    .dot {
        width: 40px;
        height: 4px;
    }

    .Dativo {
        height: 5px;
    }

    /* Header maior */
    header {
        padding: 20px 50px;
    }

    .menu-logo {
        font-size: 2rem;
    }

    header nav ul {
        gap: 40px;
    }

    header nav ul li {
        font-size: 1rem;
    }

    .painel {
        padding-top: 80px;
    }

    .painel-lista {
        padding: 40px;
    }

    .item-conteudo {
        max-width: 600px;
    }
}

/* =====================================================
   RESPONSIVIDADE - DESKTOP GRANDE (1200px+)
   Aumentar ainda mais os espaçamentos e tamanhos
   ===================================================== */

@media (min-width: 1200px) {
    .painel {
        padding-top: 100px;
    }

    .painel-lista {
        padding: 50px;
    }

    .item-conteudo {
        max-width: 600px;
        padding: 30px;
    }

    .item-img,
    .vision-pro-img {
        max-width: 400px;
    }

    .item-img img,
    .vision-pro-img img {
        max-width: 400px;
    }
}

/* =====================================================
   RESPONSIVIDADE - MOBILE (até 480px)
   Layout coluna, fontes menores, espaçamentos reduzidos
   ===================================================== */

@media (max-width: 480px) {

    /* Reduzir padding do header */
    header {
        padding: 10px 15px;
    }

    .menu-logo {
        font-size: 1.5rem;
        margin-left: 17%;
    }


    header nav ul li {
        display: none;
    }

    /* Reduzir padding do painel */
    .painel {
        padding-top: 60px;
    }

    .painel-lista {
        padding: 15px;
    }

    /* Reduzir item do carousel */
    .painelitem {
        padding: 40px 15px;
        gap: 15px;
    }

    /* Reduzir fontes */
    .item-produto {
        font-size: 1.5rem;
    }

    .item-name {
        font-size: 2rem;
    }

    .item-descrição {
        font-size: 0.8rem;
        overflow: visible;
    }

    /* Reduzir tamanho das imagens */
    .item-img,
    .vision-pro-img {
        max-width: 200px;

    }

    .item-img img,
    .vision-pro-img img {
        max-width: 350px;
    }

    .vision-pro-img img {
        margin-top: 100px;
    }

    /* Reduzir círculos */
    .circle:nth-child(1) {
        width: 60px;
        height: 60px;
        top: 5%;
        right: 10%;
    }

    .circle:nth-child(2) {
        width: 40px;
        height: 40px;
        top: 70%;
        right: 10%;
    }

    .circle:nth-child(3) {
        width: 250px;
        height: 250px;
        top: 18%;
        left: 25%;
    }

    /* Reduzir indicadores */
    .numero {
        font-size: 2rem;
    }

    .dot {
        width: 30px;
        height: 2px;
    }

    .dots {
        gap: 6px;
    }

    /* Reduzir botão */
    .item-btn {
        padding: 10px 12px;
        font-size: 1rem;
        margin-left: 35%;
    }

    .painel::before {
        width: 200px;
        height: 200px;
    }

    /* Setas escondidas no mobile */
    .painel-seta {
        display: none;
    }
}

/* =====================================================
   RESPONSIVIDADE - TABLET PEQUENO (481px - 768px)
   Tamanhos intermediários entre mobile e desktop
   ===================================================== */

@media (min-width: 481px) and (max-width: 768px) {
    .painel {
        padding-top: 70px;
    }

    .painel-lista {
        padding: 25px;
    }

    .painelitem {
        padding: 50px 25px;
        gap: 20px;
    }

    .item-produto {
        font-size: 1.5rem;
    }

    .item-name {
        font-size: 2rem;
    }

    .item-descrição {
        font-size: 0.9rem;
    }

    .item-img img,
    .vision-pro-img img {
        max-width: 250px;
    }

    .numero {
        font-size: 1.8rem;
    }

    header {
        padding: 12px 25px;
    }

    .menu-logo {
        font-size: 1.3rem;
    }

    header nav ul {
        gap: 20px;
    }

    .painel::before {
        width: 200px;
        height: 200px;
    }

    .circle:nth-child(1) {
        display: none;
    }

    .circle:nth-child(3) {

        width: 300px;
        height: 300px;
        top: 12%;
        left: 21%;
    }

    .vision-pro-img img {
        margin-top: 80px;
    }


}