/* =========================================================================
   Estilos específicos de páginas (extraídos dos <style> inline dos HTMLs)
   ========================================================================= */

/* ---- PÁGINA INICIAL (front-page.php) ---- */
.hero-section {
    padding-top: 200px;
    padding-bottom: 150px;
    position: relative;
    background: radial-gradient(circle at center, rgba(15, 5, 29, 0.2) 0%, rgba(11, 6, 22, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 100vh;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.glamour-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    color: #fff;
}

.glamour-title .highlight {
    font-size: 6rem;
    display: block;
    margin-top: 10px;
    background: linear-gradient(to right, #ffffff 0%, #d4af37 30%, #ff8c00 70%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), inset 0 0 10px rgba(212, 175, 55, 0.1);
    }
    100% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), inset 0 0 15px rgba(212, 175, 55, 0.2);
    }
}

.glamour-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.event-details-glass {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.glass-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(15px);
    padding: 15px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.glass-badge svg {
    color: var(--color-gold);
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.glass-badge p {
    margin: 0;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.btn-glamour {
    padding: 18px 50px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-gold) 0%, #f9d976 50%, var(--color-gold) 100%);
    background-size: 200% auto;
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-glamour:hover {
    background-position: right center;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.8);
    color: #000;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #0b0616, #0f051d);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.glamour-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glamour-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.glamour-card:hover::before { left: 200%; }

.glamour-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glamour-card h2 {
    font-family: var(--font-heading);
    background: linear-gradient(to right, #fff, var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.glamour-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.expect-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.expect-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expect-card:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-10px);
}

.expect-card:hover::after { opacity: 1; }

.expect-card h3 {
    color: var(--color-amber);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.expect-card p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    background: linear-gradient(to right, #d4af37, #fff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 5px;
}

/* ---- PÁGINA DESTAQUES ---- */
.category-section { margin-bottom: 70px; padding: 50px; position: relative; overflow: hidden; }
.category-title { font-family: var(--font-heading); background: linear-gradient(to right, #fff, var(--color-gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: 2.5rem; text-align: center; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 4px; }
.category-desc { text-align: center; color: rgba(255, 255, 255, 0.6); margin-bottom: 50px; font-size: 1.1rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.winners-container { display: flex; flex-direction: column; align-items: center; gap: 40px; width: 100%; }
.highlight-box { background: rgba(212, 175, 55, 0.05); border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 24px; padding: 50px; text-align: center; position: relative; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); transition: all 0.4s ease; width: 100%; max-width: 800px; }
.highlight-box:hover { border-color: var(--color-gold); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15); }
.highlight-label { display: inline-block; padding: 6px 24px; background: var(--gradient-gold); color: #000; border-radius: 50px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 40px; }
.logo-link { display: block; margin: 0 auto; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-decoration: none; }
.logo-link:hover { transform: scale(1.1); }
.logo-link img { max-width: 300px; height: auto; filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2)); transition: filter 0.4s ease; }
.logo-link:hover img { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5)); }
.finalists-section { width: 100%; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(212, 175, 55, 0.15); display: flex; flex-direction: column; align-items: center; }
.finalists-label { display: inline-block; padding: 4px 18px; background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.4); color: var(--color-gold-light); border-radius: 50px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; }
.finalists-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.finalist-item { display: flex; flex-direction: column; align-items: center; padding: 10px; transition: all 0.3s ease; }
.finalist-logo { max-width: 140px; height: auto; opacity: 0.8; transition: all 0.4s ease; filter: grayscale(1) brightness(1.2); }
.finalist-item:hover .finalist-logo { opacity: 1; filter: grayscale(0) brightness(1); transform: scale(1.08); }
.finalist-name { color: #fff; font-family: var(--font-heading); font-size: 1.1rem; text-align: center; margin-top: 15px; }
.nominees-section { width: 100%; margin-top: 20px; text-align: center; }
.nominees-section h5 { color: rgba(255, 255, 255, 0.3); text-transform: uppercase; font-size: 0.7rem; margin-bottom: 20px; letter-spacing: 3px; }
.nominees-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 25px; list-style: none; padding: 0; color: rgba(255, 255, 255, 0.5); font-size: 0.85rem; }
.nominees-list li { position: relative; }
.nominees-list li:not(:last-child)::after { content: '•'; color: var(--color-gold); position: absolute; right: -15px; opacity: 0.6; }

/* ---- PÁGINA REGULAMENTO ---- */
.rules-content { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px; padding: 50px; margin: 40px auto 80px; max-width: 900px; }
.rules-content h2 { font-family: var(--font-heading); color: var(--color-gold); margin-top: 40px; margin-bottom: 20px; font-size: 1.8rem; border-bottom: 1px solid rgba(212, 175, 55, 0.3); padding-bottom: 10px; }
.rules-content h3 { font-family: var(--font-heading); color: var(--color-amber); margin-top: 30px; margin-bottom: 15px; font-size: 1.4rem; }
.rules-content h4 { color: white; margin-top: 25px; margin-bottom: 10px; font-size: 1.1rem; }
.rules-content h2:first-child { margin-top: 0; }
.rules-content p, .rules-content li { color: var(--color-text-muted); margin-bottom: 15px; font-size: 1.05rem; line-height: 1.8; }
.rules-content ul { padding-left: 20px; margin-bottom: 25px; }
.rules-content li::marker { color: var(--color-gold); }
.highlight-date { color: var(--color-amber); font-weight: 600; }
.rules-content .highlight-box { background: rgba(212, 175, 55, 0.05); border-left: 4px solid var(--color-gold); border-radius: 0 8px 8px 0; padding: 20px; margin: 30px 0; text-align: left; border: none; border-left: 4px solid var(--color-gold); box-shadow: none; max-width: none; }

/* ---- PÁGINA PARTICIPE ---- */
.form-container { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px; padding: 40px; max-width: 800px; margin: 40px auto 80px; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; color: var(--color-gold); margin-bottom: 8px; font-weight: 500; }
.form-control { width: 100%; padding: 12px 15px; background: rgba(11, 6, 22, 0.6); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 6px; color: var(--color-text-main); font-family: var(--font-body); font-size: 1rem; transition: border-color 0.3s ease; }
.form-control:focus { outline: none; border-color: var(--color-gold); }

/* ---- PÁGINA ASSOCIADOS ---- */
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 30px; margin-top: 40px; }
.partner-item { display: flex; justify-content: center; align-items: center; padding: 20px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; transition: all 0.3s ease; }
.partner-item:hover { border-color: var(--color-gold); transform: translateY(-5px); background: rgba(212, 175, 55, 0.05); }
.partner-item img { max-width: 120px; height: auto; filter: brightness(0) invert(1); opacity: 0.7; transition: all 0.3s ease; }
.partner-item:hover img { opacity: 1; filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(212, 175, 55, 0.3)); }

