/* ============================================================
   RESET E ESTILOS GLOBAIS
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Touch-friendly targets */
@media (hover: none) and (pointer: coarse) {
    button, a, .btn {
        min-height: 44px;
        min-width: 44px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 639px) {
    .container {
        padding: 0 15px;
    }
}

/* ============================================================
   TIPOGRAFIA
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #1a1a1a;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #7B1E2B;
    text-align: center;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #7B1E2B;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.section-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: #7B1E2B;
    text-align: center;
    margin-bottom: 1rem;
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   BOTÕES
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    outline: none;
    min-height: 48px;
}

.btn-primary {
    background-color: #7B1E2B;
    color: white;
}

.btn-primary:hover {
    background-color: #601621;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(123, 30, 43, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: #7B1E2B;
    color: white;
    margin-top: 2rem;
}

.btn-secondary:hover {
    background-color: #601621;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(123, 30, 43, 0.3);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 22px 60px;
    font-size: 1.2rem;
}

/* ============================================================
   HEADER/NAVBAR
   ============================================================ */

.navbar {
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    color: #7B1E2B;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #7B1E2B;
}

.cta-nav {
    background-color: #7B1E2B;
    color: white !important;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-nav:hover {
    background-color: #601621;
    box-shadow: 0 5px 15px rgba(123, 30, 43, 0.2);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0;
    background-color: #ffffff;
}

.hero .container {
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: left;
    animation: fadeInUp 1s ease;
    order: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #7B1E2B;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: #333;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    color: #333;
}

.detail-item i {
    font-size: 1.3rem;
    color: #7B1E2B;
    min-width: 24px;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 500px;
    box-shadow: 0 20px 60px rgba(123, 30, 43, 0.2);
    animation: fadeInUp 1s ease 0.2s both;
    order: 2;
    justify-self: end;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Animação fade in up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   SEÇÃO HISTÓRIA MOVIMENTO
   ============================================================ */

.historia-movimento {
    padding: 80px 0;
    background-color: #ffffff;
}

.images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 30, 43, 0) 0%, rgba(123, 30, 43, 0.2) 100%);
    transition: all 0.3s ease;
}

.image-card:hover .image-overlay {
    background: linear-gradient(135deg, rgba(123, 30, 43, 0.1) 0%, rgba(123, 30, 43, 0.3) 100%);
}

/* ============================================================
   SEÇÃO HISTÓRIA INSPIRADORA
   ============================================================ */

.historia-inspiradora {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.historia-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.historia-image {
    position: relative;
    height: 500px;
}

.historia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid #7B1E2B;
    border-radius: 15px;
    pointer-events: none;
}

.historia-content h2 {
    text-align: left;
}

.historia-content p {
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, #7B1E2B 0%, #601621 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 5px solid white;
}

.highlight-box p {
    color: white;
    text-align: center;
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.6;
}

/* ============================================================
   SEÇÃO MÚSICA
   ============================================================ */

.musica-simbolo {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.musica-simbolo .btn-secondary {
    display: block;
    margin: 2rem auto 0 auto;
}

.video-container {
    margin: 3rem 0 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-placeholder {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.video-placeholder iframe {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* ============================================================
   SEÇÃO SOBRE EVENTO
   ============================================================ */

.sobre-evento {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.sobre-content {
    max-width: 900px;
    margin: 0 auto;
}

.highlight-text {
    background: linear-gradient(120deg, #7B1E2B, #601621);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.15rem;
}

/* ============================================================
   SEÇÃO DATA E LOCAL
   ============================================================ */

.data-local {
    position: relative;
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
}

.data-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.data-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 30, 43, 0.85) 0%, rgba(96, 22, 33, 0.85) 100%);
    z-index: 1;
}

.data-local .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.data-local .section-title {
    color: white;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.detail-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.detail-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.detail-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: white;
}

.detail-icon-large i {
    font-size: 3rem;
    color: white;
}

.detail-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.detail-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    word-wrap: break-word;
}

.event-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border-left: 5px solid white;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.event-highlight p {
    margin: 0;
}

.event-highlight i {
    margin-right: 0.5rem;
    color: white;
}

/* ============================================================
   SEÇÃO POR QUE PARTICIPAR
   ============================================================ */

.por-que-participar {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.motivos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.motivo-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 5px solid #7B1E2B;
}

.motivo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(123, 30, 43, 0.2);
}

.motivo-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: #7B1E2B;
}

