:root {
    --pink: #e62480;
    --pink-light: #ff3d9a;
    --white: #efefef;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2d2d2d;
    --light-gray: #3d3d3d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--medium-gray);
}

.logo {
    height: 36px;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--pink);
}

.nav-social {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--medium-gray);
}

.nav-social a {
    font-size: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    background: var(--pink);
    color: var(--white);
    padding: 0.9rem 2rem;
    border: none;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--pink-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 36, 128, 0.3);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 0.9rem 2rem;
    border: 2px solid var(--white);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

/*.breadcrumb {
    font-size: 0.85rem;
    color: rgba(239, 239, 239, 0.7);
    margin-bottom: 1rem;
}*/

 /* PAGE HERO */
        .page-hero {
            margin-top: 70px;
            padding: 100px 5%;
            background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(230,36,128,0.15) 0%, transparent 70%);
            pointer-events: none;
        }
        .page-hero h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 1rem;
            position: relative;
        }
        .page-hero p {
            font-size: 1.15rem;
            color: rgba(239,239,239,0.8);
            max-width: 650px;
            margin: 0 auto;
            position: relative;
        }

/* HERO CAROUSEL */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.85));
    z-index: 1;
}

.carousel-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

/*.slide-1 .carousel-slide-bg {
    background-image: url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?w=1600');
}

.slide-2 .carousel-slide-bg {
    background-image: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1600');
}

.slide-3 .carousel-slide-bg {
    background-image: url('https://images.unsplash.com/photo-1591115765373-5207764f72e7?w=1600');
}*/

.carousel-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 700px;
}

.carousel-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.carousel-content p {
    font-size: 1.1rem;
    color: rgba(239, 239, 239, 0.85);
    margin-bottom: 2rem;
    max-width: 500px;
}

.carousel-nav {
    position: absolute;
    bottom: 2rem;
    left: 5%;
    z-index: 10;
    display: flex;
    gap: 0.75rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(239, 239, 239, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--pink);
    transform: scale(1.2);
}

.carousel-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
    pointer-events: none;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--medium-gray);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
}

.carousel-arrow:hover {
    background: var(--pink);
    border-color: var(--pink);
}

