/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.link-animado {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.link-animado::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #e67e22;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.link-animado:hover {
    color: #d35400;
}

.link-animado:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 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: 20px;
}

.logo {
    font-size: 24px;
    color: rgb(58, 58, 58);
    /*alterar cor aqui*/
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease;
}

.logo::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #e67e22;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover {
    color: #d35400;
}

.logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: rgb(58, 58, 58);
    /*alterar cor aqui*/
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #e67e22;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: rgb(58, 58, 58);
    /*alterar cor aqui*/
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 50px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #d35400;
    color: #fff;
}

.btn:active {
    background-color: #d35400 !important;
    color: #fff !important;
    border: 0px !important;
}

.btn-submit {
    border: 0px;
    cursor: pointer;
}

/* Sobre Section */
.sobre {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: rgb(58, 58, 58);
    /*alterar cor aqui*/
    font-size: 36px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #e67e22;
    margin: 15px auto 0;
}

.title-h4::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #e67e22;
    margin: 15px auto 0;
}

.sobre-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.sobre-text {
    flex: 1;
}

.sobre-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.sobre-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sobre-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Galeria Section */
.galeria {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 3/2;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.galeria-item:hover img {
    transform: scale(1.05);
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.galeria-item:hover .galeria-overlay {
    transform: translateY(0);
}

.galeria-overlay h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.galeria-overlay p {
    font-size: 14px;
}

/* Eventos Section */
.eventos {
    padding: 80px 0;
    background-color: #fff;
}

.eventos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.evento-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.evento-card:hover {
    transform: translateY(-10px);
}

.evento-img {
    opacity: 90%;
    height: 100px;
    margin: 40px;
    overflow: hidden;
}

.evento-img img {
    width: 100%;
    height: 100%;
}

.evento-content {
    padding: 20px;
}

.evento-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: rgb(58, 58, 58);
    /*alterar cor aqui*/
}

.evento-content p {
    margin-bottom: 15px;
    color: #555;
}

/* Contato Section */
.contato {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contato-container {
    display: flex;
    gap: 40px;
}

.contato-info {
    flex: 1;
}

.contato-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: rgb(58, 58, 58);
    /*alterar cor aqui*/
}

.contato-info p {
    margin-bottom: 15px;
}

.contato-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contato-info-item i {
    font-size: 20px;
    color: #e67e22;
    margin-right: 15px;
}

.contato-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control,
.form-control:focus,
.form-control:hover {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 40px;
    font-family: inherit;
    font-size: 16px;
    box-shadow: none;
    outline: none;
}

textarea.form-control {
    height: 150px;
    border-radius: 20px !important;
    resize: vertical;
}

/* Footer */
footer {
    background-color: rgb(58, 58, 58);
    /*alterar cor aqui*/
    color: #fff;
    padding: 50px 0 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

/* .footer-col h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #e67e22;
    margin-top: 10px;
} */

.footer-col p {
    margin-bottom: 15px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: gray;
    font-size: 18px;
    transition: background-color 0.3s;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgb(220, 220, 220);
    font-size: 14px;
}

footer .container p {
    color: gray;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    padding: 40px;
    overflow: auto;
}

.lightbox-content {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.lightbox-img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.swal2-popup {
    border-radius: 20px !important;
}

/* Responsividade */
@media (max-width: 992px) {
    .sobre-content {
        flex-direction: column;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .evento-card {
        flex: 0 0 calc(50% - 15px);
    }

    .contato-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .evento-card {
        flex: 0 0 100%;
    }

    section h1,
    section h2,
    section h3,
    section h4,
    section .btn {
        text-align: center;

    }

    .sobre-content {
        flex-direction: column;
    }

    .sobre-text {
        order: 2;
    }

    .sobre-image {
        order: 1;
    }

    .sobre-text {
        text-align: center;
    }

    .sobre-text .btn {
        display: inline-block;
        /* ou block se quiser largura total */
        margin: 1rem auto 0 auto;
        /* centraliza horizontalmente */
    }

    .sobre-text p {
        text-align: justify;
    }
}


@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
        text-align: center;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        padding: 10px 20px;
    }

    section h1,
    section h2,
    section h3,
    section h4,
    section .btn {
        text-align: center;

    }

    .sobre-content {
        flex-direction: column;
    }

    .sobre-text {
        order: 2;
    }

    .sobre-image {
        order: 1;
    }

    .sobre-text {
        text-align: center;
    }

    .sobre-text .btn {
        display: inline-block;
        /* ou block se quiser largura total */
        margin: 1rem auto 0 auto;
        /* centraliza horizontalmente */
    }

    .sobre-text p {
        text-align: justify;
    }

}