/* Hero Section */
.hero {
    height: 500px;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/hero.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: var(--text-light);
    margin-bottom: 3rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,62,80,0.7) 0%, rgba(231,76,60,0.5) 100%);
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    line-height: 1.1;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem; 
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    letter-spacing: 1px;
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

.hero p {
    font-size: 1.3rem; 
    margin: 0 auto;
    padding: 0 1rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    font-weight: 300;
    max-width: 600px; 
    line-height: 1.6;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards, bounce 2s infinite 1.6s;
}

.hero-scroll i {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}


.about-image {
    position: relative;
    overflow: visible; 
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: perspective(1000px) rotateY(0deg); 
}

.about-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    top: 15px;
    left: 15px;
    z-index: 0;
    border-radius: 8px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.about-image:hover img {
    transform: perspective(1000px) rotateY(-5deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.about-image:hover::before {
    top: 10px;
    left: 10px;
    opacity: 0.9;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--accent-color);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.about-highlight {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.about-highlight i {
    font-size: 2rem;
    color: var(--accent-color);
    min-width: 40px;
}

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

.feature-item {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.feature-item i {
    color: var(--primary-color);
}

.about-gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    height: 100%;
}

.gallery-main {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.gallery-secondary img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.gallery-secondary img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Títulos modernos */
.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.1);
}

/* Meetings Section */
.meetings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.meetings-section {
    padding: 6rem 0;
    background-color: white;
}

.meetings-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 1rem;
}

.meetings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.meeting-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.meeting-card.highlight {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 1px solid var(--accent-color);
}

.meeting-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.meeting-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.meeting-img-container {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.meeting-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.meeting-card:hover .meeting-img-container img {
    transform: scale(1.1);
}

.meeting-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.meeting-time {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 2;
}

.meeting-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.meeting-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.meeting-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-color);
    flex-grow: 1;
}

.meeting-cta {
    margin-top: 1rem;
}

.btn-primary, .btn-outline {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

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

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

/* Objective Section */
.objective {
    text-align: center;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--text-light);
    margin-bottom: 3rem;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.objective-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.objective-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, var(--light-color));
    -webkit-background-clip: text;
    background-clip: text; /* Propriedade padrão para compatibilidade */
    -webkit-text-fill-color: transparent;
}

/* Animações */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsivo */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding-right: 0;
        order: 2;
    }
    
    .about-gallery {
        order: 1;
        margin-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-secondary {
        grid-template-columns: 1fr;
    }
    
    .gallery-secondary img {
        height: 150px;
    }

    .meetings {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .meeting-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.2rem;
        padding: 0 1rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* CTA no hero */
.hero-cta {
    margin-top: 1.8rem;
    display: flex;
    justify-content: center;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    background-color: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 800;
    border: 2px solid var(--accent-color);
    transition: var(--transition);
}

.btn-hero-cta:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* CTA Banner (Home) */
.cta-banner{
  margin: 2.5rem 0;
}
.cta-inner{
  display:flex;
  gap:1.25rem;
  align-items:center;
  justify-content:space-between;
  padding: clamp(18px, 2.2vw, 28px);
  background: linear-gradient(120deg, rgba(27,38,59,0.95), rgba(193,110,88,0.20));
  border: 1px solid rgba(27,38,59,0.12);
  border-radius: 18px;
  color: var(--text-light);
  box-shadow: var(--shadow);
}
.cta-inner h2{
  font-family: var(--font-heading);
  margin:0 0 0.35rem 0;
}
.cta-inner p{margin:0; max-width: 58ch; opacity:0.95;}
.cta-actions{flex:0 0 auto;}
@media (max-width: 768px){
  .cta-inner{flex-direction:column; align-items:flex-start;}
}
