:root {
    /* cores do site bb nao mexer nunca esse caralho aq */
    --color-primary: #2B7B3C;
    --color-primary-dark: #1d5429;
    --color-primary-light: #3c8c4d;
    --color-accent: #E63946;
    --color-accent-dark: #d62836;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray-50: #f8fafc;
    --color-gray-100: #F8F9FA;
    --color-gray-200: #E9ECEF;
    --color-gray-300: #DEE2E6;
    --color-gray-400: #CED4DA;
    --color-gray-500: #ADB5BD;
    --color-gray-600: #6C757D;
    --color-gray-700: #495057;
    --color-gray-800: #343A40;
    --color-gray-900: #212529;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius: 0.5rem;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    line-height: 1.5;
    color: var(--color-gray-900);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 0.5rem 0;
    height: 60px;
    transition: transform 0.3s ease-in-out;
}

.header.hidden {
    transform: translateY(-100%);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: bold;
}

.header-logo i {
    font-size: 1.5rem;
}

.header-logo span {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--color-primary);
}

.profciamb-logo {
    height: 40px;
    margin-left: auto;
    margin-right: 20px;
}

.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--color-gray-700);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
}

#mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

#mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-gray-700);
    transition: transform 0.3s ease;
}

#mobile-menu-btn.active span:first-child {
    transform: translateY(8px) rotate(45deg);
}

#mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

#mobile-menu-btn.active span:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 768px) {
    #mobile-menu-btn {
        display: none;
    }
}

#mobile-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: var(--color-primary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

#mobile-nav.active {
    transform: translateX(0);
}

#mobile-nav nav {
    padding: 1rem;
}

#mobile-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

#mobile-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

#mobile-nav i {
    font-size: 1.25rem;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo i {
    font-size: 1.5rem;
    color: #ffffff;
}

.mobile-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

#hero {
    margin-top: 60px;
    padding: 120px 0;
    background-color: var(--color-primary);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    text-align: center;
}

.hero-text {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.hero-text h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 800;
}

.welcome-text {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 2.5rem;
    color: #ffffff;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    max-width: 220px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 0.8rem;
}

.feature-card h3 {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.hero-text p {
    font-size: 1.125rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.text-accent {
    color: #ffffff;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #ffffff;
    color: var(--color-primary);
}

.btn-secondary i {
    font-size: 1.1rem;
}

.hero-image {
    margin-top: 2rem;
}

.image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
    .hero-text {
        flex: 1;
    }
    .hero-image {
        flex: 1;
        margin-top: 0;
    }
    .cta-buttons {
        justify-content: flex-start;
    }
    .hero-text h1 {
        font-size: 3.5rem;
    }
}


/* Seções Gerais aqui pode mexer */

section {
    padding: 80px 0;
    margin-top: 70px;
    position: relative;
    background-color: var(--color-white);
    color: var(--color-primary);
}

section:nth-child(even) {
    background-color: var(--color-gray-50);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    opacity: 1 !important;
    transform: none !important;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--color-primary-light);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.section-header p {
    color: var(--color-gray-700);
    font-size: 1.125rem;
}


/* Cursos */

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.curso-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.curso-card:hover {
    transform: translateY(-5px);
}

.curso-icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-primary-light);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.curso-card h3 {
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.curso-card p {
    color: var(--color-gray-500);
    margin-bottom: 1.5rem;
}

.btn-link {
    color: var(--color-primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-link:hover {
    color: var(--color-primary-dark);
}


/* Professores */

.professores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.professor-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.professor-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.professor-info {
    padding: 1.5rem;
    text-align: center;
}

.professor-info h3 {
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.professor-info p {
    color: var(--color-gray-500);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: var(--color-gray-100);
    color: var(--color-gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.team-card:first-child {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.team-card:first-child img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.scrollable-cards {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-gray-200);
}

.scrollable-cards::-webkit-scrollbar {
    height: 8px;
}

.scrollable-cards::-webkit-scrollbar-track {
    background: var(--color-gray-200);
    border-radius: 4px;
}

.scrollable-cards::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

.scrollable-cards .team-card {
    flex: 0 0 300px;
}

.scrollable-cards .team-card img {
    height: 160px;
}

.scrollable-cards .team-info {
    padding: 1rem;
}

.scrollable-cards .team-info h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.scrollable-cards .team-info .role {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.scrollable-cards .team-info .description {
    font-size: 0.85rem;
}

.team-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    padding: 0.8rem;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card.large-card {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    gap: 2rem;
}

.team-card.large-card img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
    margin: 0 auto;
}

.team-card.large-card .team-info {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

.team-card.large-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.team-card.large-card .role {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.team-card.large-card .description {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.team-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 0.8rem;
}

.team-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.team-card .role {
    font-size: 0.85rem;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
}

.team-card .description {
    font-size: 0.8rem;
    color: var(--color-gray-600);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .team-card:first-child {
        grid-column: 1 / -1;
        margin-bottom: 2rem;
    }
    .team-card:not(:first-child) {
        grid-column: span 1;
    }
    .team-card img {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        gap: 0.8rem;
    }
    .team-card {
        padding: 0.6rem;
    }
    .team-card img {
        height: 120px;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--color-white);
}

.gallery-caption h3 {
    margin-bottom: 0.5rem;
}

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    z-index: 100;
    padding: 2rem;
}

#lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: var(--radius);
}

#lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

#prev-button,
#next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
}

#prev-button {
    left: 1rem;
}

#next-button {
    right: 1rem;
}

.contact-container {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr 2fr;
    }
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-card {
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-card i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.contact-form {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-gray-700);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

footer {
    background-color: var(--color-gray-900);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 4rem;
    }
}

.footer-about p {
    margin: 1rem 0;
    opacity: 0.8;
}

.footer-links h3,
.footer-newsletter h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

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

.footer-links a {
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-newsletter p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

#newsletter-form {
    display: flex;
    gap: 0.5rem;
}

#newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--color-gray-700);
    border-radius: var(--radius);
    background-color: transparent;
    color: var(--color-white);
}

#newsletter-form button {
    padding: 0.75rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#newsletter-form button:hover {
    background-color: var(--color-primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-800);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

.mt-4 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#fixed-player {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    background: var(--color-white);
    padding: 1rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

#play-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
}

#play-button:hover {
    background: var(--color-primary-dark);
    transform: scale(1.05);
}

#play-button.playing {
    animation: pulse 2s infinite;
}

#play-button.playing::before,
#play-button.playing::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.3;
    animation: wave 2s infinite;
}

#play-button.playing::after {
    animation-delay: 1s;
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.player-info {
    display: flex;
    flex-direction: column;
}