/* SECTIONS */
.sections {
    padding: 6rem 5%;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* ABOUT */
.about {
    padding: 6rem 5%;
    background: var(--dark-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content p {
    font-size: 1rem;
    color: rgba(239, 239, 239, 0.8);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-content .btn-outline {
    margin-top: 1rem;
    border-color: var(--pink);
    color: var(--pink);
}

.about-content .btn-outline:hover {
    background: var(--pink);
    color: var(--white);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--pink);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.about-badge-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.75rem;
    font-weight: 500;
}

/* STATS */
.stats {
    padding: 4rem 5%;
    background: var(--pink);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

/* EVENTS */
.events {
    padding: 6rem 5%;
    background: var(--black);
}

.events-header {
    text-align: center;
    margin-bottom: 3rem;
}

.events-header p {
    color: rgba(239, 239, 239, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

.events-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-card {
    background: var(--dark-gray);
    overflow: hidden;
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card a {
    text-decoration: none;
    color: inherit;
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--pink);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    text-align: center;
}

.event-date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.event-date-month {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-content {
    padding: 1.5rem;
}

.event-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.event-desc {
    font-size: 0.9rem;
    color: rgba(239, 239, 239, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-location {
    font-size: 0.8rem;
    color: rgba(239, 239, 239, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.event-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pink);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.events-cta {
    text-align: center;
}

.events-cta .btn-outline {
    border-color: var(--medium-gray);
}

.events-cta .btn-outline:hover {
    border-color: var(--pink);
    background: var(--pink);
}

/* DUAL CTA */
.dual-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.dual-cta-item {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dual-cta-voluntaria {
    background: var(--dark-gray);
}

.dual-cta-associada {
    background: var(--pink);
}

.dual-cta-icon {
    width: 50px;
    height: 50px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dual-cta-voluntaria .dual-cta-icon {
    color: var(--pink);
}

.dual-cta-associada .dual-cta-icon {
    color: var(--white);
}

.dual-cta-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.dual-cta-text {
    font-size: 0.95rem;
    color: rgba(239, 239, 239, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 400px;
}

.dual-cta-voluntaria .btn-outline {
    border-color: var(--pink);
    color: var(--pink);
}

.dual-cta-voluntaria .btn-outline:hover {
    background: var(--pink);
    color: var(--white);
}

.dual-cta-associada .btn-primary {
    background: var(--white);
    color: var(--pink);
}

.dual-cta-associada .btn-primary:hover {
    background: var(--black);
    color: var(--white);
}

/* PARTNERS */
.partners {
    padding: 5rem 5%;
    background: var(--black);
    text-align: center;
}

.partners .section-title {
    margin-bottom: 3rem;
}

.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partner-logo {
    /*background: var(--dark-gray);*/
    padding: 1rem 2rem;
    color: rgba(239, 239, 239, 0.4);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s;
}

.partner-logo:hover {
    /*background: var(--medium-gray);*/
    color: var(--white);
}

/* CONTACT */
.contact {
    padding: 6rem 5%;
    background: var(--dark-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.contact-info>p {
    font-size: 0.95rem;
    color: rgba(239, 239, 239, 0.7);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 1rem;
}

.contact-item-label {
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.contact-item-value a {
    color: rgba(239, 239, 239, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-item-value a:hover {
    color: var(--pink);
}

.contact-form {
    background: var(--medium-gray);
    padding: 2.5rem;
}

.contact-form h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--dark-gray);
    border: 1px solid var(--light-gray);
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/*=========== evento-detalhe.php ===========*/

/* EVENT HERO */
.event-hero {
    margin-top: 70px;
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.event-hero-bg {
    position: absolute;
    inset: 0;
    background: url('img/photo-1540575467063-178a50c2df87.jpg') center/cover;
}

.event-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.event-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 5% 3rem;
    width: 100%;
}

.breadcrumb {
    font-size: 0.85rem;
    color: rgba(239, 239, 239, 0.7);
    margin-bottom: 1rem;
}

.breadcrumb a:hover {
    color: var(--pink);
}

.event-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    max-width: 700px;
    line-height: 1.2;
}

/* EVENT PAGE */
.event-page {
    padding: 4rem 5%;
}

.event-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* MAIN CONTENT */
.event-main h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 2.5rem 0 1rem;
    color: var(--white);
}

.event-main h2:first-child {
    margin-top: 0;
}

.event-main p {
    color: rgba(239, 239, 239, 0.8);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.event-main ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: rgba(239, 239, 239, 0.8);
}

.event-main li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.event-main li strong {
    color: var(--pink);
}

/* SPEAKERS */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.speaker-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.speaker-card:hover {
    border-color: var(--pink);
}

.speaker-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 3px solid var(--medium-gray);
    border-radius: 50%;
}

.speaker-card:hover .speaker-photo {
    border-color: var(--pink);
}

.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.speaker-card p {
    font-size: 0.8rem;
    color: rgba(239, 239, 239, 0.6);
    margin: 0;
}

/* SIDEBAR */
.btn-sidebar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    /*border: none;*/
    width: 100%;
}

.event-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.event-info-card {
    background: var(--dark-gray);
    padding: 2rem;
    border: 1px solid var(--medium-gray);
}

.event-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.event-info-item:last-of-type {
    margin-bottom: 2rem;
}

.event-info-icon {
    width: 48px;
    height: 48px;
    background: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.event-info-text strong {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(239, 239, 239, 0.5);
    margin-bottom: 0.25rem;
}

.event-info-text span {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.4;
}

.event-info-card .btn {
    margin-bottom: 0.75rem;
}

.event-info-card .btn:last-of-type {
    margin-bottom: 0;
}

/* SHARE */
.event-share {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--medium-gray);
}

.event-share p {
    font-size: 0.85rem;
    color: rgba(239, 239, 239, 0.5);
    margin-bottom: 0.75rem;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.share-btn {
    width: 44px;
    height: 44px;
    background: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(239, 239, 239, 0.7);
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--pink);
    color: var(--white);
}

/*.event-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}*/

       
/* ====== ASSOCIADAS.php ====== */


/* BENEFITS */
.benefits-intro {
    background: var(--dark-gray);
    text-align: center;
}

.benefits-intro h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.benefits-intro>.container>p {
    font-size: 1.05rem;
    color: rgba(239, 239, 239, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--medium-gray);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--pink);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.benefit-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.85rem;
    color: rgba(239, 239, 239, 0.6);
    line-height: 1.5;
}

/* PRICING */
.pricing-section {
    background: var(--black);
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--dark-gray);
    padding: 3rem 2.5rem;
    text-align: center;
    border: 1px solid var(--medium-gray);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--pink);
}

.pricing-card.featured {
    border: 1px solid var(--pink);
}

.pricing-card.featured::before {
    content: 'Mais Popular';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--pink);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-card .subtitle {
    font-size: 0.9rem;
    color: rgba(239, 239, 239, 0.5);
    margin-bottom: 1.5rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--pink);
    margin-bottom: 2rem;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(239, 239, 239, 0.5);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(239, 239, 239, 0.8);
}

.pricing-features li i {
    color: var(--pink);
    margin-top: 4px;
    font-size: 0.8rem;
}

.pricing-features li.disabled {
    color: rgba(239, 239, 239, 0.3);
}

.pricing-features li.disabled i {
    color: rgba(239, 239, 239, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
}

/* FORM SECTION */
.form-section {
    background: var(--dark-gray);
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--medium-gray);
    padding: 3rem;
}

.form-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.form-tab {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--dark-gray);
    border: 2px solid var(--light-gray);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(239, 239, 239, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-tab:hover {
    border-color: var(--pink);
    color: var(--white);
}

.form-tab.active {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    font-family: inherit;
    font-size: 0.9rem;
    background: var(--dark-gray);
    border: 2px solid var(--light-gray);
    color: var(--white);
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(239, 239, 239, 0.4);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--pink);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-gray);
    color: var(--white);
}

.form-submit {
    margin-top: 1.5rem;
}

.form-submit .btn {
    padding: 1.25rem 2rem;
}

/* CTA SECTION */
        .cta-section {
            background: var(--pink);
            text-align: center;
            padding: 5rem 5%;
        }
        .cta-section h2 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 900;
            margin-bottom: 1.25rem;
        }
        .cta-section p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 2rem;
        }
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-section .btn-primary {
            background: var(--black);
        }
        .cta-section .btn-primary:hover {
            background: var(--dark-gray);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .cta-section .btn-outline {
            border-color: var(--white);
        }
        .cta-section .btn-outline:hover {
            background: var(--white);
            color: var(--pink);
        }

/* FOOTER */
footer {
    background: var(--black);
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--medium-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(239, 239, 239, 0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--pink);
}

.footer-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(239, 239, 239, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--pink);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(239, 239, 239, 0.4);
}

.footer-bottom a {
    color: var(--pink);
    text-decoration: none;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.whatsapp-float a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

/*========= Empresas.php =========*/
/* WHY SUPPORT */
        .why-section { background: var(--dark-gray); }
        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .why-content h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .why-content p {
            font-size: 1rem;
            color: rgba(239,239,239,0.8);
            margin-bottom: 1.25rem;
            line-height: 1.8;
        }
        .why-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2.5rem;
        }
        .why-stat {
            text-align: center;
            padding: 1.5rem;
            background: var(--medium-gray);
        }
        .why-stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--pink);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .why-stat-label {
            font-size: 0.85rem;
            color: rgba(239,239,239,0.7);
        }
        .why-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        /* PARTNERSHIPS */
        .partnerships-section { background: var(--black); }
        .partnerships-section .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .partnerships-section h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 800;
        }
        .partnerships-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .partnership-card {
            background: var(--dark-gray);
            padding: 2.5rem;
            border: 1px solid var(--medium-gray);
            transition: all 0.3s ease;
        }
        .partnership-card:hover {
            transform: translateY(-5px);
            border-color: var(--pink);
        }
        .partnership-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 1.5rem;
            background: var(--pink);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
        }
        .partnership-card h3 {
            font-size: 1.35rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .partnership-card > p {
            font-size: 0.95rem;
            color: rgba(239,239,239,0.7);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        .partnership-features {
            list-style: none;
        }
        .partnership-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.9rem;
            color: rgba(239,239,239,0.8);
            margin-bottom: 0.75rem;
        }
        .partnership-features li i {
            color: var(--pink);
            margin-top: 4px;
            font-size: 0.75rem;
        }

        /* SPONSORS */
        .sponsors-section { background: var(--dark-gray); }
        .sponsors-section .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .sponsors-section h2 {
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-weight: 800;
        }
        .sponsors-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            max-width: 1000px;
            margin: 0 auto;
        }
        .sponsor-placeholder {
            width: 150px;
            height: 60px;
            background: var(--medium-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(239,239,239,0.5);
            font-size: 0.75rem;
            font-weight: 500;
        }

         /* VOLUNTEER ABOUT */
        .volunteer-about { background: var(--dark-gray); }
        .volunteer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .volunteer-content h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .volunteer-content p {
            font-size: 1rem;
            color: rgba(239,239,239,0.8);
            margin-bottom: 1.25rem;
            line-height: 1.8;
        }
        .volunteer-image {
            position: relative;
        }
        .volunteer-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
        }
        .volunteer-image-badge {
            position: absolute;
            bottom: -20px;
            right: 20px;
            background: var(--pink);
            color: var(--white);
            padding: 1.25rem 1.5rem;
            text-align: center;
        }
        .volunteer-image-badge .number {
            font-size: 2.5rem;
            font-weight: 900;
            line-height: 1;
        }
        .volunteer-image-badge .text {
            font-size: 0.75rem;
            font-weight: 500;
        }

        /* AREAS */
        .areas-section { background: var(--black); }
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .area-card {
            background: var(--dark-gray);
            padding: 2.5rem 2rem;
            text-align: center;
            border: 1px solid var(--medium-gray);
            transition: all 0.3s ease;
        }
        .area-card:hover {
            transform: translateY(-5px);
            border-color: var(--pink);
        }
        .area-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: var(--pink);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.75rem;
        }
        .area-card h3 {
            font-size: 1.25rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
        }
        .area-card p {
            font-size: 0.9rem;
            color: rgba(239,239,239,0.7);
            line-height: 1.6;
        }

        /* FORM SECTION */
        .form-section { background: var(--dark-gray); }
        .form-card {
            max-width: 700px;
            margin: 0 auto;
            background: var(--medium-gray);
            padding: 3rem;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
        }
        .form-group {
            margin-bottom: 1.25rem;
        }
        .form-group.full {
            grid-column: 1 / -1;
        }
        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 0.5rem;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            font-family: inherit;
            font-size: 0.9rem;
            background: var(--dark-gray);
            border: 2px solid var(--light-gray);
            color: var(--white);
            transition: all 0.3s ease;
        }
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(239,239,239,0.4);
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--pink);
        }
        .form-group select {
            cursor: pointer;
        }
        .form-group select option {
            background: var(--dark-gray);
            color: var(--white);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* CHECKBOX GROUP */
        .checkbox-group {
            margin-bottom: 1.5rem;
        }
        .checkbox-group > label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 1rem;
        }
        .checkbox-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }
        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.875rem 1rem;
            background: var(--dark-gray);
            border: 2px solid var(--light-gray);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .checkbox-item:hover {
            border-color: var(--pink);
        }
        .checkbox-item:has(input:checked) {
            background: var(--pink);
            border-color: var(--pink);
        }
        .checkbox-item input {
            width: 18px;
            height: 18px;
            accent-color: var(--white);
            cursor: pointer;
        }
        .checkbox-item span {
            font-size: 0.9rem;
            font-weight: 500;
        }

        .form-submit {
            margin-top: 1.5rem;
        }
        .form-submit .btn {
            padding: 1.25rem 2rem;
        }

    /* HISTÓRIA */
        .history-section { background: var(--dark-gray); }
        .history-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .history-content h2 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 800;
            margin-bottom: 2rem;
        }
        .history-content p {
            font-size: 1.05rem;
            color: rgba(239,239,239,0.8);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        /* TIMELINE */
        .timeline {
            margin-top: 4rem;
            position: relative;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: var(--medium-gray);
        }
        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: calc(50% + 40px);
            position: relative;
            margin-bottom: 3rem;
        }
        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: calc(50% + 40px);
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: var(--pink);
            border-radius: 50%;
            border: 4px solid var(--dark-gray);
        }
        .timeline-content {
            background: var(--medium-gray);
            padding: 1.5rem;
            border-radius: 8px;
            max-width: 380px;
            text-align: left;
        }
        .timeline-year {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--pink);
            margin-bottom: 0.5rem;
        }
        .timeline-content h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .timeline-content p {
            font-size: 0.95rem;
            color: rgba(239,239,239,0.7);
            margin: 0;
            line-height: 1.6;
        }

        /* MVV - MISSÃO VISÃO VALORES */
        .mvv-section { background: var(--black); }
        .mvv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .mvv-card {
            background: var(--dark-gray);
            padding: 2.5rem;
            text-align: center;
            border: 1px solid var(--medium-gray);
            transition: all 0.3s ease;
        }
        .mvv-card:hover {
            transform: translateY(-5px);
            border-color: var(--pink);
        }
        .mvv-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: var(--pink);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.75rem;
        }
        .mvv-card h3 {
            font-size: 1.35rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .mvv-card p {
            color: rgba(239,239,239,0.7);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* MANIFESTO */
        .manifesto-section {
            background: var(--pink);
            text-align: center;
        }
        .manifesto-content {
            max-width: 900px;
            margin: 0 auto;
        }
        .manifesto-content .section-label {
            color: rgba(255,255,255,0.7);
        }
        .manifesto-content h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            margin-bottom: 2.5rem;
        }
        .manifesto-text {
            font-size: 1.2rem;
            line-height: 1.9;
        }
        .manifesto-text p { margin-bottom: 1.5rem; }

        /* DIRETORIA */
        .team-section { background: var(--dark-gray); }
        .team-section .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .team-section h2 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 800;
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .team-card {
            text-align: center;
        }
        .team-photo {
            width: 160px;
            height: 160px;
            margin: 0 auto 1.25rem;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--medium-gray);
            transition: border-color 0.3s;
        }
        .team-card:hover .team-photo {
            border-color: var(--pink);
        }
        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .team-photo-placeholder {
            width: 100%;
            height: 100%;
            background: var(--medium-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-gray);
            font-size: 2.5rem;
        }
        .team-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }
        .team-card .role {
            font-size: 0.85rem;
            color: rgba(239,239,239,0.6);
            margin-bottom: 0.75rem;
        }
        .team-linkedin {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--medium-gray);
            color: var(--white);
            transition: all 0.3s;
        }
        .team-linkedin:hover {
            background: var(--pink);
        }


/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-grid, .dual-cta, .contact-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}