/* --- LAYOUT #31: LION-PRIDE --- */

/* --- 1. VARIÁVEIS E RESET --- */
:root {
    --gold: #d97706; /* Ouro mais escuro para texto e bordas */
    --light-gold: #f59e0b; /* Ouro mais claro para hover e CTAs */
    --dark-bg: #111827; /* Fundo principal escuro (azul-acinzentado) */
    --medium-bg: #1f2937; /* Fundo de cards e seções secundárias */
    --light-text: #f3f4f6; /* Texto principal claro */
    --medium-text: #9ca3af; /* Texto secundário */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.7;
}

a {
    color: var(--light-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--light-text);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.section-title span {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

/* --- 2. HEADER --- */
.header-pride {
    background-color: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--medium-bg);
}

.header-pride .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.header-pride .logo img {
    height: 50px;
    width: auto;
}

.header-pride nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.header-pride nav a {
    color: var(--light-text);
    font-weight: 600;
    font-family: var(--font-primary);
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
}

.header-pride nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.header-pride nav a:hover::after {
    width: 100%;
}

.play-button-pride {
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    color: var(--dark-bg);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.play-button-pride:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    color: #000;
}

/* --- 3. HERO SECTION --- */
.hero-pride {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(rgba(17, 24, 39, 0.8), var(--dark-bg)), url('images/hero.png') no-repeat center center/cover;
}

.hero-pride .container {
    max-width: 800px;
}

.hero-pride h1 {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.hero-pride h1 span {
    color: var(--gold);
    display: block;
}

.hero-pride p {
    font-size: 1.2rem;
    color: var(--medium-text);
    margin: 1.5rem 0 2.5rem;
}

/* --- 4. SEÇÕES DE CONTEÚDO --- */
.content-section-pride {
    background-color: var(--dark-bg);
}

.card-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.info-card-pride {
    background-color: var(--medium-bg);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card-pride:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.info-card-pride h3 {
    font-family: var(--font-primary);
    color: var(--light-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-card-pride p {
    color: var(--medium-text);
}

.content-layout-pride {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.content-main h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.content-main p, .content-main ul {
    margin-bottom: 1.5rem;
    color: var(--medium-text);
}

.content-main ul {
    padding-left: 20px;
}

.content-sidebar .sidebar-card-pride {
    background-color: var(--medium-bg);
    padding: 1.5rem;
    border-radius: 8px;
    position: sticky;
    top: 120px;
}

.sidebar-card-pride h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--medium-text);
    padding-bottom: 0.5rem;
}

.sidebar-card-pride ul {
    list-style: none;
}

.sidebar-card-pride ul li {
    margin-bottom: 0.8rem;
    color: var(--light-text);
}

.sidebar-card-pride ul li::before {
    content: '👑';
    margin-right: 10px;
}

/* --- 5. FAQ & REVIEWS --- */
.faq-container, .reviews-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item, .review-item {
    background-color: var(--medium-bg);
    margin-bottom: 1rem;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.faq-item:hover, .review-item:hover {
    border-left-color: var(--gold);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.review-author {
    font-weight: 700;
    color: var(--light-text);
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.review-rating {
    color: var(--light-gold);
}

.review-text {
    font-style: italic;
    color: var(--medium-text);
}

/* --- 6. FOOTER --- */
.footer-pride {
    background-color: #000;
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--gold);
}

.footer-pride .container {
    padding: 0 5%;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--medium-bg);
}

.footer-about h4, .footer-links h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--light-gold);
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: var(--medium-text);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--medium-text);
}

.footer-links a:hover {
    color: var(--light-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.9rem;
    color: var(--medium-text);
}

/* --- 7. RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .header-pride nav {
        display: none; /* Simplificar para mobile, ou adicionar menu hamburguer */
    }
    .content-layout-pride {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-pride h1 {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2rem;
    }
}


/* --- 8. GALERIA DE IMAGENS --- */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.4);
}

/* --- 9. CARD DECK (3 cards na homepage) --- */
.card-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card-pride {
    background: var(--medium-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card-pride:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.5);
}

.info-card-pride h3 {
    color: var(--light-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.info-card-pride p {
    color: var(--light-text);
    line-height: 1.7;
}

/* --- 10. FAQ SECTION --- */
.faq-section {
    background-color: var(--dark-bg);
    padding: 4rem 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--medium-bg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
}

.faq-item h3 {
    color: var(--light-gold);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-primary);
}

.faq-item p {
    color: var(--light-text);
    line-height: 1.7;
}

/* --- 11. REVIEWS SECTION --- */
.reviews-section {
    background-color: var(--medium-bg);
    padding: 4rem 0;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-item {
    background: var(--dark-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.4);
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: bold;
    color: var(--light-gold);
    font-family: var(--font-primary);
}

.review-rating {
    color: #fbbf24;
    font-size: 1rem;
}

.review-text {
    color: var(--light-text);
    font-style: italic;
    line-height: 1.7;
}

/* --- 12. SIDEBAR CARD --- */
.sidebar-card-pride {
    background: var(--medium-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sidebar-card-pride h3 {
    color: var(--light-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.sidebar-card-pride ul {
    list-style: none;
}

.sidebar-card-pride li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(217, 119, 6, 0.2);
    color: var(--light-text);
}

.sidebar-card-pride li:last-child {
    border-bottom: none;
}

/* --- 13. RESPONSIVIDADE ADICIONAL --- */
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .image-grid img {
        height: 150px;
    }
    
    .card-deck {
        grid-template-columns: 1fr;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
    }
}
