@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #0b0f19;
    --bg-card: rgba(17, 24, 39, 0.7);
    --bg-input: rgba(31, 41, 55, 0.5);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --color-primary: #6366f1; /* Indigo */
    --color-primary-glow: rgba(99, 102, 241, 0.3);
    --color-accent: #06b6d4; /* Cyan */
    --color-accent-glow: rgba(6, 182, 212, 0.3);
    --color-accent-magenta: #d946ef; /* Magenta */
    --color-whatsapp: #10b981; /* Green */
    --font-header: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Gradients */
body::before {
    content: "";
    position: absolute;
    top: -200px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: "";
    position: absolute;
    top: 500px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Header & Nav */
header {
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.9) 0%, transparent 100%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 16px 24px;
}

.logo {
    font-family: var(--font-header);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--text-primary) 50%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.logo span {
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

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

/* Hero Section */
.hero {
    max-width: 900px;
    margin: 60px auto 40px;
    text-align: center;
    padding: 0 24px;
}

.hero h1 {
    font-family: var(--font-header);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-secondary);
    font-size: clamp(16px, 2.5vw, 20px);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.botoes {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-azul, .btn-branco {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-azul {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px var(--color-primary-glow);
}

.btn-azul:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-branco {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
}

.btn-branco:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Catalog Filter & Search Section */
main {
    max-width: 1200px;
    margin: auto;
    padding: 40px 24px 80px;
}

.catalogo-controles {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

@media(min-width: 768px) {
    .catalogo-controles {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.busca-container {
    position: relative;
    max-width: 100%;
    width: 350px;
}

.busca-container input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 14px 16px 14px 44px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
}

.busca-container input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.busca-container::before {
    content: "🔍";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    opacity: 0.6;
}

.categorias {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none; /* Firefox */
}

.categorias::-webkit-scrollbar {
    display: none; /* Safari & Chrome */
}

.btn-categoria {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.btn-categoria:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

.btn-categoria.active {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 10px var(--color-primary-glow);
}

/* Products Grid */
.grid-produtos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

/* Product Card */
.card-produto {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: var(--delay, 0s);
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-produto {
    transform: translateY(20px);
}

.card-produto:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(99, 102, 241, 0.15);
}

.card-imagem-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle, rgba(31, 41, 55, 0.6) 0%, rgba(17, 24, 39, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-imagem {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: var(--transition-smooth);
}

.card-produto:hover .card-imagem {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 25, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.card-produto:hover .card-overlay {
    opacity: 1;
}

.card-overlay span {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-detalhes {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-categoria {
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.card-titulo {
    font-family: var(--font-header);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.card-rodape {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card-preco {
    font-size: 18px;
    font-weight: 800;
    color: #ffd54a;
}

.card-btn-ver {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.card-produto:hover .card-btn-ver {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 0 10px var(--color-primary-glow);
}

/* Search results info */
.sem-resultados {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.erro-mensagem {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-md);
    color: #fca5a5;
}

/* Modal Overlay (Glassmorphism) */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 16, 0.85);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.modal-overlay.ativo {
    opacity: 1;
    pointer-events: all;
}

/* Modal Content Container */
.modal-container {
    background: #0e1322;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(99, 102, 241, 0.15);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.ativo .modal-container {
    transform: scale(1) translateY(0);
}

/* Modal Close Button */
.modal-fechar {
    position: absolute;
    right: 20px;
    top: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: var(--transition-smooth);
}

.modal-fechar:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

/* Modal Grid */
.modal-corpo {
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media(min-width: 768px) {
    .modal-corpo {
        flex-direction: row;
        height: 550px;
    }
}

/* Painel de Galeria de Mídia */
.visualizador-container {
    flex: 1.2;
    position: relative;
    background: radial-gradient(circle, rgba(17, 24, 39, 0.9) 0%, rgba(5, 8, 16, 1) 100%);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media(min-width: 768px) {
    .visualizador-container {
        min-height: auto;
    }
}

.media-galeria {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.media-principal-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: #050810;
    min-height: 250px;
}

.media-principal-container img {
    cursor: zoom-in;
}

.media-principal-container img, 
.media-principal-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 380px;
    display: none;
    transition: opacity 0.3s ease;
}

.media-principal-container img.active, 
.media-principal-container video.active {
    display: block;
    animation: fadeInMedia 0.3s ease;
}

@keyframes fadeInMedia {
    from { opacity: 0; }
    to { opacity: 1; }
}

.media-thumbnails-container {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(11, 15, 25, 0.6);
    border-top: 1px solid var(--glass-border);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.media-thumbnails-container::-webkit-scrollbar {
    height: 6px;
}

.media-thumbnails-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.media-thumbnail {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.media-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-thumbnail:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.media-thumbnail.active {
    opacity: 1;
    border-color: var(--color-accent);
    box-shadow: 0 0 12px var(--color-accent-glow);
}

.media-thumbnail-play-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(11, 15, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 12px;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Badges nos cards */
.card-media-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    color: var(--text-primary);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 5;
    pointer-events: none;
}

/* Information Panel */
.modal-info {
    flex: 0.8;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid var(--glass-border);
    overflow-y: auto;
}

@media(min-width: 768px) {
    .modal-info {
        border-top: none;
        border-left: 1px solid var(--glass-border);
    }
}

.modal-categoria {
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

#modal-titulo {
    font-family: var(--font-header);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

#modal-preco {
    font-size: 24px;
    font-weight: 800;
    color: #ffd54a;
    margin-bottom: 24px;
}

#modal-descricao {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.btn-whatsapp-compra {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: 16px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: var(--transition-smooth);
}

.btn-whatsapp-compra:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    background: linear-gradient(90deg, #059669 0%, #047857 100%);
}

.btn-whatsapp-compra svg {
    fill: currentColor;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    font-size: 13px;
    background: rgba(5, 8, 16, 0.5);
}

/* Lightbox Overlay para Zoom de Imagens */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 16, 0.95);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.lightbox-overlay.ativo {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-overlay.ativo .lightbox-img {
    transform: scale(1);
}

.lightbox-fechar {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.lightbox-fechar:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* ==========================================================================
   CARROSSEL DE DESTAQUES
   ========================================================================== */
.destaques-section {
    max-width: var(--max-width);
    margin: 60px auto 20px;
    padding: 0 24px;
}

.destaques-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.destaques-header h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text-primary) 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.carousel-nav {
    display: flex;
    gap: 8px;
}

.carousel-nav-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.carousel-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.carousel-nav-btn:active {
    transform: scale(0.95);
}

.carousel-viewport {
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-md);
    padding: 10px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 24px;
}

/* Card customizado do Carrossel */
.carousel-card {
    flex: 0 0 100%; /* Default Mobile */
    max-width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

@media(min-width: 576px) {
    .carousel-card {
        flex: 0 0 calc(50% - 12px); /* Tablet: 2 items */
    }
}

@media(min-width: 992px) {
    .carousel-card {
        flex: 0 0 calc(33.333% - 16px); /* Desktop: 3 items */
    }
}

.carousel-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.carousel-card-img-container {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: #050810;
}

.carousel-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-card:hover .carousel-card-img {
    transform: scale(1.05);
}

.carousel-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.carousel-card-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.carousel-card-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-card-info .price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 12px;
}

.carousel-card-info .desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 38px;
}

.carousel-card-btn {
    margin-top: auto;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: var(--transition-smooth);
}

.carousel-card:hover .carousel-card-btn {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-hover) 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Customizações de Responsividade do Modal para Celular */
@media(max-width: 767px) {
    .modal-overlay {
        padding: 10px;
    }

    .modal-container {
        max-height: 92vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* Rolagem suave no iOS */
    }

    .modal-corpo {
        height: auto;
        display: block; /* Permite fluxo vertical natural */
    }

    .visualizador-container {
        min-height: auto;
        height: auto;
        flex: none;
    }

    .modal-info {
        padding: 24px 20px;
        overflow-y: visible;
        justify-content: flex-start;
        flex: none;
    }
}

/* Paginação do Catálogo */
.paginacao-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.btn-paginacao {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-paginacao:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-paginacao.active {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 10px var(--color-primary-glow);
}

.btn-paginacao:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Botões de Navegação do Lightbox */
.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 36px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 2010;
}

.lightbox-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-btn.prev-btn {
    left: 24px;
}

.lightbox-nav-btn.next-btn {
    right: 24px;
}

.lightbox-nav-btn:disabled {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 767px) {
    .lightbox-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }
    .lightbox-nav-btn.prev-btn {
        left: 12px;
    }
    .lightbox-nav-btn.next-btn {
        right: 12px;
    }
}