:root {
    --bg: #0a0e1a;
    --card: #1a1f3a;
    --muted: #94a3b8;
    --accent: #3b82f6;
    --accent-2: #8b5cf6;
    --accent-3: #06b6d4;
    --success: #3b82f6;
    --warning: #f59e0b;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-strong: rgba(255, 255, 255, 0.12);
    --radius: 16px;
    --max-width: 100%;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.4);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1e1b4b 25%, #312e81 50%, #1e40af 75%, #0ea5e9 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #f8fafc;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    width: 100%;
    max-width: var(--max-width);
    padding: 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 12px;
    }
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 40px;
    padding: 20px 24px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    header {
        padding: 16px;
        gap: 12px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px;
        gap: 8px;
        margin-bottom: 16px;
        flex-direction: column;
        text-align: center;
    }
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.img-logo {
    width: clamp(40px, 8vw, 56px);
    height: clamp(40px, 8vw, 56px);
    border-radius: 10px;
}

nav {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: auto;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    nav {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    nav {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        gap: 6px;
    }
}

nav a {
    color: var(--muted);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: clamp(14px, 1.5vw, 16px);
}

@media (max-width: 480px) {
    nav a {
        padding: 6px 12px;
        font-size: 12px;
    }
}

nav a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

nav a.cta {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #021022;
}

nav a.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

/* Seção Introdução com Vídeos Carrossel */
.intro-videos {
    background: linear-gradient(135deg, var(--glass) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: center;
}

.intro-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    line-height: 1.2;
}

.intro-text p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--muted);
    line-height: 1.5;
}

/* Carrossel de Vídeos */
.video-carousel-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-carousel {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 12px;
    background: #1a1f3a;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
}

.video-slide.active {
    opacity: 1;
}

.video-slide video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #1a1f3a;
}

.video-label {
    font-size: 0.9rem;
    color: var(--muted);
    text-align: center;
    padding: 8px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
}

/* Controles do Carrossel */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding: 0 8px;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.slide-counter {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Dots do Carrossel */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsividade para carrossel de vídeos */
@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .video-carousel {
        height: 200px;
    }
    
    .video-slide video {
        height: 160px;
    }
    
    .intro-text h2 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .intro-text p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .video-carousel-container {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .video-carousel {
        height: 180px;
    }
    
    .video-slide video {
        height: 140px;
    }
    
    .intro-videos {
        padding: 20px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--glass) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 40px;
    padding-right: 380px;
    display: block;
    margin-bottom: 48px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: visible;
    min-height: 240px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-3) 50%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.hero p {
    color: var(--muted);
    margin-top: 10px;
}

.hero .actions {
    margin-top: 18px;
    display: flex;
    gap: 12px;
}

@media (max-width: 768px) {
    .hero .actions {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero .actions {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    
    .hero .actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Carrossel de vídeos na seção hero */
.hero .video-carousel-container {
    margin: 0;
    max-width: 320px;
    width: 320px;
    position: absolute;
    right: 20px;
    top: 0px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    transform: none !important;
}

.hero .video-carousel {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    background: #1a1f3a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero .video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
}

.hero .video-slide.active {
    opacity: 1;
}

.hero .video-slide video {
    width: 100%;
    height: 120px;
    object-fit: cover;
    background: #1a1f3a;
}

.hero .video-label {
    font-size: 0.75rem;
    color: var(--muted);
    text-align: center;
    padding: 6px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
}

.hero .carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 0 4px;
}

.hero .carousel-controls .slide-counter {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 3px 6px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Setas posicionadas sobre o vídeo nos lados */
.hero .video-carousel {
    position: relative;
}

.hero .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 15;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero .carousel-btn.prev {
    left: 8px;
}

.hero .carousel-btn.next {
    right: 8px;
}

.hero .carousel-btn:hover {
    background: rgba(59, 130, 246, 0.9);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.6);
}

.hero .carousel-btn:active {
    transform: translateY(-50%) scale(0.9);
}

/* Setas aparecem apenas no hover e ficam bem afastadas */
.hero .video-carousel-container:not(:hover) .carousel-btn {
    opacity: 0;
    pointer-events: none;
}

.hero .video-carousel-container:hover .carousel-btn {
    opacity: 0.8;
    pointer-events: auto;
}

.hero .video-carousel-container:hover .carousel-btn:hover {
    opacity: 1;
}

/* Garantir que as setas não interfiram com os controles do vídeo */
.hero .video-carousel .video-slide video {
    position: relative;
    z-index: 5;
}

.hero .carousel-btn {
    pointer-events: auto;
}

.hero .carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.hero .slide-counter {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 500;
}

.hero .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 6px;
}

.hero .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero .dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.hero .dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsividade para carrossel na hero */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: center;
        padding: 24px !important;
        padding-right: 24px !important;
    }
    
    /* ESCONDER VÍDEO EM TABLETS E CELULARES */
    .hero .video-carousel-container {
        display: none !important;
    }
}

