/* ==========================================================================
   ESTILOS GERAIS - PET-SAÚDE CLIMA (UNIVERSIDADE FEEVALE 2026-2028)
   ========================================================================== */

/* 
   PALETA DE CORES OFICIAIS (Conforme Manual da Marca, Página 2):
   - Verde Claro (Lime): #a1cd4c
   - Verde Escuro: #189f56
   - Vermelho: #ef4637
   - Amarelo (Secundária): #fcc051
   - Azul Claro (Secundária): #27aae1
*/

:root {
    --color-lime: #a1cd4c;
    --color-green: #189f56;
    --color-red: #ef4637;
    --color-yellow: #fcc051;
    --color-blue: #27aae1;
    
    
    /* Cores auxiliares de design */
    --color-dark: #202428;
    --color-text-dark: #333d47;
    --color-light: #f8fafc;
    --color-white: #ffffff;
    --color-gray-border: #e2e8f0;
    
    /* Tipografia de acordo com a página 2 do Manual */
    --font-family: 'Exo 2', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* Configurações visuais gerais */
    --border-radius: 12px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease-in-out;
}

/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--color-text-dark);
    background-color: var(--color-white);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

/* LAYOUT E CONTAINERS */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

.grid-2col {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* TÍTULOS DE SEÇÃO */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 10px auto 0 auto;
}

.title-bar {
    display: block;
    width: 60px;
    height: 5px;
    background: linear-gradient(90deg, var(--color-lime), var(--color-green));
    margin: 15px auto 0 auto;
    border-radius: 5px;
}

/* BOTÕES */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px; /* Estilo arredondado condizente com a Exo 2 */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-green);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #128245; /* Variação escura para hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(24, 159, 86, 0.3);
}

.btn-secondary {
    background-color: var(--color-lime);
    color: var(--color-dark);
}

.btn-secondary:hover {
    background-color: #8bb23a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(161, 205, 76, 0.3);
}

.btn-full-width {
    width: 100%;
}

/* CABEÇALHO (HEADER) */
.site-header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Protegendo limites da logo no cabeçalho */
.brand-logo-horizontal {
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    font-weight: 600;
}

.nav-menu a {
    color: var(--color-text-dark);
}

.nav-menu a:hover {
    color: var(--color-green);
}

.nav-menu .btn-contato {
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 20px;
}

.nav-menu .btn-contato:hover {
    background-color: var(--color-lime);
    color: var(--color-dark);
}

