/* Estilos Gerais */
.container-festas {
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed 0%, #f59e42 100%);
    margin: 15px auto;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2em;
    margin-bottom: 40px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100vw;
    background: url('/image/15.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Botões */
.btn-agendar {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(90deg, #7c3aed 0%, #f59e42 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-saiba-mais {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-agendar:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

.btn-saiba-mais:hover {
    background: white;
    color: #7c3aed;
}

/* Benefícios Section */
.beneficios-section {
    padding: 80px 0;
    background: #f8f7fc;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.beneficio-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.beneficio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #7c3aed 0%, #f59e42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beneficio-icon i {
    font-size: 2em;
    color: white;
}

.beneficio-item h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.beneficio-item p {
    color: #666;
}

/* Pacotes Section */
.pacotes-section {
    padding: 80px 0;
    background: white;
}

.pacotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pacote-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pacote-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pacote-card.destaque {
    background: linear-gradient(135deg, #7c3aed 0%, #f59e42 100%);
    color: white;
    transform: scale(1.05);
}

.pacote-header {
    text-align: center;
    margin-bottom: 30px;
}

.pacote-header h3 {
    font-size: 2em;
    margin-bottom: 15px;
}

.preco {
    font-size: 3em;
    font-weight: bold;
    color: #7c3aed;
}

.pacote-card.destaque .preco {
    color: white;
}

.pacote-detalhes {
    flex-grow: 1;
}

.pacote-detalhes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pacote-detalhes li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pacote-detalhes li i {
    color: #7c3aed;
    width: 20px;
}

.pacote-card.destaque .pacote-detalhes li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pacote-card.destaque .pacote-detalhes li i {
    color: white;
}

.btn-pacote {
    display: inline-block;
    padding: 15px 30px;
    background: #7c3aed;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.pacote-card.destaque .btn-pacote {
    background: white;
    color: #7c3aed;
}

.btn-pacote:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

/* Pacotes Adicionais Section */
.pacotes-adicionais-section {
    padding: 80px 0;
    background: white;
}

.pacote-obs {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    font-size: 0.9em;
    color: #856404;
}

.pacote-obs p {
    margin: 0;
    line-height: 1.4;
}

.pacote-obs i {
    margin-right: 8px;
    color: #f39c12;
}

/* Galeria Section */
.galeria-section {
    padding: 80px 0;
    background: #f8f7fc;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.galeria-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.galeria-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-img {
    transform: scale(1.1);
}

.galeria-item:hover .galeria-overlay {
    transform: translateY(0);
}





























/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f7fc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f7fc;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #333;
}

.faq-question i {
    color: #7c3aed;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #7c3aed 0%, #f59e42 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-section .btn-agendar {
    background: white;
    color: #7c3aed;
}

.cta-section .btn-agendar:hover {
    background: #f8f7fc;
}

.btn-contato {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-contato:hover {
    background: white;
    color: #7c3aed;
}

/* Animações */
.animate-text {
    animation: fadeInUp 1s ease;
}

.animate-text-delay {
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1.2em;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .pacote-card.destaque {
        transform: none;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .faq-question h3 {
        font-size: 1em;
    }
}

/* Títulos das Lojas */
.loja-titulo {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: bold;
    background: linear-gradient(135deg, #7c3aed, #f59e42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Carrossel de Pacotes */
.pacotes-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 3rem;
}

.pacotes-carrossel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pacotes-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.pacotes-carrossel .pacote-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 300px;
    margin: 0;
}

/* Botões do Carrossel */
.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(124, 58, 237, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carrossel-btn:hover {
    background: rgba(124, 58, 237, 1);
    transform: translateY(-50%) scale(1.1);
}

.carrossel-btn-prev {
    left: 20px;
}

.carrossel-btn-next {
    right: 20px;
}

/* Indicadores do Carrossel */
.carrossel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carrossel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carrossel-indicator.active {
    background: rgba(124, 58, 237, 1);
    transform: scale(1.2);
}

.carrossel-indicator:hover {
    background: rgba(124, 58, 237, 0.7);
}

/* Responsividade do Carrossel */
@media (max-width: 768px) {
    .pacotes-carrossel .pacote-card {
        flex: 0 0 100%;
        min-width: 100%;
        margin: 0 10px;
    }
    
    .pacotes-track {
        gap: 0;
    }
    
    .carrossel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carrossel-btn-prev {
        left: 10px;
    }
    
    .carrossel-btn-next {
        right: 10px;
    }
    
    .loja-titulo {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .pacotes-container {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .pacotes-carrossel .pacote-card {
        margin: 0 5px;
    }
    
    .carrossel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carrossel-btn-prev {
        left: 5px;
    }
    
    .carrossel-btn-next {
        right: 5px;
    }
    
    .loja-titulo {
        font-size: 1.3rem;
    }
}

/* Layout para Pacote Único */
.pacotes-single {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.pacote-single {
    width: 100%;
    max-width: 450px;
    text-align: center;
    background: linear-gradient(135deg, #7c3aed 0%, #f59e42 100%);
    color: white;
    transform: scale(1.02);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.pacote-single .pacote-header h3,
.pacote-single .pacote-header .preco {
    color: white;
}

.pacote-single .pacote-detalhes ul li {
    color: rgba(255, 255, 255, 0.9);
}

.pacote-single .pacote-obs p {
    color: rgba(255, 255, 255, 0.8);
}