.player-info span {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.player-info strong {
    color: var(--color-primary);
}

.podcast-container {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .podcast-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    margin-top: 2rem;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

@media (min-width: 768px) {
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.schedule-card {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    opacity: 1;
    transform: none;
}

.schedule-time {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.schedule-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.schedule-host {
    color: var(--color-gray-600);
    font-size: 0.875rem;
}

.welcome-text,
.mission-text,
.invitation-text {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.welcome-text {
    font-size: 1.25rem;
    color: var(--color-white);
}

.mission-text {
    font-size: 1.125rem;
    opacity: 0.9;
}

.invitation-text {
    font-size: 1.125rem;
    opacity: 0.85;
}

.team-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    opacity: 1;
    transform: none;
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.team-info .role {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-info .description {
    color: var(--color-gray-700);
    font-size: 0.875rem;
    line-height: 1.6;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    margin-top: 2rem;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.video-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    opacity: 1;
    transform: none;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--color-gray-700);
    font-size: 0.875rem;
    line-height: 1.6;
}

.chat-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
    margin-top: 2rem;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

@media (min-width: 768px) {
    .chat-container {
        grid-template-columns: 1fr 1fr;
    }
}

.messages-carousel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 1rem;
}

.message-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    animation: slideIn 0.5s ease forwards;
    opacity: 1;
    transform: none;
}

.message-card:nth-child(1) {
    animation-delay: 0.1s;
}

.message-card:nth-child(2) {
    animation-delay: 0.2s;
}

.message-card:nth-child(3) {
    animation-delay: 0.3s;
}

.message-card:nth-child(4) {
    animation-delay: 0.4s;
}

.message-card i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.message-card h3 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.message-card p {
    color: var(--color-gray-700);
    font-size: 0.875rem;
    line-height: 1.6;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .chat-container {
        grid-template-columns: 1fr;
    }
    .messages-carousel {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-height: none;
        padding-right: 0;
    }
    .message-card {
        padding: 1.2rem;
    }
    .message-card i {
        font-size: 1.5rem;
    }
    .message-card h3 {
        font-size: 1rem;
    }
    .message-card p {
        font-size: 0.8rem;
    }
    .podcast-grid {
        grid-template-columns: 1fr;
    }
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    .team-card img {
        height: 250px;
    }
}

.messages-carousel::-webkit-scrollbar {
    width: 8px;
}

.messages-carousel::-webkit-scrollbar-track {
    background: var(--color-gray-100);
    border-radius: var(--radius-full);
}

.messages-carousel::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

.messages-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

#galeria,
#programacao,
#podcast,
#chat {
    background-image: url('./fundosite02.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;
    margin-top: 0;
    background-color: var(--color-white);
}

#galeria::before,
#programacao::before,
#podcast::before,
#chat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

#galeria .container,
#programacao .container,
#podcast .container,
#chat .container {
    position: relative;
    z-index: 2;
}

.section-header {
    opacity: 1 !important;
    transform: none !important;
}

.gallery-grid,
.schedule-grid,
.podcast-grid,
.chat-container {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.section-header h2 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-header p {
    color: var(--color-gray-700);
    font-size: 1.125rem;
}

.section-tag {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.podcast-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.main-video {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.main-video .video-wrapper {
    padding-bottom: 56.25%;
    position: relative;
    width: 100%;
}

.main-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-playlist {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1rem;
    height: 600px;
    overflow-y: auto;
    box-shadow: var(--shadow-md);
}

.playlist-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.playlist-item:hover,
.playlist-item.active {
    background: var(--color-gray-100);
}

.playlist-item img {
    width: 120px;
    height: 68px;
    border-radius: var(--radius);
    object-fit: cover;
}

.playlist-info {
    flex: 1;
}

.playlist-info h4 {
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.playlist-info p {
    color: var(--color-gray-600);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .podcast-layout {
        grid-template-columns: 1fr;
    }
    .video-playlist {
        height: 400px;
    }
}

.video-playlist::-webkit-scrollbar {
    width: 6px;
}

.video-playlist::-webkit-scrollbar-track {
    background: var(--color-gray-100);
    border-radius: var(--radius-full);
}

.video-playlist::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

.video-playlist::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}


/* Estilos do Menu Mobile */

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger-lines {
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger-lines .line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger-lines .line1 {
    top: 0;
}

.hamburger-lines .line2 {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-lines .line3 {
    bottom: 0;
}

.hamburger-menu.active .line1 {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active .line2 {
    opacity: 0;
}

.hamburger-menu.active .line3 {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: var(--color-primary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav nav {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 12px 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav a i {
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }
    .nav-menu {
        display: none;
    }
}


/* Estilos da Seção Eventos */

#eventos {
    padding: 80px 0;
    background-color: var(--bg-color);
}

#eventos .gallery-grid {
    margin-top: 40px;
}

#eventos .scrollable-cards {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
}

#eventos .team-card {
    min-width: 300px;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#eventos .team-card:hover {
    transform: translateY(-5px);
}

#eventos .team-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

#eventos .team-info {
    padding: 20px;
}

#eventos .team-info h3 {
    color: var(--text-color);
    margin-bottom: 10px;
}

#eventos .team-info .role {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 10px;
}

#eventos .team-info .description {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
}


/* Responsividade para a seção de eventos */

@media (max-width: 768px) {
    .profciamb-logo {
        height: 30px;
        margin-right: 10px;
    }
    #eventos .team-card {
        min-width: 250px;
    }
}