/* BANNER PRINCIPAL (HERO) */
.hero-section {
    background: linear-gradient(135deg, #189f56 0%, #117a41 100%);
    color: var(--color-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Detalhe de fundo dinâmico e suave */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(161, 205, 76, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-text .hero-tagline {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-text .hero-sub {
    font-size: 1.5rem;
    color: var(--color-lime);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text .hero-desc {
    font-size: 1.1rem;
    opacity: 0.92;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-logo-highlight {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-avatar-large {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* SOBRE E FATOS RÁPIDOS */
.content-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #475569;
}

.quick-facts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fact-card {
    background-color: var(--color-white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--color-lime);
    transition: var(--transition);
}

.fact-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.fact-card h3 {
    font-size: 2rem;
    color: var(--color-green);
    font-weight: 700;
    margin-bottom: 5px;
}

.fact-card p {
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
}

/* OBJETIVOS */
.objective-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-border);
    border-radius: var(--border-radius);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.obj-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-green {
    background-color: rgba(24, 159, 86, 0.1);
    color: var(--color-green);
}

.icon-lime {
    background-color: rgba(161, 205, 76, 0.1);
    color: var(--color-lime);
}

.icon-red {
    background-color: rgba(239, 70, 55, 0.1);
    color: var(--color-red);
}

.objective-card h3 {
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.objective-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* GRUPOS E COMPOSIÇÃO */
.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

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

.group-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.group-card-header {
    padding: 25px;
    color: var(--color-white);
    position: relative;
}

/* Classes para dar cores diferentes aos cabeçalhos com paleta da marca */
.group-card-header.color-1 {
    background-color: var(--color-green);
}

.group-card-header.color-2 {
    background-color: var(--color-blue);
    /*color: var(--color-dark);*/
}

.group-card-header.color-3 {
    background-color: var(--color-red);
}

.group-card-header.color-4 {
    background-color: var(--color-yellow);
}

.group-card-header.color-5 {
    background-color: var(--color-lime);
}


.group-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.territory-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Ajuste sutil na tag quando fundo é lime (texto escuro) */
.group-card-header.color-2 .territory-tag {
    background-color: rgba(0, 0, 0, 0.08);
}

.group-card-body {
    padding: 25px;
}

.group-card-body h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.group-theme {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 20px;
    min-height: 48px; /* Mantém alinhamento básico */
}

.group-composition {
    border-top: 1px solid var(--color-gray-border);
    padding-top: 15px;
}

.member-role-coordenacao {
    font-size: 1.0rem;
    color: #64748b;
    margin-top: 10px;
}

.member-names-coordenacao {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    font-weight: 500;
}

.member-role-orientacao-servico {
    font-size: 1.0rem;
    color: #64748b;
    margin-top: 10px;
}

.member-names-orientacao-servico {
    font-size: 1.0rem;
    color: var(--color-text-dark);
    font-weight: 500;
}

.member-role {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 10px;
}

.member-names {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    font-weight: 500;
}


.students-list {
    margin-top: 8px;
    padding-left: 15px;
    list-style: disc;
}

.students-list li {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 4px;
}

/* LINHA DO TEMPO (TIMELINE) */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0 auto;
}

/* Linha central vertical */
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--color-gray-border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* Pontos marcadores na linha */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--color-white);
    border: 4px solid var(--color-green);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition);
}

.timeline-item.right::after {
    left: -10px;
    border-color: var(--color-lime);
}

/* Alinhamento alternado */
.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-content {
    padding: 25px;
    background-color: var(--color-light);
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-content.left{
    background-color: var(--color-lime);
}

.timeline-item:hover .timeline-content {
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.timeline-date {
    display: inline-block;
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-item.right .timeline-date {
    background-color: var(--color-dark);
}

.timeline-content h3 {
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #475569;
}

/* PARCEIROS */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.partner-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-border);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-lime);
}

.partner-card h4 {
    font-size: 1.25rem;
    color: var(--color-green);
    margin-bottom: 12px;
    font-weight: 700;
}

.partner-card p {
    font-size: 0.9rem;
    color: #64748b;
}

/* SEÇÃO CONTATO */
.contact-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    margin-top: 30px;
}

.contact-info h3 {
    font-size: 1.6rem;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.contact-info.section-right {
    display: flex;
    justify-content: center; /* Centraliza na horizontal */
    align-items: center;     /* Centraliza na vertical */
    height: 300px;           /* Defina uma altura para ver o efeito vertical */
}

.contact-details {
    margin: 25px 0;
}

.contact-details li {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #475569;
}

.contact-details li strong {
    color: var(--color-dark);
    display: block;
    margin-bottom: 2px;
}

.brand-compliance-info {
    background-color: var(--color-light);
    padding: 15px;
    border-left: 4px solid var(--color-red);
    border-radius: 4px;
    margin-top: 30px;
}

.brand-compliance-info small {
    color: #64748b;
    line-height: 1.4;
    display: block;
}

.contact-form-container {
    background-color: var(--color-light);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--color-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-gray-border);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(24, 159, 86, 0.15);
}

/* RODAPÉ (FOOTER) */
.site-footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 60px 0 30px 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
}

.footer-about h3 {
    font-size: 1.35rem;
    color: var(--color-lime);
    margin-bottom: 15px;
}

.footer-about p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--color-white);
}

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

.footer-links ul li a {
    opacity: 0.8;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--color-lime);
    padding-left: 5px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* Garantindo limites mínimos do avatar no footer */
.footer-avatar {
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
    min-width: 65px; 
    width: 65px; 
    height: auto;
}

.footer-brand p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ==========================================================================
   MEDIDAS DE RESPONSIVIDADE (MOBILE / TABLET)
   ========================================================================== */
@media (max-width: 992px) {
    .grid-2col,
    .hero-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-logo-highlight {
        order: -1; /* Exibe o avatar em cima em telas menores */
    }
    
    .brand-avatar-large {
        max-width: 220px;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 21px;
        right: auto;
    }
    
    .timeline-item.right::after {
        left: 21px;
    }
    
    .timeline-item.right {
        left: 0%;
    }
    
    .grid-3col,
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
}
