/* ==========================
   Variáveis e Fontes
========================== */
:root {
    --primary-color: #121212;
    --secondary-color: #e63946;
    --light-color: #f1faee;
    --accent-color: #a8dadc;
}

@font-face {
    font-family: 'dm';
    src: url(./aAnotherTag.otf);
}

@font-face {
    font-family: 'tag';
    src: url(./tag.ttf);
}

@font-face {
    font-family: 'bomb';
    src: url(./bomb.ttf);
}
/* ==========================
   Reset e Corpo
========================== */
body {
    font-family: 'dm', sans-serif;
    color: var(--light-color);
    background-color: var(--primary-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3,  h5, h6 {
    font-family: 'dm', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
}

p {
    color: var(--light-color);
}
 .accordion-content, li, p{
    font-family: Arial, Helvetica, sans-serif;
    color: red;

 }
.category-btn{
        font-family: Arial, Helvetica, sans-serif;

}
h2, h3, li{
        font-family: Arial, Helvetica, sans-serif;

}
 /* ==========================
   Hero
========================== */
.hero {
    background: url('./assets/h.jpg') no-repeat center center;
    background-size: cover;
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    animation: fadeInDown 1s ease forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    animation: fadeIn 2s ease forwards;
}

@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* ==========================
   Section Titles
========================== */
.section-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background-color: var(--secondary-color);
}

/* ==========================
   Imagens e Galeria
========================== */
.about-img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.about-img:hover {
    transform: scale(1.02);
}

.gallery-item {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    position: relative;
    background-color: #1a1a1a;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.5);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ==========================
   Artistas
========================== */
.artists .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    background-color: #1a1a1a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.artists .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.5);
}

.artists .card-img-top {
    height: 300px;
    object-fit: cover;
}

/* ==========================
   Pricing
========================== */
.pricing-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: all 0.3s;
    background-color: #1a1a1a;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.5);
}

.pricing-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}
 

/* ==========================
   Formulário de Contato
========================== */
.contact-form, #contactForm {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    color: var(--light-color);
}

.contact-form input, 
.contact-form textarea, 
.contact-form select {
    background-color: #2a2a2a;
    border: none;
    color: var(--light-color);
    border-radius: 10px;
    padding: 10px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ccc;
}

.btn-primary {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 12px 35px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.6);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(230, 57, 70, 0.8);
    transform: scale(1.05);
}

/* ==========================
   Accordion / FAQ
========================== */
.question-card {
    background: #1e1e1e;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.question-card.active-question {
    background: #2a2a2a;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-content.show {
    max-height: 500px;
}


.mt-4, b{
    color: red;
}
.mt-4, li, p{
    color: #fff;
}
/* ==========================
   Rodapé
========================== */
footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 50px 0;
    border-top: 2px solid var(--secondary-color);
}

footer p, footer a {
    color: var(--light-color);
    transition: color 0.3s;
}

footer a:hover {
    color: var(--secondary-color);
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--secondary-color);
    transform: translateY(-5px);
}

/* ==========================
   Back to Top
========================== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.6);
}

.back-to-top.show {
    opacity: 1;
}

.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.9);
}

/* ==========================
   Responsivo
========================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .about-scroll {
        max-height: 250px;
        overflow-y: auto;
        padding: 10px;
        box-sizing: border-box;
        margin-bottom: 44rem;
    }

    #gallery {
        margin-top: 10rem;
    }

    .cupons-container {
        flex-direction: row;
        justify-content: center;
    }
}