/* ---- RESPONSIVO ---- */
@media (max-width: 992px) {
    .glamour-title { font-size: 3rem; }
    .glamour-title .highlight { font-size: 4.5rem; }
    .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .glamour-title { font-size: 1.8rem; word-break: normal; overflow-wrap: break-word; }
    .glamour-title .highlight { font-size: 2.2rem; white-space: normal; }
    .glamour-subtitle { font-size: 1rem; padding: 0 10px; max-width: 100%; }
    .event-details-glass { gap: 10px; }
    .glass-badge { padding: 10px 20px; width: 100%; justify-content: center; }
    .glamour-card { padding: 30px 20px; }
    /* Trophy image — center when flex wraps */
    .glamour-card[style*="flex-wrap"] > div { flex: 1 1 100% !important; text-align: center !important; justify-content: center !important; }
    .glamour-card[style*="flex-wrap"] img { max-width: 80%; margin: 0 auto; display: block; }
    .category-section { padding: 40px 15px; }
    .category-title { font-size: 2rem; }
    .highlight-box { padding: 30px 15px; }
    .logo-link img { max-width: 200px; }
    .finalists-grid { gap: 20px; }
    .finalist-logo { max-width: 100px; }
    .btn-glamour { font-size: 0.9rem; padding: 14px 30px; letter-spacing: 1px; max-width: 100%; box-sizing: border-box; }
    .hero-section { padding-top: 120px; padding-bottom: 80px; }
    .hero-content { padding: 0 15px; overflow: hidden; }
}

@media (max-width: 400px) {
    .glamour-title { font-size: 1.4rem; }
    .glamour-title .highlight { font-size: 1.8rem; }
    .glamour-subtitle { font-size: 0.9rem; }
    .btn-glamour { font-size: 0.8rem; padding: 12px 24px; letter-spacing: 1px; }
}
