/* Variáveis CSS */
:root {
    --primary-color: #02b5c5;
    --secondary-color: #ffffff;
    --text-color: #333333;
    --bg-color: #ffffff;
    --dark-bg-color: #121212;
    --dark-text-color: #f5f5f5;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: var(--transition);
}

body.dark-mode {
    background-color: var(--dark-bg-color);
    color: var(--dark-text-color);
}

.container {
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}
.gallery-container video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover depending on your preference */
    background: #000; /* black background for videos */
  }
  

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: bold;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0 20px;
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    z-index: 1000; /* Mantido alto, mas abaixo da logo */
    height: 90px;
    overflow: visible; /* Permite que os filhos ultrapassem os limites */
}

.dark-mode .header {
    background-color: #1a1a1a;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
   
    max-width: 1200px;
}

/* Efeitos permanecem iguais */
@keyframes neonGlow {
    0% { box-shadow: 0 0 10px rgba(2, 181, 197, 0.7); }
    100% { box-shadow: 0 0 20px rgba(2, 181, 197, 0.9); }
}



.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    position: absolute;
    bottom: -30px; /* Ultrapassa o header */
    margin: 0 auto;
    z-index: 1001;
}
.logo img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: neonGlow 1.5s infinite alternate ease-in-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.dark-mode .logo img {
    border-color: var(--dark-bg-color);
}
/* Esconde o texto */
.logo span {
    display: none;
}

/* Efeito de hover aprimorado */
.logo:hover img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(2, 181, 197, 1);
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .logo {
        width: 100px;
        height: 100px;
    }
}
/* Ajustes para desktop */
@media (min-width: 1024px) {
    .logo {
        bottom: -40px; /* Mova mais para baixo no desktop */
    }
}

.nav-list {
    display: flex;
}

.nav-list li {
    margin-left: 2rem;
}

.nav-list a {
    transition: var(--transition);
    font-weight: 500;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

/* ================ BOTÃO DARK MODE ================ */
.dark-mode-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.dark-mode .dark-mode-toggle {
    background-color: rgba(255, 255, 255, 0.1);
}

.dark-mode-toggle i {
    font-size: 1.5rem;
    transition: all 0.5s ease;
    position: absolute;
}

/* Ícone do Sol (modo escuro) */
.dark-mode-toggle .fa-sun {
    opacity: 0;
    transform: rotate(90deg);
    color: #FFD700;
}

.dark-mode .dark-mode-toggle .fa-sun {
    opacity: 1;
    transform: rotate(0deg);
}

/* Ícone da Lua (modo claro) */
.dark-mode-toggle .fa-moon {
    opacity: 1;
    transform: rotate(0deg);
    color: #333;
}

.dark-mode .dark-mode-toggle .fa-moon {
    opacity: 0;
    transform: rotate(-90deg);
}

/* Efeito de hover */
.dark-mode-toggle:hover {
    transform: scale(1.1);
    background-color: rgba(0, 0, 0, 0.2);
}

.dark-mode .dark-mode-toggle:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Efeito de clique */
.dark-mode-toggle:active {
    transform: scale(0.95);
}

/* Animação de pulsação */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(2, 181, 197, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(2, 181, 197, 0); }
    100% { box-shadow: 0 0 0 0 rgba(2, 181, 197, 0); }
}

.dark-mode-toggle.active {
    animation: pulse 1.5s infinite;
}

/* Responsivo */
@media (max-width: 768px) {
    .dark-mode-toggle {
        top: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
    }
    
    .dark-mode-toggle i {
        font-size: 1.3rem;
    }
}

/* Estrutura Base */
.banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s 0.5s forwards;
}


/* Título Animado */
.banner-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpWord 0.8s forwards;
}

.title-word:nth-child(1) { animation-delay: 0.8s; }
.title-word:nth-child(2) { animation-delay: 1s; }
.title-word:nth-child(3) { animation-delay: 1.2s; }
.title-word:nth-child(4) { animation-delay: 1.4s; }

/* Botões */
.banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Efeito Pulse no botão principal */
.pulse {
    animation: pulse 2s infinite;
}

/* Indicador de Scroll */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeIn 1s 2s forwards;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    margin: 0 auto 10px;
}

.wheel {
    width: 6px;
    height: 10px;
    background: white;
    border-radius: 3px;
    margin-top: 5px;
    animation: scrollWheel 2s infinite;
}

.arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: -5px auto;
    animation: scrollArrow 2s infinite;
}

.arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrows span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Animações */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpWord {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,180,216,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0,180,216,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,180,216,0); }
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

@keyframes scrollArrow {
    0% { opacity: 0; transform: rotate(45deg) translateY(-10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translateY(10px); }
}

/* Efeito Parallax */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Responsivo */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
}
/* Estrutura Base */
.about {
    position: relative;
    padding: 100px 0;
    overflow: hidden;

}


.about-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('img/about-bg.jpg');
    opacity: 0.15;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Texto */