.motivo-icon i {
    font-size: 3rem;
    color: #7B1E2B;
}

.motivo-card h3 {
    color: #7B1E2B;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.motivo-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================================
   CTA FINAL
   ============================================================ */

.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, #7B1E2B 0%, #601621 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.footer p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

@media (max-width: 480px) {
    .footer p {
        font-size: 0.8rem;
    }

    .footer {
        padding: 2rem 0;
    }
}

/* ============================================================
   RESPONSIVIDADE - SMALL DEVICES (até 480px)
   ============================================================ */

@media (max-width: 480px) {
    body {
        font-size: 14px;
        text-align: center;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .section-text {
        text-align: center;
    }

    .section-intro {
        text-align: center;
    }

    .navbar-content {
        padding: 0.5rem 0;
        justify-content: center;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0.5rem;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .cta-nav {
        padding: 8px 14px;
        font-size: 0.8rem;
        min-height: 40px;
    }

    .hero {
        padding: 30px 0;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .hero-text {
        text-align: center;
        width: 100%;
        order: 1;
    }

    .hero-image {
        height: 200px;
        border-radius: 10px;
        width: 100%;
        order: 2;
        justify-self: auto;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        color: #7B1E2B;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        color: #333;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.6;
        color: #555;
    }

    .hero-details {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .detail-item {
        font-size: 0.8rem;
        justify-content: center;
    }

    .detail-item i {
        font-size: 1.2rem;
        color: #7B1E2B;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.85rem;
        min-height: 44px;
        width: 100%;
        max-width: 250px;
    }

    .btn-xl {
        padding: 14px 28px;
        font-size: 0.9rem;
        min-height: 48px;
        width: 100%;
        max-width: 280px;
    }

    .image-card {
        height: 180px;
    }

    .images-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .detail-box {
        padding: 1.25rem;
        text-align: center;
    }

    .detail-box h3 {
        font-size: 1rem;
    }

    .detail-box p {
        font-size: 0.85rem;
    }

    .detail-icon-large {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        display: block;
        color: white;
    }

    .detail-icon-large i {
        font-size: 2rem;
        color: white;
    }

    .motivos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .motivo-card {
        padding: 1.25rem;
        border-top: 3px solid #7B1E2B;
        text-align: center;
    }

    .motivo-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        display: block;
        color: #7B1E2B;
    }

    .motivo-icon i {
        font-size: 2.5rem;
        color: #7B1E2B;
    }

    .motivo-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .motivo-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .cta-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .historia-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .historia-content {
        text-align: center;
    }

    .historia-content h2 {
        text-align: center;
    }

    .historia-content p {
        text-align: center;
    }

    .historia-image {
        height: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .image-frame {
        top: -10px;
        left: -10px;
    }

    .highlight-box {
        padding: 1.5rem;
        text-align: center;
    }

    .highlight-box p {
        font-size: 1rem;
        text-align: center;
    }

    .video-container {
        margin: 2rem auto 1.5rem auto;
    }

    .event-highlight {
        padding: 1rem;
        font-size: 0.95rem;
        margin-top: 1.5rem;
        text-align: center;
    }

    .event-highlight p {
        text-align: center;
    }

    .data-local .section-title {
        margin-bottom: 1rem;
    }

    .cta-final {
        padding: 60px 0;
        text-align: center;
    }
}

/* ============================================================
   RESPONSIVIDADE - TABLET (481px - 768px)
   ============================================================ */

@media (max-width: 768px) and (min-width: 481px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image {
        height: 300px;
        justify-self: auto;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .images-grid {
        grid-template-columns: 1fr;
    }

    .historia-layout {
        grid-template-columns: 1fr;
    }

    .historia-image {
        height: 300px;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .motivos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .detail-box {
        padding: 1.5rem;
    }

    .motivo-card {
        padding: 1.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 13px 30px;
        font-size: 0.95rem;
    }
}

/* ============================================================
   RESPONSIVIDADE - LARGER TABLET (769px - 1024px)
   ============================================================ */

@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .hero-image {
        height: 400px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .motivos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.2s;
}

.fade-in-delay-2 {
    animation-delay: 0.4s;
}

.fade-in-delay-3 {
    animation-delay: 0.6s;
}
