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

:root {
    --bg-main: #050608;
    --bg-card: #0c0f16;
    --bg-accent: #141927;
    --accent: #ff006e;
    --accent-soft: rgba(255, 0, 110, 0.12);
    --text-main: #f5f5f5;
    --text-muted: #a0a4b8;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --radius-lg: 18px;
    --radius-full: 999px;
    --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.65);
}

html, body {
    height: 100%;
}

body {
    font-family: 'Exo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top, #1c1330 0, #050608 45%) fixed;
    color: var(--text-main);
    line-height: 1.6;
}

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

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.4rem;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(20px);
    background: linear-gradient(to bottom, rgba(5, 6, 8, 0.96), rgba(5, 6, 8, 0.92));
    border-bottom: 1px solid var(--border-subtle);
}

.header-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0.25rem;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    border: 2px solid var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.25);
    object-fit: cover;
}

.site-title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* NAV */

.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 0.55rem 0.9rem;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    color: var(--text-muted);
    transition: all 0.18s ease-out;
    background: rgba(255, 255, 255, 0.02);
}

.main-nav a:hover {
    border-color: rgba(255, 0, 110, 0.65);
    background: rgba(255, 0, 110, 0.1);
    color: var(--text-main);
}

/* HERO */

.site-main {
    min-height: calc(100vh - 140px);
    padding: 2rem 0 4rem;
}

.hero-section {
    padding: 2rem 0 2.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.8fr);
    gap: 2rem;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    inset: -12%;
    background: radial-gradient(circle at top left, rgba(255, 0, 110, 0.25), transparent 60%);
    opacity: 0.7;
    filter: blur(20px);
    z-index: -1;
}

.hero-profile-img {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

.hero-text-wrapper {
    padding: 1rem 0.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-full);
    background: rgba(255, 0, 110, 0.14);
    border: 1px solid rgba(255, 0, 110, 0.6);
    font-size: 0.7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero-title {
    margin-top: 1.1rem;
    font-size: 1.6rem;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero-text {
    margin-top: 1rem;
    font-size: 0.94rem;
    color: var(--text-muted);
}

/* COMMON SECTIONS */

.section-card {
    padding: 1.3rem 0 0;
}

.section-card .container {
    background: linear-gradient(145deg, rgba(12, 15, 22, 0.96), rgba(8, 10, 16, 0.98));
    border-radius: 26px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    padding: 1.8rem 1.6rem 2rem;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 1.1rem;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.section-header p {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ACCORDION */

.accordion {
    display: grid;
    gap: 0.6rem;
}

.accordion-item {
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    background: radial-gradient(circle at top left, rgba(255, 0, 110, 0.06), rgba(12, 15, 22, 0.96));
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 0.75rem 0.9rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
}

.accordion-header i {
    font-size: 0.85rem;
    transition: transform 0.22s ease;
}

.accordion-item.open .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 0.9rem;
    transition: max-height 0.28s ease, padding-bottom 0.28s ease;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.accordion-item.open .accordion-body {
    padding-bottom: 0.8rem;
}

/* TIMELINE */

.timeline {
    display: grid;
    gap: 1.3rem;
    margin-top: 0.6rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 1.3rem;
    align-items: flex-start;
}

.timeline-year {
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--accent);
}

.timeline-content {
    padding-left: 1rem;
    border-left: 1px dashed rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* PODCAST */

.podcast-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
    gap: 1.8rem;
    align-items: center;
}

.video-thumb {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
}

.video-overlay i {
    font-size: 2.2rem;
    color: #fff;
}

.podcast-info h2 {
    font-size: 1.1rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.podcast-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

/* PARTNERS */

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.3rem;
    align-items: stretch;
}

.partner-card {
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    background: radial-gradient(circle at top left, rgba(255, 0, 110, 0.09), rgba(12, 15, 22, 0.98));
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* QUADROS DE IMAGEM DOS PARCEIROS EM FORMATO QUADRADO, LADO A LADO */
.partner-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #050608;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
}

.partner-image img {
    width: auto;
    height: 250px;
    max-height:250px;
    object-fit: contain;
    display:block;
    margin:auto;
}

.partner-body {
    padding: 1rem;
}

.partner-body h3 {
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.partner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.9rem;
}


/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.primary-btn {
    background: linear-gradient(135deg, #ff006e, #ff8a00);
    color: #fff;
    box-shadow: 0 14px 35px rgba(255, 0, 110, 0.4);
}

.primary-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.secondary-btn:hover {
    border-color: rgba(255, 0, 110, 0.6);
    background: rgba(255, 0, 110, 0.15);
}

.ghost-btn {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.24);
    color: #fff;
}

.ghost-btn:hover {
    border-color: rgba(255, 0, 110, 0.7);
    background: rgba(255, 0, 110, 0.12);
}

.whatsapp-btn {
    background: #1f9d55;
    border-color: #1f9d55;
    color: #fff;
    width: 100%;
    max-width: 320px;
    justify-content: center;
}

/* FOOTER */

.site-footer {
    border-top: 1px solid var(--border-subtle);
    padding: 1.8rem 0 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.footer-content {
    text-align: center;
}

.social-block {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-block a {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-block a:hover {
    border-color: rgba(255, 0, 110, 0.8);
    color: #fff;
    background: rgba(255, 0, 110, 0.14);
}

.footer-text,
.footer-dev {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 0.7rem;
}

.footer-dev a {
    color: var(--accent);
    text-decoration: none;
}

.footer-dev a:hover {
    text-decoration: underline;
}

.admin-link-wrapper {
    margin-top: 0.6rem;
}

.admin-link {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.admin-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* EMPTY STATE */

.empty-state {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.9rem 1rem;
    border-radius: 14px;
    border: 1px dashed var(--border-subtle);
    background: rgba(255, 255, 255, 0.02);
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-text-wrapper {
        order: -1;
    }

    .podcast-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .timeline-item {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.5rem;
    }

    .timeline-content {
        padding-left: 0.3rem;
    }

    .header-content {
        align-items: flex-start;
    }

    .main-nav ul {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .section-card .container {
        padding: 1.4rem 1.2rem 1.6rem;
    }

    .hero-title {
        font-size: 1.35rem;
    }
}