.about-text {
    transition: transform 0.5s ease;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Imagem */
.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(15deg);
    transition: all 0.5s ease;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,180,216,0.2) 0%, rgba(0,0,0,0.1) 100%);
}

/* Estatísticas */
.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* Animações */
.about-text:hover {
    transform: translateX(10px);
}

.about-text:hover .about-title::after {
    width: 100px;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Efeito Parallax */
@media (prefers-reduced-motion: no-preference) {
    .about-parallax {
        will-change: transform;
        transition: transform 0.3s ease-out;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .about-stats {
        justify-content: center;
    }
}
.products h2 {
    position: relative;
    display: inline-block;
    font-size: 2.8rem;
    margin: 0 auto 4rem;
    padding: 0 30px 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: transform 0.3s ease-out;
}

/* Efeito de entrada melhorado */
@keyframes titleEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Linha decorativa animada */
.products h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.4s ease;
}
/* Efeito hover mais pronunciado */
.products h2:hover {
    text-shadow: 0 5px 15px rgba(0, 180, 216, 0.2);
}

.products h2:hover::after {
    width: 180px;
    background: linear-gradient(90deg, var(--primary-color), #00b4d8);
}

/* Espaçamento antes do primeiro produto */
.product:first-child {
    margin-top: 2rem;
}
/* Produtos */
.products {
    position: relative;
    padding-top: 80px;
    margin-top: 40px;
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 300px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.dark-mode .products {
    background-color: #1e1e1e;
}

.product {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 2rem;
    flex-direction: row; /* Adicionado */
}

.product.reverse {
    flex-direction: row-reverse;
}





.product-gallery {
    order:2;
    flex: 1;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Container principal do produto */
.product-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ocupa pelo menos a altura da tela */
    padding: 20px;
    box-sizing: border-box;
}

/* Galeria principal */
.gallery-container {
    position: relative;
    width: 100%;
    height: 50vh; /* 50% da altura da tela */
    max-height: 500px; /* Limite máximo */
    min-height: 300px; /* Limite mínimo */
    margin-bottom: 15px;
}
/* Estilo para vídeos e controles */
.gallery-container video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* Botão de play mobile */
.mobile-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(110, 193, 228, 0.8);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ícone de vídeo nos thumbs */
.thumb .video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background: rgba(0,0,0,0.5);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}
/* Esconde qualquer controle de áudio */
video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-mute-button {
    display: none !important;
}

/* Remove controles nativos em mobile */
video {
    -webkit-tap-highlight-color: transparent;
}

.gallery-container img, 
.gallery-container video {
    position: absolute;
    top: 50%;  /* Alterado de 0 para 50% */
    left: 50%; /* Alterado de 0 para 50% */
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: translate(-50%, -50%); /* Adicionado esta linha */
}

.gallery-container img.active, 
.gallery-container video.active {
    opacity: 1;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 0;
    width: 100%;
    /* Removi position: absolute para corrigir o layout */
}

/* Design das setas (MANTIDO SEU ESTILO ORIGINAL) */
.gallery-prev, 
.gallery-next {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Mantive o estilo do hover que você tinha */
}

.gallery-prev:hover, 
.gallery-next:hover {
    background-color: #018c99;
    transform: scale(1.1);
}
/* Thumbnails */
.gallery-thumbs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 0;
    margin: 0 auto;
    max-width: 100%;
    overflow-x: auto;
}

.product-info {
    order: 1;
    padding: 30px;
    flex: 1;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-right: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product:not(.reverse) .product-info {
    margin-right: 30px;
    margin-left: 0;
}

.product.reverse .product-info {
    margin-left: 30px;
    margin-right: 0;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 10px;
}

.product-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.product-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}





/* Contato */
.contact {
    padding: 5rem 0;
}

.contact-content {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;

}

.contact-info {
    flex: 1;
}

.contact-info p {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form {
    flex: 1;
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.dark-mode .contact-form {
    background-color: #2a2a2a;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition);
}

.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
    background-color: #333;
    color: var(--dark-text-color);
    border-color: #444;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* VERSÃO MOBILE - CONTATO */
@media (max-width: 768px) {
    .contact-content {
        display: block; /* Remove o flexbox no mobile */
    }
    
    .contact-info {
        margin-bottom: 2rem; /* Espaço entre informações e formulário */
        width: 100%;
    }
    
    .contact-form {
        width: 100%;
        margin: 0;
        padding: 1.5rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    /* Garante que nenhum elemento escape da largura */
    .form-group,
    .form-group input,
    .form-group select,
    .form-group textarea,
    .btn {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Melhoria visual para mobile */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* EXTRA: Remove qualquer possibilidade de rolagem horizontal */
html, body, .contact, .container, .contact-content {
    max-width: 100%;
    overflow-x: hidden;
}
/* MELHORIAS PARA TELAS PEQUENAS */
@media (max-width: 480px) {
    .contact-form {
        padding: 1.2rem;
    }

    .btn {
        width: 100%;
    }
}
/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.dark-mode .footer {
    background-color: #111;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px; /* Largura aumentada */
    height: 200px; /* Altura aumentada */
    margin: 0 auto; /* Centraliza horizontalmente */
}

.footer-logo img {
    height: 100%; /* Ocupa todo o espaço do container */
    width: 100%; /* Ocupa todo o espaço do container */
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: neonGlow 1.5s infinite alternate ease-in-out;
}

/* Esconde o texto */
.footer-logo span {
    display: none;
}

/* Efeito de hover aprimorado */
.footer-logo:hover img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(2, 181, 197, 1);
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .footer-logo {
        width: 120px;
        height: 120px;
    }
}


.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-social h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Botões Fixos de Redes Sociais */
/* BOTÕES FLUTUANTES - VERSÃO MELHORADA */
.social-fixed {
    position: fixed;
    right: 15px;
    bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.social-fixed a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Cores específicas com gradiente */
.social-fixed .whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-fixed .instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

/* Efeito hover moderno */
.social-fixed a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Efeito de pulsação sutil */
.social-fixed a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.social-fixed a:hover::after {
    opacity: 1;
    transform: scale(1.3);
}

/* Badge de notificação (opcional) */
.social-fixed a::before {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: #ff4757;
    border-radius: 50%;
    border: 2px solid white;
    opacity: 0;
}

/* Versão mobile otimizada */
@media (max-width: 768px) {
    .social-fixed {
        right: 10px;
        bottom: 10px;
    }
    
    .social-fixed a {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
    
    /* Garante visibilidade em mobile */
    body {
        padding-bottom: 80px !important;
    }
}

/* Acessibilidade - foco visível */
.social-fixed a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.5);
}
.whatsapp {
    background-color: #25D366;
}

.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
}
.facebook {
    background: linear-gradient(to bottom, #1877F2, #166FE5);
}

/* Animações e Efeitos */
.parallax {
    background-attachment: fixed;
}

/* ===== ESTRUTURA PRINCIPAL ===== */
.product {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 2rem;
}

.product.reverse {
    flex-direction: row-reverse;
}

.product-gallery {
    flex: 1;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    order: 2;
}


/* ===== DESTAQUES DO PRODUTO ===== */
.highlights {
    margin-top: 1.5rem;
}

.highlights li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.highlights li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
}

/* ===== THUMBNAILS ===== */
.gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 0 15px 0;
    margin-top: 0;
}

.thumb {
    width: 60px;
    height: 45px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumb.active {
    border-color: var(--primary-color);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    background: rgba(0,0,0,0.5);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== VERSÃO MOBILE ===== */
@media (max-width: 768px) {
    .product {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .product.reverse {
        flex-direction: column;
    }
    
    .gallery-container {
        height: 55vh;
    }
    
    .gallery-thumbs {
        order: 2;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
        padding: 10px 5px 15px 5px;
    }
    
    .gallery-thumbs::-webkit-scrollbar {
        display: none;
    }
    
    .gallery-controls {
        order: 3;
    }
    
    .product-info {
        order: 1;
        padding: 20px;
        margin: 0 0 20px 0 !important;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    
    .product-info h3 {
        font-size: 1.5rem;
        padding-bottom: 8px;
    }
    
    .product-info p {
        font-size: 1rem;
    }
    
    
    .thumb {
        width: 55px;
        height: 40px;
    }
}


@media (max-height: 700px) {
    .gallery-container {
        height: 45vh;
    }
}

/* Ajustes para telas pequenas */
@media (max-width: 480px) {
    .highlights li {
        font-size: 0.95rem;
    }
    
    .thumb {
        width: 50px;
        height: 35px;
    }
}
@media (max-width: 768px) {
   /* ================ MENU MOBILE COMPLETO ================ */
.menu-toggle {
    display: none; /* Escondido por padrão */
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1002; /* Acima do dark mode toggle */
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}

.dark-mode .menu-toggle {
    color: var(--dark-text-color);
}

/* Menu - Lista de Navegação */
.nav-list {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
    z-index: 1001; /* Sobre tudo exceto o toggle */
    padding-top: 80px; /* Espaço para o header */
}

.dark-mode .nav-list {
    background-color: var(--dark-bg-color);
}

.nav-list.active {
    left: 0;
}

.nav-list li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.nav-list.active li {
    opacity: 1;
    transform: translateX(0);
}

/* Animação dos itens com delay */
.nav-list.active li:nth-child(1) { transition-delay: 0.2s; }
.nav-list.active li:nth-child(2) { transition-delay: 0.3s; }
.nav-list.active li:nth-child(3) { transition-delay: 0.4s; }
.nav-list.active li:nth-child(4) { transition-delay: 0.5s; }

.nav-list a {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

/* Overlay quando menu aberto */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mostrar apenas em mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    /* Ajuste de posição se tiver dark mode toggle */
    body:has(.dark-mode-toggle) .menu-toggle {
        right: 70px; /* Espaço para o botão de dark mode */
    }
}
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .gallery-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .banner-content h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .product-info h3 {
        font-size: 1.5rem;
    }
}