/* Font Face Declarations */
@font-face {
    font-family: 'Antonio';
    src: url('../fonts/Antonio-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neulis Alt';
    src: url('../fonts/neulis-alt-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neulis Alt';
    src: url('../fonts/neulis-alt-bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Font Classes */
.font-antonio {
    font-family: 'Antonio', sans-serif;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

.font-neulis-alt {
    font-family: 'Neulis Alt', sans-serif;
}

.font-neulis-alt-regular {
    font-family: 'Neulis Alt', sans-serif;
    font-weight: normal;
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B4513 0%, #D2B48C 50%, #8B4513 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loading-screen.hide {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.loading-logo {
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.loading-logo img {
    width: 250px;
    height: 250px;
}

.loading-spinner {
    margin: 2rem 0;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #FFD700;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

.loading-text h2 {
    margin: 1rem 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
}

.loading-text p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.8;
}

.main-site-content {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.main-site-content.show {
    opacity: 1;
}

/* Loading Animations */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Loading Screen */
@media (max-width: 768px) {
    /* .loading-logo img {
        width: 150px;
        height: 150px;
    } */

    .loading-text h2 {
        font-size: 1.5rem;
    }

    .spinner {
        width: 40px;
        height: 40px;
    }
}

.font-neulis-alt-bold {
    font-family: 'Neulis Alt', sans-serif;
    font-weight: bold;
}

.cor-amarelo {
    color: #F4AA3F;
}

.cor-marrom {
    color: #603813;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

html {
    scroll-behavior: smooth;
}


/* Header */
.header {
    background-image: url(../imgs/fundo1.png);
    /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(139, 69, 19, 0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23654321" width="100" height="100"/></svg>'); */
    background-size: cover;
    background-position: center;
    height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.coffee-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(139, 69, 19, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(101, 67, 33, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.nav {
    position: absolute;
    top: 30px;
    width: 100%;
    text-align: center;
    z-index: 1000;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
    list-style: none;
    display: inline-flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #F4AA3F;
    transform: translateY(-2px);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #F4AA3F;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav a:hover::after {
    width: 100%;
}

nav.nav {
    font-weight: bold;
}

.hero-content {
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
}

.img-logo {
    max-width: 500px;
}

.hero-content div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

.header-title:first-child {
    margin-right: 20px;
}

.header-title {
    font-size: 3em;
    font-weight: bold;
    line-height: 1.2;
}

.main-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.subtitle {
    font-size: 1.2rem;
    color: #D2691E;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.location {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.tagline {
    background: rgba(210, 105, 30, 0.9);
    padding: 15px 30px;
    border-radius: 25px;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.tagline:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Event Info Section */
.event-info {
    background: linear-gradient(45deg, #D2691E, #FF8C42);
    padding: 60px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.event-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite;
}

.container-patrocionio {
    text-align: center;
    background-image: url(../imgs/BG_3.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0;
}

.container-patrocionio .patron-text {
    text-decoration: underline;
    color: #fff;
    font-weight: bold;
    font-size: 2.5em;
}

.container-event {
    background-color: #fff;
    background-image: url(../imgs/ICON_EMOJI.png);
    background-position: -140px 33px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 20px;
}

.container-event img {
    width: 300px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.container {
    position: relative;
    z-index: 2;
}

.patron-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-date {
    font-size: 4.5rem;
    letter-spacing: -2px;
    text-align: center;
    line-height: 1.2;
}

.event-location {
    font-size: 2.4em;
    line-height: 1.2;
    font-weight: bold;
}

/* Experience Days */
.experience-days {
    background: #C69C6D;
    text-align: center;
}

.experience-title {
    font-size: 2.8rem;
    color: #fff;
    padding: 40px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.experience-categories {
    display: flex;
    justify-content: center;
    align-items: center;
}

.category {
    background-image: url(../imgs/BG_4.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: default;
    width: 100%;
    padding: 20px 0;
    font-size: 1.5em;
}

/* Main Content */
.main-content {
    background: #fff;
    text-align: center;
}

.main-content-title {
    background-image: url(../imgs/fundo2.png);
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 3.3em;
    line-height: 1.7em;
    letter-spacing: -2.3px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;

}

.main-content-title h1 {
    text-align: start;
    text-transform: uppercase;
    color: #fff;
}

/* Stats Section */
.stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 0 70px 0;
}

.stats-title {
    font-size: 4em;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 5rem;
    font-weight: bold;
    display: block;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
}

.stats-item,
.stats-number {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.stats-descricao,
.stats-objetivos {
    text-align: start !important;
    font-family: "Roboto", Sans-serif;
}

.stats-descricao {
    padding-top: 40px;
}

.stat-label {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 0.3em;
}

/* Features Section */
.features {
    /* background: #2C1810; */
    background-image: url(../imgs/fundo3.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    padding: 30px 0;
}

.features .container {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
}

.atracoes-img {
    max-width: 500px;
}

.features h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.feature-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 18px;
    border-radius: 15px;
    border-left: 4px solid #0000007c;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
}

i.fas,
i.fa-solid {
    margin: 0 !important;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(210, 105, 30, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.feature-item:hover::before {
    animation: shine 0.8s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(210, 105, 30, 0.2);
}

.feature-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

/* PROGRAMAÇÃO SECTION */
.programacao {
    text-align: center;
    padding: 60px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.programacao-title {
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.programacao-title h1:first-child {
    font-size: 4em;
    line-height: 1em;
}

.programacao-title h1:nth-child(2) {
    font-size: 2.8em;
    line-height: 1.7em;
}

.programacao-title h1:nth-child(3) {
    font-size: 1.8em;
    line-height: 0.3em;
}

.programacao-dia {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.programacao-dia fieldset {
    border-radius: 10px;
    border: 1px solid #C69C6D;
    padding: 30px;
    width: 100%;
    margin-bottom: 20px;
}

.programacao-dia-title {
    background-color: #F4AA3F;
    padding: 15px 20px;
    border-radius: 60px;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.programacao-dia-horario {
    background-color: #E7E7E7;
    padding: 10px;
    text-align: start;
    margin-bottom: 15px;
    font-size: 1.6em;
    line-height: 1.3em;
    border-radius: 4px;
    width: 100%;
}

.programacao-dia-horario:last-child {
    margin-bottom: 0;
}

.programacao-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    width: 100%;
}

.programacao-info-texto {
    background-image: url(../imgs/vvv-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 400px;
}

.programacao-info-lista {
    background-image: url(../imgs/v2.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 400px;
    pad: 30px;
}

.programacao-info-lista div {
    padding: 10px 15px;
    background-color: #0000006b;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 500px;
}

.programacao-info-lista div:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    background-image: url(../imgs/fund54454.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 0px;
    line-height: 1.2em;
}

.cta-button {
    background: white;
    color: #D2691E;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

/* Footer */
.footer {
    /* background: #1a0f0a; */
    background-image: url(../imgs/fun4.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
    text-align: center;
    color: white;
}

.footer-info-content {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #D2691E;
}

.footer-info-1 {
    font-size: 3rem;
    word-spacing: 1px;
    line-height: 1.3em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    text-align: end;
}

.footer-info-2 {
    font-size: 3.5rem;
    word-spacing: 1px;
    line-height: 0.5em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-info-2-location {
    font-size: 0.43em !important;
}

.sponsors-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

img.img-logo-footer {
    width: 300px;
}

.free-entry>img {
    max-width: 300px;
}

/* Location and Contact Section */
.localizacao-email {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.location-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Maps Container */
.maps-container h3,
.contact-form-container h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-section {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.map-section h3 {
    background: linear-gradient(135deg, #603813, #8B4513);
    color: white;
    margin: 0;
    padding: 20px;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 0;
}

.map-container {
    position: relative;
    overflow: hidden;
    margin: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.location-info {
    padding: 25px;
    background: #f8f8f8;
    border-top: 3px solid #D4AF37;
}

.location-details h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-details p {
    color: #603813;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-details p i {
    font-size: 1.2rem;
}

.location-actions {
    text-align: center;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.location-btn:hover {
    background: linear-gradient(135deg, #B8941F, #9A7A1A);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: white;
    text-decoration: none;
}

.location-btn i {
    font-size: 1.1rem;
}

/* Contact Form */
.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 27px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #603813;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F4AA3F;
    background: white;
    box-shadow: 0 0 0 3px rgba(244, 170, 63, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #F4AA3F 0%, #e89a2f 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 170, 63, 0.4);
    background: linear-gradient(135deg, #e89a2f 0%, #d88a1f 100%);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Messages */
.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */

/* Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .header {
        height: 600px;
    }

    .img-logo {
        max-width: 400px;
    }

    .header-title {
        font-size: 2.5em;
    }

    .hero-content {
        gap: 30px;
        flex-direction: column;
        text-align: center;
    }

    .hero-content div {
        align-items: center;
    }

    .container-event {
        flex-direction: column;
        gap: 20px;
        padding: 40px 20px;
    }

    .event-date {
        font-size: 3.5rem;
    }

    .event-location {
        font-size: 1.8em;
    }

    .experience-title {
        font-size: 2.2rem;
        padding: 30px 20px;
    }

    .main-content-title {
        font-size: 2.8em;
        padding: 60px 20px;
    }

    .stats-title {
        font-size: 3em;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .stat-label {
        font-size: 1.5rem;
    }

    .features h2 {
        font-size: 2.8rem;
        margin-bottom: 30px;
    }

    .features .container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .atracoes-img {
        max-width: 400px;
    }

    .programacao-title h1:first-child {
        font-size: 3em;
    }

    .programacao-title h1:nth-child(2) {
        font-size: 2.2em;
    }

    .programacao-title h1:nth-child(3) {
        font-size: 1.5em;
    }

    .programacao-dia {
        max-width: 700px;
        padding: 0 20px;
    }

    .programacao-info {
        flex-direction: column;
    }

    .cta h2 {
        font-size: 2.8rem;
        padding: 0 20px;
    }

    .footer-info-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-info {
        font-size: 2rem;
    }

    .img-logo-footer {
        width: 250px;
    }

    /* Location and Contact Section - Tablets */
    .section-title {
        font-size: 2.8rem;
        margin-bottom: 40px;
    }

    .location-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .maps-container h3,
    .contact-form-container h3 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .map-section h3 {
        font-size: 1.5rem;
        padding: 15px;
    }

    .location-info {
        padding: 20px;
    }

    .location-details h4 {
        font-size: 1.3rem;
    }

    .location-details p {
        font-size: 1rem;
    }

    .location-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .contact-form-container {
        padding: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        gap: 20px;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav a {
        font-size: 16px;
        padding: 10px;
        display: block;
    }

    .header {
        height: 500px;
        padding: 20px;
    }

    .img-logo {
        max-width: 250px;
    }

    .header-title {
        font-size: 1.8em;
        text-align: center;
    }

    .hero-content {
        gap: 20px;
        flex-direction: column;
    }

    .container-patrocionio .patron-text {
        font-size: 1.8em;
        padding: 0 20px;
    }

    .container-event {
        padding: 30px 20px;
    }

    .container-event img {
        width: 200px;
    }

    .event-date {
        font-size: 2.5rem;
    }

    .event-location {
        font-size: 1.4em;
    }

    .experience-title {
        font-size: 1.8rem;
        padding: 20px;
        line-height: 1.3;
    }

    .experience-categories {
        flex-direction: column;
    }

    .category {
        font-size: 1.2em;
        padding: 15px;
    }

    .main-content-title {
        font-size: 2em;
        line-height: 1.3;
        padding: 40px 20px;
    }

    .stats {
        padding: 20px;
    }

    .stats-title {
        font-size: 2.5em;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1.2rem;
    }

    .stats-descricao,
    .stats-objetivos {
        font-size: 0.9rem;
        padding: 15px;
    }

    .features {
        padding: 20px 0;
    }

    .features h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        padding: 0 20px;
    }

    .features .container {
        padding: 0 20px;
    }

    .atracoes-img {
        max-width: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }

    .feature-item i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    /* .programacao {
        padding: 40px 0;
    } */

    .programacao-title h1:first-child {
        font-size: 2.5em;
    }

    .programacao-title h1:nth-child(2) {
        font-size: 1.8em;
    }

    .programacao-title h1:nth-child(3) {
        font-size: 1.2em;
    }

    .programacao-dia {
        max-width: 100%;
    }

    .programacao-dia fieldset {
        padding: 20px;
        margin-bottom: 15px;
    }

    .programacao-dia-title {
        font-size: 1.5em;
        padding: 12px 16px;
    }

    .programacao-dia-horario {
        font-size: 1.2em;
        padding: 12px;
        margin-bottom: 10px;
    }

    .programacao-info-texto,
    .programacao-info-lista {
        height: 300px;
        padding: 20px;
    }

    .programacao-info-lista div {
        padding: 8px 12px;
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .cta {
        padding: 20px 0;
    }

    .cta h2 {
        font-size: 2rem;
        padding: 0 20px;
    }

    .footer {
        padding: 30px 20px;
    }

    .footer-info {
        font-size: 1.5rem;
        text-align: center;
    }

    .img-logo-footer {
        width: 200px;
    }

    .free-entry>img {
        max-width: 200px;
    }

    /* Location and Contact Section - Mobile */
    .localizacao-email {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .location-contact-grid {
        gap: 30px;
        padding: 0 20px;
    }

    .maps-container h3,
    .contact-form-container h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .map-section h3 {
        font-size: 1.4rem;
        padding: 12px;
    }

    .map-container {
        margin: 15px;
    }

    .map-container iframe {
        height: 250px;
    }

    .location-info {
        padding: 15px;
    }

    .location-details h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .location-details p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .location-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .contact-form-container {
        padding: 25px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .programacao-info-texto {
        font-size: 0.8em;
    }

    .nav ul {
        gap: 10px;
    }

    .header {
        height: 400px;
    }

    .img-logo {
        max-width: 200px;
    }

    .header-title {
        font-size: 1.5em;
    }

    .container-patrocionio .patron-text {
        font-size: 1.5em;
    }

    .event-date {
        font-size: 2rem;
    }

    .event-location {
        font-size: 1.2em;
    }

    .experience-title {
        font-size: 1.5rem;
    }

    .category {
        font-size: 1em;
        padding: 12px;
        border-bottom: 1px solid #4d3d34;
    }

    .footer-info-1 {
        font-size: 1.8em;
    }

    .footer-info-2 {
        font-size: 2.4rem;
    }

    .slide-up {
        text-align: center;
    }

    .container-event {
        justify-content: center;
        align-items: center;
    }

    .main-content-title {
        font-size: 1.8em;
        padding: 30px 15px;
    }

    .stats-title {
        font-size: 2em;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .features h2 {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .atracoes-img {
        max-width: 250px;
    }

    .feature-item {
        padding: 12px;
    }

    .programacao-title h1:first-child {
        font-size: 2em;
    }

    .programacao-title h1:nth-child(2) {
        font-size: 1.5em;
    }

    .programacao-title h1:nth-child(3) {
        font-size: 1em;
    }

    .programacao-dia-title {
        font-size: 1.2em;
        padding: 10px 14px;
    }

    .programacao-dia-horario {
        font-size: 1em;
        padding: 10px;
    }

    .cta h2 {
        font-size: 1.6rem;
    }

    .footer-info {
        font-size: 1.2rem;
    }

    .img-logo-footer {
        width: 150px;
    }

    /* Location and Contact Section - Small Mobile */
    .localizacao-email {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .location-contact-grid {
        gap: 25px;
        padding: 0 15px;
    }

    .maps-container h3,
    .contact-form-container h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .map-section h3 {
        font-size: 1.2rem;
        padding: 10px;
    }

    .map-container {
        margin: 10px;
    }

    .map-container iframe {
        height: 200px;
    }

    .location-info {
        padding: 12px;
    }

    .location-details h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .location-details p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .location-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .contact-form-container {
        padding: 20px;
    }

    .form-group {
        gap: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.85rem;
    }

    .submit-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 1s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Coffee Bean Animation */
.coffee-bean {
    position: absolute;
    width: 10px;
    height: 15px;
    background: #8B4513;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: float-bean 6s infinite linear;
}

@keyframes float-bean {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}