﻿/* presentation.css - /presentation landing page */

/* Banner com brochure (layout original) */

.page-header {
    position: relative;
    overflow: hidden;
}

.presentation-page .page-header .page-header-media {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.presentation-page .page-header .container-xxl {
    padding-right: var(--bs-gutter-x, 0.75rem);
}

.page-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.page-header-text {
    max-width: 600px;
    z-index: 2;
}

.page-header-text h1 {
    margin-bottom: 20px;
}

.page-header-text p {
    max-width: 500px;
}

.presentation-content {
    font-size: 16px;
    line-height: 1.9;
}

.presentation-content h2 {
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.presentation-content p {
    margin-bottom: 20px;
}

.presentation-content .highlight-box {
    background: rgba(118, 27, 255, 0.08);
    border: 1px solid rgba(118, 27, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
}

.presentation-video-section {
    position: relative;
    width: 100vw;
    height: 80vh;
    margin-left: calc(-50vw + 50%);
    margin-top: 80px;
}

.presentation-video-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.presentation-contact-section {
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .presentation-page .page-header-inner {
        min-height: 320px;
    }
}

@media (max-width: 991px) {
    .page-header-inner {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .page-header-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .presentation-video-section {
        height: 50vh;
        margin-top: 50px;
    }
}