@media (max-width: 480px) {
    /* ESCONDER VÍDEO EM CELULARES */
    .hero .video-carousel-container {
        display: none !important;
    }
    
    .hero {
        padding: 24px !important;
        padding-right: 24px !important;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    color: inherit;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 120px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .btn {
        padding: 10px 16px;
        font-size: 14px;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 80px;
        gap: 4px;
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn.primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
    color: #ffffff;
    font-weight: 700;
    border: none;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn.primary:hover {
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    transform: translateY(-4px);
}

.btn.primary:active {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.btn.secondary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    font-weight: 600;
    border: none;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn.secondary:hover {
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    transform: translateY(-4px);
}

.btn.secondary:active {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

/* Search & filters */
.controls {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 16px;
}

.search {
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 8px;
    border-radius: 10px;
}

.search input {
    flex: 1;
    background: transparent;
    border: 0;
    color: inherit;
    padding: 8px;
    outline: none;
}

.select {
    padding: 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 0;
   color: #9aa4b2;
}

/* Products grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 4px;
    }
}

.card {
    background: linear-gradient(145deg, var(--glass-strong) 0%, var(--glass) 100%);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .card {
        padding: 16px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 12px;
        gap: 10px;
    }
    
    .card:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(59, 130, 246, 0.3);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.card:hover::before {
    left: 100%;
}

.media {
    height: 220px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .media {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .media {
        height: 180px;
    }
}

.media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.card:hover .media img {
    transform: scale(1.05);
}

.media::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 0.95rem;
    }
}

.price {
    margin-left: auto;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--success);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-footer .btn {
    padding: 8px 12px;
    font-size: 0.85rem;
}

.card-footer .price {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.description {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .description {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

.meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.age-badge, .category-badge {
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 600;
}

.age-badge {
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.category-badge {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-2);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.features {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.feature-tag {
    font-size: 0.7rem;
    padding: 2px 6px;
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-3);
    border-radius: 6px;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
}

.card-actions .btn {
    padding: 8px 12px;
    font-size: 0.85rem;
}

.card-actions .btn.primary {
    grid-column: 1 / -1;
}

.meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

/* Footer */
footer {
    margin-top: 28px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer a {
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Modal / Carrossel */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    padding: 20px;
}

.modal.open {
    display: flex !important;
    z-index: 9999;
}

.modal .dialog {
    background: linear-gradient(180deg, #071125, #06101a);
    padding: 24px;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    color: white;
    position: relative;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 24px;
    align-items: start;
}

.modal .product-gallery {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #0a1929;
}

.modal .product-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.modal .product-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal .product-info h2 {
    font-size: 24px;
    margin: 0;
}

.modal .product-info .desc {
    color: var(--muted);
    line-height: 1.5;
}

.modal .product-meta {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.modal .product-meta .badge {
    background: var(--glass);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 14px;
}

.modal .product-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.modal .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--glass);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

/* Carrossel no Modal */
.modal-carousel {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.modal-carousel-container {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease-in-out;
}

.modal-carousel-slide {
    min-width: 100%;
    height: 100%;
}

.modal-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-carousel-nav:hover {
    background: rgba(59, 130, 246, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.modal-carousel-prev {
    left: 10px;
}

.modal-carousel-next {
    right: 10px;
}

.modal-carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.modal-carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-carousel-indicator.active {
    background: rgba(59, 130, 246, 0.9);
    transform: scale(1.2);
}

.modal .close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2;
}

.gallery-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

#prevImage {
    left: 8px;
}

#nextImage {
    right: 8px;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    font-size: 20px;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 6px;
}

#prevImage {
    left: 5px;
}

#nextImage {
    right: 5px;
}

/* Responsive */
@media (max-width: 1200px) {
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .categoria-lista {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 32px;
        text-align: center;
    }
    
    .hero .controls {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero .actions {
        justify-content: center;
    }
    
    header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .brand {
        width: 100%;
        justify-content: center;
        order: 1;
    }
    
    nav {
        order: 2;
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 8px;
        margin-left: 0;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
        padding: 12px;
        border-radius: 14px;
        border: 1px solid rgba(59, 130, 246, 0.25);
        backdrop-filter: blur(10px);
    }

    nav a {
        padding: 8px 12px;
        font-size: 11px;
        display: inline-block;
        background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
        border-radius: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        color: #ffffff;
        font-weight: 700;
        box-shadow: 0 6px 18px rgba(59, 130, 246, 0.3);
        position: relative;
        overflow: hidden;
        flex: 1;
        max-width: 120px;
        white-space: nowrap;
    }

    nav a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s;
    }

    nav a:hover::before {
        left: 100%;
    }

    nav a:hover {
        box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
        transform: translateY(-4px);
    }

    nav a:active {
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
        transform: translateY(-2px);
    }

    nav a.cta {
        display: none;
    }
}

@media (max-width: 600px) {
    body {
        padding: 16px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .categoria-lista {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .card-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .modal .card {
        padding: 14px;
    }
    
    .modal .card img {
        height: 120px;
    }
    
    .categoria-modal .modal-content {
        margin: 5px auto;
        padding: 15px;
        width: 98%;
    }
    
    .modal-content h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .close {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
    
    nav {
        order: 2;
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 8px;
        margin-left: 0;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
        padding: 12px;
        border-radius: 14px;
        border: 1px solid rgba(59, 130, 246, 0.25);
        display: flex !important;
        backdrop-filter: blur(10px);
    }
    
    nav a {
        padding: 8px 12px;
        font-size: 11px;
        display: inline-block !important;
        background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
        border-radius: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        color: #ffffff;
        font-weight: 700;
        box-shadow: 0 6px 18px rgba(59, 130, 246, 0.3);
        position: relative;
        overflow: hidden;
        flex: 1;
        max-width: 120px;
        white-space: nowrap;
    }

    nav a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s;
    }

    nav a:hover::before {
        left: 100%;
    }

    nav a:hover {
        box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
        transform: translateY(-4px);
    }

    nav a:active {
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
        transform: translateY(-2px);
    }

    nav a.cta {
        display: none !important;
    }
    
    .hero {
        padding: 24px;
    }
    
    .categorias {
        padding: 40px 16px;
    }

    .categoria-modal .modal-content {
        margin: 20px auto;
        padding: 20px;
        width: 98%;
    }
}

/* Helpers */
.muted {
    color: var(--muted);
    text-align: center;
    margin: 0 auto;
    display: block;
}

.badge {
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 8px;
    border-radius: 999px;
    font-weight: 700;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.skeleton {
    background: linear-gradient(90deg, var(--glass) 25%, var(--glass-strong) 50%, var(--glass) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Performance optimizations */
.card img,
.media img {
    will-change: transform;
}

.btn {
    will-change: transform;
}

/* Categorias */
.categorias {
  padding: 40px 20px;
  text-align: center;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  margin: 30px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.categorias h2 {
  margin-bottom: 24px;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 50%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.categoria-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.categoria {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
  color: #ffffff;
  border-radius: var(--radius);
  padding: 18px 16px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.categoria::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.categoria:hover::before {
  left: 100%;
}

.categoria:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: var(--shadow-hover);
  filter: brightness(1.1);
}

/* CSS super simples para modais */
.modal {
    display: none;
}

/* Forçar exibição quando JavaScript define display: block */
.modal[style*="display: block"] {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.8) !important;
    z-index: 9999 !important;
    overflow: auto !important;
    padding: 15px !important;
}

/* Modal aberto via classe open (para carrossel) */
.modal.open {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.8) !important;
    z-index: 9999 !important;
    padding: 20px !important;
}

.categoria-modal .modal-content {
  background: linear-gradient(135deg, var(--glass-strong) 0%, var(--glass) 100%);
  backdrop-filter: blur(30px);
  color: white;
  margin: 15px auto;
  padding: 20px;
  border-radius: var(--radius);
  width: 92%;
  max-width: 850px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-hover);
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-content h3 {
  margin: 0 0 20px 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 50%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.close {
  color: #ffffff;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 10px;
  position: relative;
  top: -5px;
  right: -5px;
}

.close:hover {
  color: #ffffff;
  background: rgba(255, 0, 0, 0.7);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Cards */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.modal .card {
  background: linear-gradient(145deg, var(--glass-strong) 0%, var(--glass) 100%);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.modal .card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-hover);
  border-color: rgba(59, 130, 246, 0.3);
}

.modal .card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: transform 0.4s ease;
}

.modal .card:hover img {
  transform: scale(1.05);
}

.modal .card h4, .modal .card .title {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
}

.modal .card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 12px;
}

/* Carrossel para Cards */
.card-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.card-carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.card-carousel-slide {
  min-width: 100%;
  position: relative;
}

.card-carousel-slide img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.card-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 2;
}

.card-carousel-nav:hover {
  background: rgba(59, 130, 246, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.card-carousel-prev {
  left: 8px;
}

.card-carousel-next {
  right: 8px;
}

.card-carousel-indicators {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 2;
}

.card-carousel-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.card-carousel-indicator.active {
  background: rgba(59, 130, 246, 0.9);
  transform: scale(1.2);
}

/* Animações */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes modalSlideIn {
  from { 
    opacity: 0; 
    transform: translateY(-50px) scale(0.95); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* Seções Melhoradas */
.produtos-section {
    margin: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 50%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.contato-section {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 48px;
    margin: 60px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    text-align: center;
}

.contato-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, var(--success) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contato-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.whatsapp-info, .location-info {
    font-size: 1.1rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-info strong {
    color: var(--success);
}

.contato-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* WhatsApp Floating Button */
.float-whatsapp {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
    background-color: #128C7E;
}

.float-whatsapp img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

/* Card Footer Styles */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--glass);
}

.card .btn {
    padding: 6px 12px;
    font-size: 14px;
}



/* ===== GS CART WIDGET - estilos (prefixo gs-cart-) ===== */
.gs-cart-open-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg,#25d366,#128c7e);
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
}
.gs-cart-open-btn i { font-size: 1.3rem; }
.gs-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff4d4f;
  color: #fff;
  border-radius: 999px;
  padding: 2px 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Overlay */
.gs-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  display: none;
}

/* Sidebar */
.gs-cart-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 360px;
  max-width: 95%;
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.9,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.12);
  font-family: system-ui, -apple-system, 'Inter', 'Segoe UI', Roboto, Arial;
}
.gs-cart-sidebar.open { transform: translateX(0); }

/* Header */
.gs-cart-header {
  padding: 1rem 1rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gs-cart-header h3 { margin: 0; font-size: 1.05rem; }

/* Body */
.gs-cart-body {
  padding: 0.8rem;
  overflow-y: auto;
  flex: 1;
}

/* Item */
.gs-cart-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed #f1f1f1;
  align-items: center;
}
.gs-cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 6px; }
.gs-cart-item .info { flex: 1; }
.gs-cart-item .info h4 { margin: 0 0 6px 0; font-size: 0.95rem; }
.gs-cart-item .qty-controls { display:flex; gap:6px; align-items:center; }

/* Footer */
.gs-cart-footer {
  padding: 1rem;
  border-top: 1px solid #eee;
}
.gs-cart-summary { display:flex; justify-content:space-between; margin-bottom:0.75rem; font-weight:700; }
.gs-cart-actions { display:flex; gap:8px; }
.gs-btn {
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
.gs-btn.primary {
  background: linear-gradient(135deg,#25d366,#128c7e);
  color:#fff;
}
.gs-btn.ghost {
  background: #f7f7f8;
  color: #333;
}

/* Form styles (simples e compactas) */
.gs-form-group { margin-bottom: 0.6rem; }
.gs-form-group label { display:block; font-size:0.85rem; color:#333; margin-bottom:4px; }
.gs-form-group input, .gs-form-group textarea, .gs-form-group select {
  width:100%;
  padding:8px 10px;
  border:1px solid #e6e6e6;
  border-radius:6px;
  font-size:0.95rem;
}

/* Responsive small */
@media (max-width:520px) {
  .gs-cart-sidebar { width: 95%; }
  .gs-cart-open-btn { right: 16px; bottom: 16px; width:50px; height:50px; }
}







/* Estilos do widget de carrinho — formulário mais elegante */
:root {
  --gs-accent: var(--accent, #06b6d4);
  --gs-bg: #ffffff;
  --gs-surface: #f8fafc;
  --gs-muted: #64748b;
  --gs-radius: 10px;
  --gs-shadow: 0 8px 24px rgba(2,6,23,0.08);
}

/* botão flutuante */
.gs-cart-open-btn {
  position: fixed;
  right: 20px;
  bottom: 90px;
  background: var(--gs-accent);
  color: #fff;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(2,6,23,0.18);
  cursor: pointer;
  z-index: 99999;
  transition: transform .12s ease;
}
.gs-cart-open-btn:active { transform: scale(.98); }
.gs-cart-open-btn i { font-size: 18px; }
.gs-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff4d4f;
  color: #fff;
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:12px;
  box-shadow:0 4px 10px rgba(0,0,0,0.12);
}

/* overlay e sidebar */
.gs-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: none;
  z-index: 99990;
}
.gs-cart-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 380px;
  max-width: 100%;
  background: var(--gs-bg);
  box-shadow: var(--gs-shadow);
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.2,.9,.2,1);
  z-index: 99991;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #eef2f7;
  padding: 18px;
}
.gs-cart-sidebar.open { transform: translateX(0); }

/* header */
.gs-cart-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-bottom:8px;
  border-bottom:1px solid #eef2f7;
}
.gs-cart-header h3 { margin:0; font-size:18px; color: #0f172a; }

/* body lista de itens */
.gs-cart-body {
  flex:1;
  overflow:auto;
  padding:12px 4px;
}
.gs-cart-empty { text-align:center; padding:24px 12px; color:var(--gs-muted); }

/* item */
.gs-cart-item {
  display:flex;
  gap:12px;
  align-items:center;
  padding:10px;
  border-radius:8px;
  background:var(--gs-surface);
  margin-bottom:10px;
  box-shadow: 0 2px 6px rgba(2,6,23,0.04);
}
.gs-cart-item img { width:72px; height:56px; object-fit:cover; border-radius:8px; flex-shrink:0; }
.gs-cart-item .info h4 { margin:0 0 6px 0; font-size:15px; color:#0f172a; }
.gs-cart-item .info .muted { font-size:13px; color:var(--gs-muted); margin-bottom:6px; }

/* controles de quantidade */
.qty-controls { display:flex; align-items:center; gap:8px; margin-top:6px; }
.qty-controls .gs-btn { width:30px; height:30px; padding:0; border-radius:6px; font-weight:700; }

/* footer / formulário */
.gs-cart-footer {
  border-top:1px solid #eef2f7;
  padding-top:12px;
  margin-top:8px;
}
.gs-cart-summary { display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; color:#0f172a; font-weight:600; }

/* formulário */
.gs-form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:8px; }
.gs-form-group label { font-size:13px; color:#0f172a; font-weight:600; }
.gs-form-group input,
.gs-form-group textarea {
  width:100%;
  padding:10px 12px;
  border-radius:8px;
  border:1px solid #e6eef6;
  background: #fff;
  font-size:14px;
  color:#0f172a;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  transition: border-color .12s, box-shadow .12s;
}
.gs-form-group input:focus,
.gs-form-group textarea:focus {
  outline:none;
  border-color: rgba(6,182,212,0.9);
  box-shadow: 0 6px 20px rgba(6,182,212,0.08);
}

/* botões do widget */
.gs-cart-actions { display:flex; gap:8px; justify-content:space-between; margin-top:8px; }
.gs-btn { padding:8px 12px; border-radius:8px; border:1px solid #e6eef6; background:#fff; cursor:pointer; font-weight:600; color:#0f172a; }
.gs-btn.ghost { background:transparent; border:1px solid #e6eef6; color:var(--gs-muted); }
.gs-btn.primary { background: linear-gradient(90deg,var(--gs-accent), #7c3aed); color:#fff; border:none; box-shadow: 0 8px 24px rgba(6,182,212,0.14); }

/* responsivo */
@media (max-width:720px) {
  .gs-cart-sidebar { width:100%; max-width:400px; padding:14px; }
  .gs-cart-open-btn { right:16px; bottom:78px; width:52px; height:52px; }
  .gs-cart-item img { width:64px; height:52px; }
}





/* ...existing code... */
/* Ajuste: botão do carrinho fixo no canto superior direito e exibir somente o ícone */
.gs-cart-open-btn {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  bottom: auto !important;
  left: auto !important;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg,var(--gs-accent,#25d366),#128c7e) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18) !important;
  z-index: 99999 !important;
}

/* aumenta o tamanho do ícone e remove margem/padding extra */
.gs-cart-open-btn i {
  font-size: 20px !important;
  line-height: 1 !important;
}

/* oculta o badge/texto interno para mostrar só o ícone */
.gs-cart-open-btn > .gs-cart-badge,
.gs-cart-open-btn > span {
  display: none !important;
}

/* ajuste responsivo */
@media (max-width:520px) {
  .gs-cart-open-btn { right: 12px; top: 12px; width:44px; height:44px; }
  .gs-cart-open-btn i { font-size:18px; }
}



/* ...existing code... */

/* Reexibir badge de quantidade no ícone do carrinho (sobrepõe regra que escondia) */
.gs-cart-open-btn {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  bottom: auto !important;
  left: auto !important;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg,var(--gs-accent,#25d366),#128c7e) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18) !important;
  z-index: 99999 !important;
}

/* Ícone */
.gs-cart-open-btn i {
  font-size: 20px !important;
  line-height: 1 !important;
}

/* Mostrar badge com contagem e estilo */
.gs-cart-open-btn .gs-cart-badge,
.gs-cart-open-btn > .gs-cart-badge {
  display: inline-flex !important;
  position: absolute !important;
  top: -6px !important;
  right: -6px !important;
  background: #ff4d4f !important;
  color: #fff !important;
  width: 20px !important;
  height: 20px !important;
  font-size: 12px !important;
  border-radius: 50% !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

/* ajuste responsivo */
@media (max-width:520px) {
  .gs-cart-open-btn { right: 12px; top: 12px; width:44px; height:44px; }
  .gs-cart-open-btn i { font-size:18px; }
  .gs-cart-open-btn .gs-cart-badge { width:18px; height:18px; font-size:11px; top:-5px; right:-5px; }
}

/* ...existing code... */






/* Ajuste: botões "Adicionar ao carrinho" menores nos cards */
.card .btn.add-to-cart {
  padding: 6px 8px;
  font-size: 13px;
  min-width: 0;
  width: auto;
  height: 34px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: none;
}

/* Se o botão tiver ícone */
.card .btn.add-to-cart i {
  font-size: 14px;
  margin-right: 6px;
  vertical-align: middle;
}

/* Espaçamento do footer do card mais compacto */
.card .card-footer {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding-top: 16px;
}

/* Botões do card-footer com tamanhos uniformes */
.card .card-footer .btn {
  flex: 1;
  min-width: 0;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 6px;
  text-align: center;
}

/* Botão Ver Detalhes */
.card .card-footer .details-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card .card-footer .details-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.3);
}

/* Ajustes responsivos para telas pequenas */
@media (max-width: 700px) {
  .card .card-footer {
    gap: 8px;
    flex-direction: row;
  }
  
  .card .card-footer .btn {
    padding: 8px 6px;
    font-size: 0.8rem;
    min-height: 36px;
  }
}
/* ...existing code... *





/* Botões add-to-cart ainda menores somente para Brinquedos Molhados e Piscinas de Bolinhas */
.card[data-category="Brinquedos Molhados"] .btn.add-to-cart,
.card.category-brinquedos-molhados .btn.add-to-cart,
.card[data-category="Piscinas de Bolinhas"] .btn.add-to-cart,
.card.category-piscinas-de-bolinhas .btn.add-to-cart {
  padding: 4px 6px !important;
  font-size: 12px !important;
  height: 30px !important;
  min-width: 0 !important;
  border-radius: 6px !important;
  white-space: nowrap;
  box-shadow: none !important;
}

/* ajuste fino: ícone + texto ou somente ícone */
.card[data-category="Brinquedos Molhados"] .btn.add-to-cart i,
.card.category-brinquedos-molhados .btn.add-to-cart i,
.card[data-category="Piscinas de Bolinhas"] .btn.add-to-cart i,
.card.category-piscinas-de-bolinhas .btn.add-to-cart i {
  font-size: 13px !important;
  margin-right: 6px;
}

/* versão compacta (apenas ícone) — descomente se quiser aplicar */
/*
.card.category-brinquedos-molhados .btn.add-to-cart,
.card.category-piscinas-de-bolinhas .btn.add-to-cart {
  width: 36px !important;
  padding: 6px !important;
}
.card.category-brinquedos-molhados .btn.add-to-cart span,
.card.category-piscinas-de-bolinhas .btn.add-to-cart span { display:none; }
*/






/* Ajustes: fontes menores nos cards e layout do footer para botões não ficarem juntos */
.card {
  padding: 12px;
}

.card h4,
.card .title {
  font-size: 0.98rem; /* menor */
  line-height: 1.1;
}

.card p {
  font-size: 0.85rem;
}

/* Override global .btn min-width para caber no card */
.card .btn {
  min-width: 0 !important;
  padding: 6px 8px !important;
  font-size: 13px !important;
  height: 34px !important;
  white-space: nowrap;
}

/* Botão "Ver detalhes" mais discreto */
.card .btn.btn-details {
  padding: 6px 8px;
  font-size: 13px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  color: inherit;
}

/* Botão "Adicionar ao carrinho" compacto */
.card .btn.add-to-cart {
  padding: 6px 8px;
  font-size: 13px;
  height: 34px;
}

/* Removido para evitar conflitos - estilo principal já definido acima */

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

/* Estilos do Carrinho GS Cart */
.gs-cart-open-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-hover);
    z-index: 999;
    transition: all 0.3s ease;
    position: relative;
}

.gs-cart-open-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.gs-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.gs-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1001;
    display: none;
}

.gs-cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(26, 31, 58, 0.9) 100%);
    backdrop-filter: blur(30px);
    border-left: 2px solid rgba(59, 130, 246, 0.3);
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.gs-cart-sidebar.open {
    transform: translateX(0);
}

.gs-cart-header {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: none;
    border: none;
    padding: 0;
}

/* Botão de fechar do carrinho */
.gs-cart-close-btn, 
.gs-close-cart,
[data-action="close-cart"],
button[onclick*="closeSidebar"],
.cart-close-button {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 20px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    min-width: 40px !important;
    flex-shrink: 0 !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.gs-cart-close-btn:hover, 
.gs-close-cart:hover,
[data-action="close-cart"]:hover,
button[onclick*="closeSidebar"]:hover,
.cart-close-button:hover {
    background: rgba(239, 68, 68, 0.8) !important;
    border-color: rgba(239, 68, 68, 0.8) !important;
    color: white !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 18px rgba(239, 68, 68, 0.4) !important;
}

.gs-cart-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gs-cart-body {
    flex: 1;
    padding: 20px 20px 160px 20px;
    padding-top: 60px;
    overflow-y: auto;
    height: 100%;
}

.gs-cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--muted);
}

.gs-cart-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-radius: 12px;
    margin-bottom: 12px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.gs-cart-item:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.gs-cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    align-self: center;
}

.gs-cart-item .info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gs-cart-item h4 {
    color: white;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.gs-cart-item .muted {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin: 0;
}

.qty-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0;
    padding: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.qty-controls button {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: none;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-controls button[data-action="decrease"],
.qty-controls button[data-action="increase"] {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

.qty-controls button[data-action="decrease"]:hover,
.qty-controls button[data-action="increase"]:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(59, 130, 246, 0.4);
}

.qty-controls button[data-action="remove"] {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    margin-left: 8px;
    padding: 0 12px;
    width: auto;
    font-size: 11px;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.3);
}

.qty-controls button[data-action="remove"]:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(239, 68, 68, 0.5);
}

.qty-controls span {
    min-width: 32px;
    text-align: center;
    font-weight: bold;
    color: white;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 5px;
}

.gs-cart-footer {
    padding: 24px;
    border-top: 2px solid rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.8) 0%, rgba(26, 31, 58, 0.6) 100%);
    backdrop-filter: blur(10px);
}

.gs-cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

.gs-form-group {
    margin-bottom: 16px;
}

.gs-form-group label {
    display: block;
    color: #f1f5f9;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.gs-form-group input,
.gs-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.gs-form-group input::placeholder,
.gs-form-group textarea::placeholder {
    color: var(--muted);
}

.gs-cart-actions {
    display: flex;
    gap: 12px;
}

.gs-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.gs-btn.ghost {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gs-btn.ghost:hover {
    background: rgba(239, 68, 68, 0.8);
    border-color: rgba(239, 68, 68, 0.6);
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(239, 68, 68, 0.4);
}

.gs-btn.primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: white;
}

.gs-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

@media (max-width: 600px) {
    .gs-cart-sidebar {
        width: 100%;
    }
    
    .gs-cart-open-btn {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
}
/* Ajustes finos para telas pequenas - versão atualizada */
@media (max-width: 700px) {
  .card h4, .card .title { 
    font-size: 1rem; 
  }
  
  .card .card-footer .btn {
    padding: 8px 6px;
    font-size: 0.75rem;
    min-height: 34px;
  }
}



/* Ajuste: botão do carrinho com mesma cor/gradiente do botão "Alugar" */
.gs-cart-open-btn {
  background: linear-gradient(90deg, var(--accent), var(--accent-2)) !important;
  color: #021022 !important; /* cor do texto do .btn.primary */
  box-shadow: 0 8px 20px rgba(2,6,23,0.18) !important;
}

/* garante que o ícone use a cor correta */
.gs-cart-open-btn i {
  color: #021022 !important;
}





/* ======== Responsividade ======== */

/* Telas grandes (desktops) */
@media (min-width: 1025px) {
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .grid {
    grid-template-columns: repeat(3, 1fr); /* 3 colunas */
  }

  .hero {
    grid-template-columns: 1fr 420px; /* Hero com imagem ao lado */
  }
}

/* Telas médias (tablets) */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas */
  }

  .hero {
    grid-template-columns: 1fr; /* Hero em uma única coluna */
    text-align: center;
  }

  .hero img {
    max-width: 100%;
    height: auto;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn {
    font-size: 14px;
    padding: 8px 12px;
  }
}

/* Telas pequenas (celulares) */
@media (max-width: 768px) {
  body {
    padding: 16px;
  }

  .grid {
    grid-template-columns: 1fr; /* 1 coluna */
  }

  .card {
    margin-bottom: 20px;
  }

  .hero {
    padding: 20px;
    padding-right: 20px !important;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  nav {
    display: none; /* Esconde o menu em telas pequenas */
  }

  .btn {
    font-size: 12px;
    padding: 6px 10px;
  }

  .modal {
    padding: 12px;
  }

  .modal .dialog {
    grid-template-columns: 1fr; /* Modal em uma única coluna */
    padding: 16px;
    max-width: 100%;
    gap: 16px;
  }

  .modal .product-gallery {
    width: 100%;
  }

  .modal .product-gallery img {
    height: 250px;
    width: 100%;
  }

  .modal .product-info h2 {
    font-size: 18px;
  }

  .modal .product-actions {
    flex-direction: column;
    gap: 8px;
  }

  .modal .product-actions .btn {
    width: 100%;
    padding: 10px 12px;
    font-size: 12px;
  }

  .modal .close-btn {
    width: 28px;
    height: 28px;
    font-size: 20px;
  }

  .media {
    height: 160px;
  }

  .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .card .title {
    font-size: 1rem;
  }

  .gs-cart-sidebar {
    width: 100%; /* Sidebar ocupa toda a largura */
  }

  .gs-cart-open-btn {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
}

/* Telas muito pequenas (celulares menores) */
@media (max-width: 480px) {
  .hero {
    padding: 20px !important;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.2rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero .video-carousel-container {
    position: static !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-top: 16px;
    padding: 8px;
  }
  
  .hero .video-carousel {
    height: 120px;
  }
  
  .hero .video-slide video {
    height: 95px;
  }
  
  .hero .carousel-btn {
    width: 24px;
    height: 24px;
    font-size: 12px;
    left: 6px !important;
    right: 6px !important;
  }

  .btn {
    font-size: 10px;
    padding: 4px 8px;
  }

  .card {
    padding: 10px;
  }

  .card h4 {
    font-size: 1rem;
  }

  .card p {
    font-size: 0.8rem;
  }

  .modal {
    padding: 8px;
  }

  .modal .dialog {
    padding: 12px;
    max-width: 100%;
  }

  .modal .product-gallery img {
    height: 200px;
  }

  .modal .product-info h2 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .modal .product-info .desc {
    font-size: 13px;
  }

  .modal .product-meta .badge {
    font-size: 12px;
    padding: 4px 8px;
  }

  .modal .product-actions {
    flex-direction: column;
    gap: 6px;
  }

  .modal .product-actions .btn {
    width: 100%;
    padding: 8px 10px;
    font-size: 11px;
  }

  .modal .close-btn {
    width: 24px;
    height: 24px;
    font-size: 16px;
    top: 8px;
    right: 8px;
  }

  .media {
    height: 140px;
  }

  .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .card .title {
    font-size: 0.9rem;
  }

  .card .description {
    font-size: 0.75rem;
  }

  .gs-cart-open-btn {
    width: 44px;
    height: 44px;
  }

  .gs-cart-item img {
    width: 50px;
    height: 50px;
  }
}



/* Estilo para o botão flutuante do WhatsApp */
.float-whatsapp {
  position: fixed;
  bottom: 20px; /* Distância do canto inferior */
  left: 20px; /* Distância do canto esquerdo */
  z-index: 1000; /* Garante que fique acima de outros elementos */
  background-color: #25D366; /* Cor de fundo do WhatsApp */
  border-radius: 50%; /* Deixa o botão circular */
  width: 60px; /* Largura do botão */
  height: 60px; /* Altura do botão */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra para destaque */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-whatsapp img {
  width: 30px; /* Tamanho do ícone */
  height: 30px;
}

.float-whatsapp:hover {
  transform: scale(1.1); /* Efeito de zoom ao passar o mouse */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Sombra mais forte ao passar o mouse */
}





/* Sidebar do carrinho */
.gs-cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transform: translateX(100%); /* Escondido por padrão */
  transition: transform 0.3s ease;
  z-index: 1001;
}

.gs-cart-sidebar.open {
  transform: translateX(0); /* Mostra o carrinho */
}

/* Overlay do carrinho */
.gs-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none; /* Escondido por padrão */
  z-index: 1000;
}



/* Define o z-index padrão do botão do carrinho */
.gs-cart-open-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000; /* Botão visível por padrão */
}

/* Quando o formulário (sidebar) está aberto, o botão do carrinho fica atrás */
.gs-cart-sidebar.open ~ .gs-cart-open-btn {
  z-index: 0; /* Coloca o botão atrás do formulário */
}





/* Estilo para a seção hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.hero-content {
  flex: 1;
}

.hero-video {
  flex: 0 0 300px; /* Define a largura fixa do vídeo */
    border-radius: 8px;
    overflow: hidden;
}

.video-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-card video {
  width: 100%;
  height: auto;
  display: block;
}

.video-card .video-title {
  padding: 10px;
  font-size: 0.9rem;
  text-align: center;
  color: #555;
}




/* Estilo para o carrossel de vídeos */
.video-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px; /* Largura do card */
  height: 200px; /* Altura do card */
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.video-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.video-wrapper video {
  width: 300px; /* Largura do vídeo */
  height: 200px; /* Altura do vídeo */
  flex-shrink: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}






/* Remover fundo branco e bordas do carrossel */
.video-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ajusta a largura do carrossel */
  max-width: 600px; /* Define um limite de largura */
  height: auto; /* Ajusta a altura automaticamente ao conteúdo */
  overflow: hidden;
  border: none; /* Remove as bordas */
  border-radius: 0; /* Remove bordas arredondadas */
  box-shadow: none; /* Remove sombras */
  background: transparent; /* Remove o fundo branco */
}

.video-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.video-wrapper video {
  width: 100%; /* Ajusta a largura do vídeo ao contêiner */
  max-width: 600px; /* Define um limite de largura */
  height: auto; /* Mantém a proporção do vídeo */
  flex-shrink: 0;
  border: none; /* Remove bordas do vídeo */
}

/* CSS consolidado removido - usando a nova estrutura acima */

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}


.media1 {
    background: #071627;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s;
  padding: 40px 20px;
  text-align: center;
}

/* ========================================
   ANIMAÇÕES ULTRA MODERNAS - ÚLTIMA GERAÇÃO
   ======================================== */

/* Animação de fade-in com slide up suave */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação de scale com bounce */
@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animação de rotação 3D */
@keyframes rotate3D {
    from {
        transform: perspective(1000px) rotateY(-10deg);
        opacity: 0;
    }
    to {
        transform: perspective(1000px) rotateY(0deg);
        opacity: 1;
    }
}

/* Animação de pulso brilhante */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.4),
                    0 0 40px rgba(59, 130, 246, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6),
                    0 0 80px rgba(59, 130, 246, 0.3);
    }
}

/* Gradiente animado de fundo */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Efeito de onda */
@keyframes wave {
    0% { transform: translateX(0) translateZ(0) scaleY(1); }
    50% { transform: translateX(-25%) translateZ(0) scaleY(0.55); }
    100% { transform: translateX(-50%) translateZ(0) scaleY(1); }
}

/* Cards com animação moderna */
.card {
    animation: fadeInUp 0.6s ease-out backwards;
    will-change: transform, opacity;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

.card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(59, 130, 246, 0.3);
}

/* Hero section com gradiente animado */
.hero {
    background: linear-gradient(-45deg, #1e3a8a, #3b82f6, #8b5cf6, #ec4899);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Botões com efeito moderno */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Efeito de brilho nos cards */
.card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(0deg);
    animation: shine 3s infinite;
    pointer-events: none;
}

@keyframes shine {
    0% { transform: rotate(0deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: rotate(180deg); opacity: 0; }
}

/* Texto com gradiente animado */
.hero h1,
.section-header h2 {
    background: linear-gradient(90deg, #fff, #3b82f6, #8b5cf6, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s linear infinite;
}

@keyframes gradientText {
    to { background-position: 200% center; }
}

/* Efeito parallax suave */
.hero,
.produtos-section {
    transform: translateZ(0);
    will-change: transform;
}

/* Imagens dos cards com zoom suave */
.card img {
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* Loading skeleton animation */
@keyframes skeleton-loading {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.05) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

/* Efeito de partículas de fundo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Grid com stagger animation */
.grid {
    display: grid;
    gap: 24px;
    perspective: 1000px;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Efeito glass morphism avançado */
.card,
.hero,
.modal-content {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* Micro-interações nos botões */
.btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Ripple effect */
.btn {
    overflow: hidden;
    position: relative;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ========================================
   LOADING E PERFORMANCE
   ======================================== */

/* Loading spinner ultra moderno */
.loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #00ffff;
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Skeleton loading para cards */
.card.loading {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.05) 75%
    );
    background-size: 200% 100%;
    animation: skeleton 1.5s ease-in-out infinite;
}

@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Transições suaves de página - DESABILITADO */
/*
body {
    animation: pageLoad 0.5s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
*/

/* Animação de pulso para elementos de destaque */
.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Efeito de brilho nos cards ao carregar */
.card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
}

/* Scroll snap para navegação suave */
.products-grid {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.card {
    scroll-snap-align: start;
}

/* Otimizações de performance */
* {
    will-change: auto !important;
}

.card:hover,
.btn:hover,
.hero {
    will-change: transform;
}

/* Modo de contraste alto */
@media (prefers-contrast: high) {
    .card,
    .btn,
    .modal-content {
        border: 2px solid currentColor;
    }
}

/* ======================== */
/* MODAL SOBRE - DESIGN */
/* ======================== */

.about-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.about-modal.show {
    display: flex;
}

.about-dialog {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 50%, #1a2a4a 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    max-height: 90vh;
    width: 90%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-btn:hover {
    background: rgba(255, 59, 48, 0.9);
    transform: rotate(90deg);
}

.about-header {
    position: relative;
    overflow: hidden;
    padding: 60px 40px 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}

.about-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.about-content-wrapper {
    position: relative;
    z-index: 2;
}

.about-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.6s ease;
}

.about-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    animation: slideDown 0.6s ease 0.1s both;
}

.about-body {
    padding: 50px 40px;
    overflow-y: auto;
    flex: 1;
}

.about-intro {
    margin-bottom: 50px;
    text-align: center;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease 0.2s both;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.feature-card:hover .feature-icon {
    animation: bounce 1s ease-in-out infinite;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin: 15px 0 10px 0;
    color: #f8fafc;
    font-weight: 600;
}

.feature-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.about-cta {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.2);
    animation: fadeInUp 0.8s ease 0.7s both;
}

.about-cta h2 {
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    color: #f8fafc;
}

.about-cta p {
    font-size: 1rem;
    color: #cbd5e1;
    margin: 0;
}

/* Animações */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Responsivo - Modal Sobre */
@media (max-width: 768px) {
    .about-dialog {
        width: 95%;
        max-height: 95vh;
    }

    .about-header {
        padding: 40px 25px 30px;
    }

    .about-header h1 {
        font-size: 1.8rem;
    }

    .about-body {
        padding: 30px 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        font-size: 2.2rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .about-cta {
        padding: 25px;
    }

    .about-cta h2 {
        font-size: 1.4rem;
    }

    .about-cta p {
        font-size: 0.9rem;
    }

    .close-btn {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}

/* Responsivo Extra - Telas Muito Pequenas */
@media (max-width: 480px) {
    .about-dialog {
        width: 98%;
        max-height: 98vh;
        border-radius: 16px;
    }

    .about-header {
        padding: 30px 15px 20px;
    }

    .about-header h1 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .about-subtitle {
        font-size: 0.9rem;
    }

    .about-body {
        padding: 20px 15px;
    }

    .about-intro p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-features {
        gap: 10px;
    }

    .feature-card {
        padding: 15px;
        border-radius: 12px;
    }

    .feature-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .feature-card h3 {
        font-size: 0.9rem;
        margin: 10px 0 8px 0;
    }

    .feature-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .about-cta {
        padding: 20px;
        border-radius: 12px;
    }

    .about-cta h2 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .about-cta p {
        font-size: 0.85rem;
    }

    .about-cta .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        margin-top: 15px;
    }

    .close-btn {
        width: 32px;
        height: 32px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }
}

/* Modo de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .video-carousel-container,
    .btn,
    .modal {
        display: none !important;
    }
}
