@import"https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";

*:not(i) {
    font-family: Poppins, sans-serif
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px
}

body {
    color: #fff;
    background: url('back.png') center/cover no-repeat fixed;
    min-height: 100vh;
    font-family: Poppins, sans-serif;
    line-height: 1.6
}

.navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: transparent;
    transition: background .4s ease, box-shadow .4s ease
}

.navbar.scrolled {
    background: #000000eb;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px #0000004d
}

.nav-container {
    max-width: 1280px;
    width: 92%;
    margin: auto;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo img {
    height: clamp(50px, 8vw, 70px);
    width: auto
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-links a {
    position: relative;
    padding-bottom: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s ease
}

.nav-links a:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #caa34d;
    border-radius: 2px;
    transform: translate(-50%);
    transition: width .35s ease
}

.nav-links a:hover,
.nav-links a.active {
    color: #caa34d
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: #0009;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
    z-index: 998
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto
}

.close-menu {
    display: none;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #caa34d;
    cursor: pointer;
    transition: transform .25s ease
}

.close-menu:hover {
    transform: rotate(90deg)
}

@media(max-width:900px) {
    .menu-toggle {
        display: flex
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right .45s ease;
        z-index: 999
    }

    .nav-links.active {
        right: 0
    }

    .nav-links a {
        font-size: 1.3rem;
        padding: .75rem 1.2rem
    }

    .nav-links a.active {
        background: #caa34d26;
        border-radius: 8px
    }

    .nav-links a:after {
        display: none
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 1.2rem;
        right: 1.2rem
    }
}

.hero {
    min-height: 100vh;
    min-height: 100svh;
    height: auto;
    background-image: url('img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(4rem, 8vw, 6rem) 1rem
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #00000073, #0009);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    text-align: center;
    padding: clamp(1.5rem, 4vw, 3rem);
    color: #fff
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 1.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: clamp(1rem, 2vw, 2rem);
    letter-spacing: -.02em
}

.hero-content p {
    font-size: clamp(1rem, 3.5vw, .25rem);
    line-height: 1.6;
    margin: 0 auto
}

.hero-content p strong {
    color: #caa34d
}

@media(max-width:480px) {
    .hero {
        padding-top: 6rem;
        padding-bottom: 4rem
    }

    .hero-content h1 {
        line-height: 1.15
    }
}

.about-container {
    max-width: 1400px;
    width: 90%;
    margin: 4rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center
}

.about-content {
    padding: 1rem 0
}

.about-content h2 {
    color: #4b6b50;
    font-size: clamp(1rem, 5vw, 1.6rem);
    font-weight: 600;
    margin-bottom: 1.8rem;
    line-height: 1.2
}

.about-content h4 {
    color: #222;
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    font-weight: 400;
    margin-bottom: 1.2rem
}

.about-content p {
    color: #333;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.8rem
}

.about-content h4 strong,
.about-content p strong {
    color: #d4af37;
    font-weight: 500
}

.about-image img {
    width: 100%;
    margin-top: 1rem
}

.about-button {
    display: inline-block;
    padding: .9rem 2.2rem;
    background: #caa34d;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all .3s ease;
    box-shadow: 0 4px 15px #caa34d40
}

.about-button:hover {
    background: #d4af37;
    box-shadow: 0 6px 20px #d4af3759
}

.about-button:active {
    transform: translateY(-1px)
}

@media(max-width:900px) {
    .about-image img {
        width: 60%;
        margin-top: 1rem
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center
    }

    .about-image {
        order: -1
    }
}

@media(max-width:576px) {
    .about-image img {
        width: 60%;
        margin-top: 1rem
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin: 3rem auto
    }

    .about-content {
        text-align: center;
        padding: 0 1rem
    }

    .about-button {
        width: 100%;
        max-width: 320px;
        padding: 1rem 2rem
    }
}

@media(max-width:768px) {
    .about-image img {
        width: 60%;
        margin-top: 1rem
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        margin: 4rem auto
    }

    .about-content h2 {
        font-size: 2.1rem
    }
}

@media(min-width:769px)and (max-width:992px) {
    .about-image img {
        width: 60%;
        margin-top: 1rem
    }

    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        width: 92%
    }
}

@media(min-width:993px)and (max-width:1200px) {
    .about-image img {
        width: 60%;
        margin-top: 1rem
    }

    .about-container {
        gap: 3.5rem;
        width: 90%
    }
}

@media(min-width:1201px) {
    .about-container {
        width: 88%;
        max-width: 1400px;
        gap: 5rem
    }
}

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

.eventos-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: clamp(3rem, 8vw, 5rem)
}

