/* CSS específico para a Loja Chapecó - Mania Games */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --chapeco-primary: #1e40af;
    --chapeco-secondary: #f59e0b;
    --chapeco-accent: #dc2626;
    --chapeco-dark: #1e293b;
    --chapeco-light: #f8fafc;
    --chapeco-text: #334155;
    --chapeco-gray: #64748b;
    --chapeco-border: #e2e8f0;
    --chapeco-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --chapeco-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --chapeco-radius: 12px;
    --chapeco-radius-lg: 20px;
    --chapeco-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--chapeco-text);
    background-color: var(--chapeco-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 6rem; /* Espaço para o header fixo */
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(79, 70, 229, 0.2));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../image/bate-bate.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(79, 70, 229, 0.15));
    z-index: 1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-icon:nth-child(3) {
    top: 40%;
    left: 20%;
    animation-delay: 3s;
}

.floating-icon:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 4.5s;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}


.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.highlight {
    color: var(--chapeco-secondary);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--chapeco-transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--chapeco-secondary), #f59e0b);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--chapeco-secondary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--chapeco-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--chapeco-secondary);
    color: white;
    box-shadow: var(--chapeco-shadow);
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: var(--chapeco-shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--chapeco-secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.atracoes-section, .espaco-kids-section {
    padding: 4rem 0;
    background: white;
}

.atracoes-header, .espaco-kids-header {
    text-align: center;
    margin-bottom: 0.5rem; /* espaço mínimo entre descrição e carrossel */
}

.atracoes-title, .espaco-kids-title {
    font-size: 2.5rem;
    color: var(--chapeco-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.atracoes-subtitle, .espaco-kids-subtitle {
    font-size: 1.2rem;
    color: var(--chapeco-gray);
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 0; /* removido margin-bottom do subtitle */
}

/* Carrossel */
.carrossel-container,
.kids-carrossel {
    position: relative;
    overflow: hidden;
    border-radius: var(--chapeco-radius-lg);
    box-shadow: var(--chapeco-shadow-lg);
    margin: 0; /* removido margin para reduzir espaço */
    margin-top: 0.5rem; /* espaço mínimo acima do carrossel */
    width: 100%;
    touch-action: pan-y; /* permite scroll vertical mas não horizontal */
}

.carrossel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    touch-action: pan-y; /* permite scroll vertical mas não horizontal */
}

.carrossel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    width: 100%;
    touch-action: pan-y; /* desabilita scroll horizontal */
}

.carrossel-item {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0; /* impede que os itens encolham */
}

.atracao-card, .kids-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: var(--chapeco-radius-lg);
}

@media (max-width: 768px) {
    .atracao-card, .kids-card {
        height: 18rem;
        max-width: 24rem;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .atracao-card, .kids-card {
        height: 14rem;
        max-width: 18rem;
    }
}

.atracao-image, .kids-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.atracao-image img,
.kids-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.5s ease;
}

.atracao-card:hover .atracao-image img,
.kids-card:hover .kids-image img {
    transform: scale(1.1);
}

.atracao-overlay, .kids-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.atracao-card:hover .atracao-overlay,
.kids-card:hover .kids-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .atracao-overlay, .kids-overlay {
        padding: 30px 20px;
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .atracao-overlay, .kids-overlay {
        padding: 20px 15px;
    }
}

.atracao-content, .kids-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.atracao-card:hover .atracao-content,
.kids-card:hover .kids-content {
    transform: translateY(0);
}

.atracao-titulo, .kids-titulo {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.atracao-descricao, .kids-descricao {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .atracao-titulo, .kids-titulo {
        font-size: 1.5rem;
    }
    
    .atracao-descricao, .kids-descricao {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .atracao-titulo, .kids-titulo {
        font-size: 1.3rem;
    }
    
    .atracao-descricao, .kids-descricao {
        font-size: 0.9rem;
    }
}

/* Botões do Carrossel */
.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--chapeco-dark);
    transition: var(--chapeco-transition);
    z-index: 10;
}

.carrossel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--chapeco-shadow-lg);
}

.carrossel-btn-prev {
    left: 20px;
}

.carrossel-btn-next {
    right: 20px;
}

/* Indicadores */
.carrossel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carrossel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--chapeco-transition);
}

.carrossel-indicator.active,
.carrossel-indicator:hover {
    background: white;
    transform: scale(1.2);
}

/* Estados vazios */
.atracoes-empty, .espaco-kids-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--chapeco-gray);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
    color: var(--chapeco-primary);
}

.atracoes-empty p, .espaco-kids-empty p {
    font-size: 1.2rem;
    line-height: 1.6;
}





.btn-avaliacoes {
    background: linear-gradient(135deg, var(--chapeco-primary) 0%, #1e3a8a 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--chapeco-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    box-shadow: var(--chapeco-shadow);
}

.btn-avaliacoes:hover {
    transform: translateY(-3px);
    box-shadow: var(--chapeco-shadow-lg);
    background: linear-gradient(135deg, #1e3a8a 0%, #1e1b4b 100%);
}

/* Responsividade */
@media (max-width: 900px) {
    .atracoes-section .container,
    .espaco-kids-section .container {
        flex-direction: column;
    }
    
    .atracoes-section .container,
    .espaco-kids-section .container {
        padding: 0 15px;
    }
    
    .atracoes-header,
    .espaco-kids-header {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
        padding: 1.5rem 0 0.5rem 0;
        margin-bottom: 0;
    }
    
    .carrossel-container,
    .kids-carrossel {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        margin-top: 0.5rem;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .atracoes-section,
    .espaco-kids-section {
        padding: 60px 0;
    }
    
    .atracoes-header,
    .espaco-kids-header {
        margin-bottom: 1rem; /* espaço reduzido em mobile */
    }
    
    .atracoes-title,
    .espaco-kids-title {
        font-size: 2.5rem;
    }
    
    .atracoes-subtitle,
    .espaco-kids-subtitle {
        font-size: 1.1rem;
    }
    
    .atracao-card,
    .kids-card {
        height: 18rem;
        max-width: 24rem;
    }
    
    .atracao-overlay,
    .kids-overlay {
        padding: 30px 20px;
    }
    
    .atracao-titulo,
    .kids-titulo {
        font-size: 1.5rem;
    }
    
    .atracao-descricao,
    .kids-descricao {
        font-size: 1rem;
    }
    
    .carrossel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carrossel-btn-prev {
        left: 0.2rem;
    }
    
    .carrossel-btn-next {
        right: 0.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .atracoes-section .container,
    .espaco-kids-section .container {
        padding: 0 10px;
    }
    
    .atracoes-header,
    .espaco-kids-header {
        padding: 1rem 0 0.25rem 0;
        margin-bottom: 0;
    }
    
    .carrossel-container,
    .kids-carrossel {
        margin-top: 0.25rem;
        padding: 0;
    }
    
    .atracoes-title,
    .espaco-kids-title {
        font-size: 2rem;
    }
    
    .atracoes-subtitle,
    .espaco-kids-subtitle {
        font-size: 1rem;
    }
    
    .atracao-card,
    .kids-card {
        height: 14rem;
        max-width: 18rem;
    }
    
    .atracao-overlay,
    .kids-overlay {
        padding: 20px 15px;
    }
    
    .atracao-titulo,
    .kids-titulo {
        font-size: 1.3rem;
    }
    
    .atracao-descricao,
    .kids-descricao {
        font-size: 0.9rem;
    }
} 