/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-image: url('img/fundo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #1a1a2e;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header / Banner */
.banner-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}



.banner-img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

/* Divisor */
.divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, #764ba2, #f093fb, #f5576c, transparent);
    margin: 0 auto;
    opacity: 0.3;
    max-width: 980px;
}

/* Seção de Localização */
.location-section {
    text-align: center;
    color: white;
    padding: 2rem 0;
    margin-top: 15px;
}

.location-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.address {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 300;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
   background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4);
}

/* Seção Intro */
.intro-section {
    padding: 30px 20px;
    text-align: center;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 15px;

}

.intro-section h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c, #667eea);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 3s linear infinite;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.intro-text {
    font-size: 1.3rem;
    color: #555;
    font-weight: 400;
}

.intro-text strong {
    color: #764ba2;
    font-weight: 600;
}

/* Seção de Informações do Evento */
.event-info-section {
    padding: 30px 20px;
}

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

.event-card {
    background: rgba(255, 255, 255, 0.055);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.event-card h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 800;
}

.event-date {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 30px;
    display: block;
}

.location-name {
    font-size: 1.5rem;
    color: #fcfcfc;
    font-weight: 600;
    line-height: 1.5;
}

/* Programação */
.program-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.program-item {
    background: linear-gradient(135deg, #667eea5d 0%, #764ba29d 100%);
    padding: 20px;
    border-radius: 10px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.program-date {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.program-artist {
    font-size: 1.3rem;
    font-weight: 700;
}

/* Card de Ingressos */
.ticket-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ticket-text {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.6;
}

.ticket-date {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 30px;
}

.btn-ticket {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    width: 100%;
    max-width: 300px;
}

.btn-ticket:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4);
}

/* Seção de Expositores */
.exhibitors-section {
    background: rgba(255, 255, 255, 0.055);
    padding: 30px 20px;
    text-align: center;
    margin: 5px auto;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.exhibitors-section h2 {
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
}

.exhibitors-text {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.plant-image {
    max-width: 80%;
    width: 100%;
    height: auto;
    margin: 20px auto 30px;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 10px;
    margin-top: 60px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 10px;
}

.logo-group {
    text-align: center;
}

.logo-label {
    font-size: 1rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 15px;
}

.logos-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 2px solid #e0e0e0;
    padding-top: 5px;
    text-align: center;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #666;
}

.copyright p {
    font-size: 0.7rem;
}

.developer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.7rem;
}

.dev-link {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.dev-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.belmira-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Responsividade */

/* Tablets */
@media (max-width: 768px) {
    .apresentacao-card {
        top: 10px;
        padding: 12px 30px;
    }

    .apresentacao-card p {
        font-size: 1rem;
    }

    .intro-section h1 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .location-content h2 {
        font-size: 1.6rem;
    }

    .address {
        font-size: 1rem;
    }

    .event-card {
        padding: 30px;
    }

    .event-card h3 {
        font-size: 1.5rem;
    }

    .event-date {
        font-size: 2rem;
    }

    .location-name {
        font-size: 1.3rem;
    }

    .program-artist {
        font-size: 1.1rem;
    }

    .exhibitors-section h2 {
        font-size: 1.8rem;
    }

    .exhibitors-text {
        font-size: 1rem;
    }

    .plant-image {
        width: 100%;
        max-width: 100%;
        margin: 15px auto 25px;
        border-radius: 8px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .footer-logo {
        height: 50px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .header {
        padding: 1px 0;
    }

    .apresentacao-card {
        top: 10px;
        padding: 10px 20px;
    }

    .apresentacao-card p {
        font-size: 0.85rem;
    }

    .banner-img {
        border-radius: 5px;
    }

    .location-section {
        padding: 10px 15px;
    }

    .location-content h2 {
        font-size: 1.4rem;
    }

    .address {
        font-size: 0.9rem;
    }

    .intro-section {
        margin: 10px 15px;
    }

    .intro-section h1 {
        font-size: 1.5rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .event-info-section {
        padding: 10px 15px;
    }

    .event-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-card {
        padding: 25px;
    }

    .event-card h3 {
        font-size: 1.3rem;
    }

    .event-date {
        font-size: 1.8rem;
    }

    .location-name {
        font-size: 1.1rem;
    }

    .program-item {
        padding: 15px;
    }

    .program-date {
        font-size: 0.9rem;
    }

    .program-artist {
        font-size: 1rem;
    }

    .exhibitors-section {
        padding: 10px 15px;
        margin: 20px 15px;
    }

    .exhibitors-section h2 {
        font-size: 1.5rem;
    }

    .exhibitors-text {
        font-size: 0.95rem;
    }

    .plant-image {
        width: 100%;
        max-width: 100%;
        margin: 10px auto 20px;
        border-radius: 5px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .footer {
        padding: 10px 15px 20px;
        margin-top: 40px;
    }

    .footer-logos {
        gap: 30px;
    }

    .logo-label {
        font-size: 0.7rem;
    }

    .logos-row {
        gap: 10px;
    }

    .footer-logo {
        height: 20px;
    }

    .copyright p,
    .developer-info {
        font-size: 0.6rem;
    }

    .belmira-logo {
        height: 25px;
    }
}

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

@keyframes gradient-flow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.intro-section,
.event-card,
.exhibitors-section {
    animation: fadeIn 0.6s ease-out;
}
