/* ============================================
   STYLE.CSS - Site CRESS-RO
   Chapa: Serviço Social em Ação
   Paleta: Verde Escuro e Branco
   Última atualização: [DATA]
============================================ */

/* ============================================
   VARIÁVEIS DE CORES (Tema Verde e Branco)
============================================ */
:root {
    /* Cores principais - Verde */
    --primary: #1b5e20;          /* Verde escuro - primário */
    --primary-light: #2e7d32;    /* Verde médio */
    --primary-lighter: #388e3c;  /* Verde médio-claro */
    --primary-lightest: #4caf50; /* Verde claro */
    
    /* Cores secundárias */
    --secondary: #ffffff;        /* Branco puro */
    --secondary-dark: #f5f5f5;   /* Branco acinzentado */
    --secondary-darker: #eeeeee; /* Cinza muito claro */
    
    /* Cores de destaque */
    --accent: #ffc107;           /* Amarelo para destaques */
    --accent-light: #ffd54f;     /* Amarelo claro */
    
    /* Cores neutras */
    --dark: #121212;             /* Quase preto */
    --dark-light: #333333;       /* Cinza escuro */
    --gray: #666666;             /* Cinza médio */
    --gray-light: #999999;       /* Cinza claro */
    --light: #f8f9fa;            /* Branco acinzentado claro */
    --light-gray: #e0e0e0;       /* Cinza muito claro */
    --medium-gray: #bdbdbd;      /* Cinza médio-claro */
    
    /* Cores de fundo */
    --bg-light: #ffffff;         /* Branco para fundos */
    --bg-dark: #1b5e20;         /* Verde escuro para fundos */
    --bg-gradient: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    --bg-gradient-light: linear-gradient(135deg, #ffffff 0%, #f1f8e9 100%);
    
    /* Outras variáveis */
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-green: 0 5px 15px rgba(27, 94, 32, 0.2);
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

/* ============================================
   RESET E CONFIGURAÇÕES GERAIS
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-light);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--bg-gradient);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style-position: inside;
}

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

section {
    padding: 5rem 0;
}

/* ============================================
   BOTÕES
============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--bg-gradient);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.btn:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-lighter) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* ============================================
   HEADER & NAVEGAÇÃO
============================================ */
header {
    background-color: white;
    box-shadow: 0 2px 20px rgba(27, 94, 32, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.logo i {
    margin-right: 10px;
    color: var(--primary-light);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    color: var(--dark-light);
}

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

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--bg-gradient);
    left: 0;
    bottom: 0;
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}

/* ============================================
   BREADCRUMB
============================================ */
.breadcrumb {
    background-color: var(--secondary-darker);
    padding: 1rem 0;
    margin-top: 70px;
    border-bottom: 1px solid var(--light-gray);
}

.breadcrumb a {
    color: var(--primary);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--gray);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    background: linear-gradient(rgba(27, 94, 32, 0.9), rgba(46, 125, 50, 0.8)), url('https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 10rem 0 5rem;
    margin-top: 70px;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
   HIGHLIGHTS SECTION
============================================ */
.highlights {
    background-color: var(--bg-light);
}

.highlight-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: white;
    border-top: 4px solid var(--primary);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary-light);
}

.highlight-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* ============================================
   ABOUT PAGE
============================================ */
.about-page h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid var(--primary);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    text-align: left;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.values-list {
    list-style: none;
    margin: 1.5rem 0;
}

.values-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.values-list li i {
    color: var(--primary-light);
    margin-right: 10px;
    margin-top: 3px;
}

/* ============================================
   TEAM PAGE
============================================ */
.team-page h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--gray);
}

.team-members-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member-detailed {
    display: flex;
    gap: 2rem;
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    align-items: stretch;
    border: 1px solid var(--light-gray);
}

.team-member-detailed:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

/* MOLDAURA ELEGANTE BRANCO E VERDE PARA AS FOTOS */
.member-image {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    position: relative;
    background-color: #f8fff8;
    border-radius: 12px;
    border: 1px solid #e0f2e0;
    margin: 20px;
}

.member-image::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
    border-radius: 8px;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(76, 175, 80, 0.1);
}

.member-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary);
    border-radius: 12px;
    z-index: 3;
    opacity: 0.3;
    pointer-events: none;
}

.member-image img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    background-color: white;
    padding: 8px;
    border: 1px solid #e8f5e9;
}