.eventos-titulo h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: #3f5f46;
    font-weight: 700;
    text-align: center;
    margin-bottom: .5rem
}

.eventos-titulo p {
    text-align: center;
    color: #666;
    font-style: italic;
    font-size: 1rem
}

.evento-decor {
    width: clamp(50px, 10vw, 90px);
    height: auto;
    filter: sepia(.2)
}

.eventos-row {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center
}

.row-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))
}

.row-3 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 280px))
}

.evento-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all .3s ease
}

.evento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px #3f5f4626
}

.img-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.evento-card img {
    width: 100%;
    height: auto;
    object-fit: contain
}

.evento-card span {
    font-size: 1.05rem;
    color: #3f5f46;
    font-weight: 600;
    text-align: center
}

@media(max-width:768px) {
    .evento-decor {
        display: none
    }

    .eventos-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem
    }

    .evento-card {
        padding: 1rem
    }
}

@media(max-width:480px) {
    .eventos-row {
        grid-template-columns: 1fr !important
    }
}

.video-section {
    padding: 4rem 5%;
    display: flex;
    justify-content: center;
    background: #f4f4f4
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    box-shadow: 0 15px 35px #0003;
    background: #000
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0003;
    z-index: 10;
    transition: opacity .4s ease
}

.video-container.playing .video-overlay {
    opacity: 0;
    pointer-events: none
}

.play-button {
    width: 70px;
    height: 70px;
    background: #caa34d;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px #0000004d
}

.why-section {
    border-radius: 12px;
    margin: 4rem auto
}

.why-title {
    text-align: center;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: #4b6b50;
    margin-bottom: clamp(2rem, 4vw, 4rem);
    font-weight: 600
}

.why-content {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
    position: relative;
    z-index: 2
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.6rem;
    transition: transform .3s ease
}

.why-list li:hover {
    transform: translate(8px)
}

.why-list img {
    width: clamp(22px, 5vw, 28px);
    height: auto;
    margin-top: 6px;
    flex-shrink: 0
}

.why-list span {
    font-size: clamp(1.05rem, 2.6vw, 1.18rem);
    color: #333;
    line-height: 1.65;
    font-weight: 400
}

.why-list span strong {
    color: #d4af37;
    font-weight: 600
}

.why-image {
    position: relative
}

.why-image img {
    width: 100%;
    border-radius: 12px;
    height: auto
}

@media(max-width:900px) {
    .why-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3.5rem
    }

    .why-image {
        order: -1
    }
}

@media(max-width:576px) {
    .why-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin: 3rem auto
    }

    .why-image img {
        width: 80%;
        margin: 0 auto
    }
}

@media(max-width:768px) {
    .why-content {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        margin: 4rem auto
    }

    .why-image img {
        width: 70%;
        margin: 0 auto
    }
}

@media(min-width:769px)and (max-width:992px) {
    .why-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        width: 92%
    }

    .why-image img {
        width: 100%;
        margin: 0
    }
}

@media(min-width:993px)and (max-width:1200px) {
    .why-content {
        gap: 3.5rem;
        width: 90%
    }

    .why-image img {
        width: 100%;
        margin: 0
    }
}

@media(min-width:1201px) {
    .why-content {
        width: 88%;
        max-width: 1400px;
        gap: 5rem
    }

    .why-image img {
        width: 100%;
        margin: 0
    }
}

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px #00000026;
    object-fit: cover;
    transition: transform .5s ease
}

.why-image:hover img {
    transform: scale(1.03)
}

.contact-section {
    padding: clamp(4rem, 8vw, 6rem) 0
}

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

.header {
    text-align: center;
    margin-bottom: 3rem
}

.header h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #4b6b50;
    font-weight: 700;
    margin-bottom: .5rem
}

.header p {
    color: #666;
    font-style: italic
}

.contact-form {
    width: 100%
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem
}

input,
textarea {
    width: 100%;
    padding: 1.1rem 1.4rem;
    border: 1.5px solid #caa34d;
    border-radius: 10px;
    background: none;
    font-size: 1rem;
    color: #333;
    transition: all .3s ease
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #caa34d;
    box-shadow: 0 8px 20px #caa34d1a
}

.form-group.full-width {
    grid-column: span 2;
    margin-top: 1.5rem
}

textarea {
    resize: none;
    min-height: 180px
}

.submit-btn {
    display: block;
    margin: 2.5rem auto 0;
    padding: 1.2rem 3.5rem;
    background: #4b6b50;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 10px 20px #4b6b5026
}

.submit-btn:hover {
    background: #caa34d;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px #caa34d33
}

@media(max-width:768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .form-group.full-width {
        grid-column: span 1;
        margin-top: .5rem
    }

    .submit-btn {
        width: 100%
    }
}

.footer {
    background: #4f6f52;
    color: #fff;
    font-family: Poppins, sans-serif;
    padding: clamp(3.5rem, 8vw, 5.5rem) 5vw 2rem
}

.footer-container {
    max-width: 1280px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: flex-start
}

.footer-brand {
    max-width: 380px
}

.footer-logo {
    width: clamp(160px, 28vw, 220px);
    height: auto;
    margin-bottom: 1.5rem
}

.footer-brand p {
    font-size: clamp(.92rem, 2.2vw, 1rem);
    line-height: 1.8;
    color: #e6e6e6;
    margin: 0
}

.footer-brand p strong {
    color: #d4af37;
    font-weight: 500
}

.footer-column h4 {
    font-size: clamp(1.05rem, 2.5vw, 1.18rem);
    margin-bottom: 1.4rem;
    font-weight: 600;
    color: #fff
}

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

.footer-column li {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    margin-bottom: .9rem
}

.footer-column img {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    flex-shrink: 0
}

.footer-column span,
.footer-column a {
    font-size: clamp(.9rem, 2vw, .98rem);
    color: #f1f1f1;
    text-decoration: none;
    transition: color .3s ease
}

.footer-column a:hover {
    color: #d4af37
}

.footer-bottom {
    margin-top: clamp(3rem, 6vw, 4.5rem);
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, .18);
    text-align: center;
    font-size: clamp(.82rem, 2vw, .9rem);
    color: #d0d0d0
}

@media(max-width:992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 500px;
        margin-bottom: 1rem
    }
}

@media(max-width:768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.8rem
    }

    .footer-brand {
        grid-column: 1 / -1
    }
}

@media(max-width:576px) {
    .footer {
        padding: 3.5rem 6vw 2rem
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .footer-brand {
        text-align: center;
        max-width: 100%
    }

    .footer-logo {
        margin: 0 auto 1.5rem
    }

    .footer-column {
        text-align: center
    }

    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .footer-column li {
        justify-content: center
    }

    .footer-bottom {
        padding-top: 2rem
    }
}

@media(max-width:400px) {
    .footer-logo {
        width: 140px
    }

    .footer-column img {
        width: 16px;
        height: 16px
    }
}

.galeria-section {
    padding: clamp(3rem, 8vw, 6rem) 0
}

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

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem
}

.galeria-card {
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 4px 15px #0000000d;
    transition: transform .3s ease, box-shadow .3s ease
}

.galeria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px #0000001f
}

.img-container {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #eee
}

.galeria-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.33, 1, .68, 1)
}

.galeria-card:hover img {
    transform: scale(1.1)
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .6), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity .3s ease
}

.galeria-card:hover .overlay {
    opacity: 1
}

.overlay span {
    color: #fff;
    font-size: .9rem;
    font-weight: 500
}

@media(max-width:768px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem
    }

    .img-container {
        height: 200px
    }
}

@media(max-width:480px) {
    .galeria-grid {
        grid-template-columns: 1fr
    }

    .img-container {
        height: 250px
    }
}