@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.logo span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #7f8c8d;
    display: block;
}

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

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

nav ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #3498db;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 2px 0;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
   
    background:  url('Imagens/menu.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #3498db;
}

.btn:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #2c3e50;
}

/* Activities Section */
.activities {
    padding: 5rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

.activities h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.card p {
    color: #7f8c8d;
}

/* Events Section */
.events {
    padding: 5rem 0;
    text-align: center;
}

.events h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.event-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.12);
    max-width: 650px;
    margin: 12px auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(52, 152, 219, 0.18);
}

.event-date {
    background: linear-gradient(135deg, #3498db 0%, #2c7fb8 100%);
    color: #fff;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    min-width: 84px;
    flex-shrink: 0;
}

.event-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
}

.event-date .month {
    font-size: 1rem;
    font-weight: 600;
}

.event-info {
    text-align: left;
    margin: 0 1rem;
    flex: 1;
}

.event-actions {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    align-items: stretch;
    min-width: 0;
    flex-shrink: 0;
}

.event-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.event-info p {
    color: #7f8c8d;
}

.event-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #2c7fb8;
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background-color: #eef7ff;
    border: 1px solid #d7ebff;
    min-width: 120px;
    line-height: 1.2;
    white-space: normal;
    transition: all 0.2s ease;
}

.event-link:hover {
    color: #1f5f8b;
    background-color: #dcefff;
    transform: translateY(-1px);
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.social-icons a {
    display: inline-block;
    margin-right: 1rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .event-info {
        text-align: center;
        margin: 1.5rem 0;
    }

    .footer-content {
        flex-direction: column;
    }


}
.logo {
    display: flex;
    align-items: center;
    gap: 15px; /* Espaço entre o logo e o texto */
}

.logo-img {
    height: 60px; /* Ajuste conforme necessário */
    width: auto;
}

.logo-text span {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Versão para mobile */
@media (max-width: 768px) {
    .logo {
        gap: 10px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-text span {
        font-size: 0.8rem;
    }
}

/* Se quiser em uma linha única */
@media (min-width: 769px) {
    .logo-text span {
        white-space: nowrap;
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.about-text .highlight {
    font-weight: 600;
    color: #3498db;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

/* Responsive Design for About Section */
@media (max-width: 968px) {
    .about-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    
    .about-text, .about-image {
        flex: none;
        width: 100%;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
    }
    
    .about-text .highlight {
        font-size: 1rem;
    }
}

/* Submenu Styles */
/* Submenu Styles */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    /* FORÇAR display block e layout vertical */
    display: block;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    margin: 0;
    width: 100%;
    /* FORÇAR display block */
    display: block;
    float: none;
}

.submenu li a {
    display: block;
    padding: 12px 20px;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f1f1f1;
    white-space: nowrap;
    /* FORÇAR display block */
    display: block;
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu li a:hover {
    background-color: #3498db;
    color: #fff;
}

/* Reset para garantir layout vertical */
nav ul, nav ul li, .submenu, .submenu li {
    float: none;
    display: block;
}

nav > ul > li {
    display: inline-block;
    position: relative;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .has-submenu .submenu {
        display: none;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        margin-left: 20px;
        min-width: auto;
    }
    
    .has-submenu.active .submenu {
        display: block;
    }
    
    .submenu li a {
        padding: 10px 0;
        border-bottom: none;
        color: #7f8c8d;
        white-space: normal;
    }
    
    .submenu li a:hover {
        background-color: transparent;
        color: #3498db;
    }
    
    /* Indicador visual de que tem submenu */
    .has-submenu > a::after {
        content: ' ▼';
        font-size: 0.7em;
    }
    
    .has-submenu.active > a::after {
        content: ' ▲';
    }
    
    /* Navigation styles for mobile */
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav ul li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    .has-submenu:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    nav ul {
        display: flex;
        list-style: none;
    }

    nav ul li {
        margin-left: 2rem;
    }
    
    /* Garantir que os itens do menu principal fiquem na horizontal */
    nav > ul > li {
        display: inline-block;
    }
    
    /* Garantir que os subitens fiquem na VERTICAL */
    .submenu li {
        display: block;
        width: 100%;
        clear: both;
    }
}

/* About Section Updates */
.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.about-intro h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.about-subsection {
    margin: 5rem 0;
}

.subsection-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.subsection-content.reverse {
    flex-direction: row-reverse;
}

.subsection-text {
    flex: 1;
}

.subsection-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
}

.subsection-text h4 {
    font-size: 1.5rem;
    color: #3498db;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.subsection-text h5 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 1.5rem 0 0.5rem;
    font-weight: 600;
}

.mission-item {
    margin-bottom: 2rem;
}

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

.value-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.value-item h5 {
    margin-top: 0;
}

.subsection-image {
    flex: 1;
}

.subsection-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.subsection-image img:hover {
    transform: scale(1.02);
}

.join-us {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.join-us .highlight {
    font-weight: 600;
    color: #3498db;
    font-size: 1.3rem;
    margin: 0;
}

/* Responsive Design for About Section */
@media (max-width: 968px) {
    .subsection-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .subsection-content.reverse {
        flex-direction: column;
    }
    
    .subsection-text, .subsection-image {
        flex: none;
        width: 100%;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-intro h2 {
        font-size: 2rem;
    }
    
    .subsection-text h3 {
        font-size: 1.6rem;
    }
    
    .join-us .highlight {
        font-size: 1.1rem;
    }
}

/* Melhorias para animações e transições */
body:not(.loaded) * {
    transition: none !important;
}

.card, .event-card, .value-item, .subsection-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Melhoria na performance das animações */
.card, .event-card, .value-item {
    will-change: transform, opacity;
}

/* Transition para o menu mobile */
nav ul {
    transition: all 0.3s ease-out;
}

/* Loading state improvement */
.loading {
    opacity: 0;
}

.loaded .loading {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Vila de Oiã Section */
.vila-oia {
    padding: 5rem 0;
    text-align: center;
    background-color: #f9f9f9;
}

.vila-oia h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

.park-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.park-images img {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    height: 250px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.park-images img:hover {
    transform: translateY(-10px) scale(1.02);
}

@media (max-width: 768px) {
    .vila-oia {
        padding: 3rem 0;
    }
    
    .vila-oia h2 {
        font-size: 1.8rem;
    }
    
    .park-images {
        flex-direction: column;
        align-items: center;
    }
    
    .park-images img {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 4/3;
    }
}