/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Hero */
.hero-faq {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-color: #ff0000;
    overflow: hidden;
}

.hero-faq .hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(50%);
}

.hero-faq .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero-faq .hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* FAQ Section */
.faq {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #d32f2f;
    margin-bottom: 3rem;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    background-color: #e0e0e0;
    border: none;
    outline: none;
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.faq-question:hover {
    background-color: #d32f2f;
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 1rem 0;
    font-size: 1rem;
    color: #555;
}

/* Responsive */
@media(max-width: 1024px) {
    .hero-faq .hero-content h1 { font-size: 2.5rem; }
    .hero-faq .hero-content p { font-size: 1.1rem; }
}

@media(max-width: 768px) {
    .hero-faq { height: 50vh; }
    .hero-faq .hero-content h1 { font-size: 2rem; }
    .hero-faq .hero-content p { font-size: 1rem; }
}