/* Efeito hover para as fotos */
.team-member-detailed:hover .member-image::before {
    background: linear-gradient(135deg, #ffffff 0%, #e0f2e0 100%);
    box-shadow: 0 6px 12px rgba(76, 175, 80, 0.15);
}

.team-member-detailed:hover .member-image::after {
    opacity: 0.5;
    border-color: var(--primary-light);
}

.team-member-detailed:hover .member-image img {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Bordas coloridas diferentes para cada cargo */
.team-member-detailed:nth-child(1) .member-image::after { /* Presidente */
    border-color: var(--primary);
}

.team-member-detailed:nth-child(2) .member-image::after { /* Vice-Presidente */
    border-color: var(--primary-light);
}

.team-member-detailed:nth-child(3) .member-image::after { /* 1ª Secretária */
    border-color: var(--primary-lighter);
}

.team-member-detailed:nth-child(4) .member-image::after { /* 2ª Secretária */
    border-color: var(--primary-lightest);
}

.team-member-detailed:nth-child(5) .member-image::after { /* 1ª Tesoureira */
    border-color: #66bb6a; /* Verde mais claro */
}

.member-info-detailed {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.member-bio p {
    margin-bottom: 1.2rem;
}

.member-qualifications {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.member-qualifications h4 {
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.member-qualifications ul {
    list-style-position: inside;
    color: var(--gray);
}

.member-qualifications li {
    margin-bottom: 0.5rem;
}

/* ============================================
   PROPOSALS PAGE
============================================ */
.proposals-page h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.proposals-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--gray);
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.category-tab {
    padding: 10px 20px;
    background-color: var(--secondary-darker);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    color: var(--dark-light);
}

.category-tab:hover {
    background-color: var(--light-gray);
}

.category-tab.active {
    background: var(--bg-gradient);
    color: white;
}

.proposals-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 2rem;
}

.proposal-card {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.proposal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--primary-light);
}

.proposal-icon {
    flex: 0 0 80px;
    background: var(--bg-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.proposal-content {
    flex: 1;
    padding: 1.5rem;
}

.proposal-content h3 {
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.proposal-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
    font-size: 0.9rem;
}

.proposal-category {
    background-color: var(--secondary-darker);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
    color: var(--primary);
}

.proposal-priority {
    color: var(--gray);
}

/* ============================================
   VIDEOS PAGE
============================================ */
.videos-page h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.videos-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--gray);
}

.channel-info {
    margin-bottom: 3rem;
}

.channel-card {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid var(--primary);
}

.channel-icon {
    font-size: 4rem;
    color: #ff0000;
    margin-right: 2rem;
}

.channel-details h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.channel-details h2::after {
    display: none;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.video-card:hover .video-play {
    background-color: var(--primary);
    color: white;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.video-date {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.video-description {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.upcoming-events {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--light-gray);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.event-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.event-date {
    flex: 0 0 60px;
    text-align: center;
    background: var(--bg-gradient);
    color: white;
    border-radius: var(--border-radius);
    padding: 10px;
}

.event-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 0.9rem;
    font-weight: 500;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    margin-bottom: 0.5rem;
}

.event-details p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.event-details i {
    margin-right: 5px;
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-page h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--gray);
}

.contact-content {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-info h2::after {
    left: 0;
    transform: none;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    flex: 0 0 50px;
    height: 50px;
    background: var(--bg-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-note {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 5px;
    margin-bottom: 0;
}

.social-contact h3 {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: var(--secondary-darker);
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.social-link.facebook {
    color: #1877F2;
}

.social-link.instagram {
    color: #E4405F;
}

.social-link.youtube {
    color: #FF0000;
}

.social-link.whatsapp {
    color: #25D366;
}

.contact-form-container {
    flex: 1;
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--light-gray);
}

.contact-form-container h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-form-container h2::after {
    left: 0;
    transform: none;
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.form-checkbox input {
    margin-right: 10px;
    width: auto;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.sending {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
    background-color: var(--secondary-darker);
}

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

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem;
    display: none;
    border-top: 1px solid var(--light-gray);
}

.faq-answer p {
    padding: 1.5rem 0;
    margin-bottom: 0;
}

/* ============================================
   FOOTER
============================================ */
footer {
    background: var(--bg-gradient);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-column h3::after {
    background-color: white;
    height: 3px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-logo i {
    margin-right: 10px;
    color: white;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.9);
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-column p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.footer-column p i {
    margin-right: 10px;
    color: white;
    width: 20px;
}

.footer-column .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-column .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition);
    color: white;
}

.footer-column .social-links a:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ============================================
   DEVELOPER CREDIT - Estilo Elegante e Discreto
============================================ */
.developer-credit {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 1.5rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.developer-credit a {
    color: #a8d5e5;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 2px;
}

.developer-credit a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #a8d5e5, transparent);
    transition: width 0.3s ease;
}

.developer-credit a:hover {
    color: #ffffff;
}

.developer-credit a:hover::before {
    width: 100%;
}

/* Adicione um pequeno ícone antes do link (opcional) */
.developer-credit a::after {
    content: '↗';
    font-size: 0.8em;
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.developer-credit a:hover::after {
    transform: translate(2px, -2px);
}

/* Para quando o crédito estiver fora do footer */
.page-credit {
    color: var(--gray);
    border-top: 1px solid var(--light-gray);
    padding: 1.5rem 0 0;
    margin: 3rem 0 1rem;
    text-align: center;
    font-size: 0.85rem;
}

.page-credit a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.page-credit a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.page-credit a:hover {
    color: var(--primary-light);
}

.page-credit a:hover::after {
    width: 100%;
}

/* ============================================
   RESPONSIVIDADE
============================================ */
@media (max-width: 1200px) {
    .proposals-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .team-member-detailed {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .member-image {
        flex: 0 0 auto;
        width: 250px;
        margin: 20px auto;
    }
    
    .member-image img {
        max-height: 280px;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .channel-card {
        flex-direction: column;
        text-align: center;
    }
    
    .channel-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .event-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .event-details h3 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        padding: 2rem 0;
        z-index: 999;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 1rem 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .member-image {
        width: 220px;
        padding: 15px;
    }
    
    .member-image img {
        max-height: 240px;
        padding: 6px;
    }
    
    .proposals-container {
        grid-template-columns: 1fr;
    }
    
    .proposal-card {
        flex-direction: column;
    }
    
    .proposal-icon {
        flex: 0 0 60px;
        padding: 1rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tab {
        width: 100%;
        max-width: 250px;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-link {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .member-image {
        width: 200px;
    }
    
    .member-image img {
        max-height: 220px;
    }
    
    .highlight-card {
        min-width: 100%;
    }
}

/* ============================================
   ANIMAÇÕES ESPECIAIS
============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================
   UTILITY CLASSES
============================================ */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }