/* ================ GLOBAL STYLES ================ */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    /* Melhora a legibilidade do texto */
}

/* ================ GLOBAL COLORS ================ */
:root {
    --cor-principal: #FF7B00;
    --cor-branca: #ffffff;
    --cor-preta: #373435;
    --cor-fundo: #f8f9fa;
    --cor-Clogo: #373435;
    --light: #ECF0F1;
}

/*-------------------------------- SECTION (HERO) --------------------*/
/*-------------------------------- SECTION (HERO) --------------------*/
/*-------------------------------- SECTION (HERO) --------------------*/
/*-------------------------------- SECTION (HERO) --------------------*/

.sectionHero {
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background: var(--cor-branca);
    isolation: isolate;
}

.sectionHero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 60%;
    height: 160%;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.sectionHero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -8%;
    width: 50%;
    height: 80%;
    z-index: 1;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.sectionHeroLeft {
    margin-top: 50px;
    padding: 3rem;
    width: 50%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.sectionHeroLeft h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--cor-preta);
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.sectionHeroLeft h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--cor-principal);
    border-radius: 2px;
}

.sectionHeroLeft p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #666;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    max-width: 90%;
}

.sectionHeroLeftButtons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.sectionHeroLeftButtons button {
    padding: 1rem 2rem;
    background-color: var(--cor-branca);
    border: 2px solid var(--cor-principal);
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--cor-principal);
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    min-width: 220px;
}

.sectionHeroLeftButtons button:first-child {
    background-color: var(--cor-principal);
    color: var(--cor-branca);
}

.sectionHeroLeftButtons button:first-child:hover {
    background-color: #e67200;
    border-color: #e67200;
    transform: translateY(-2px);
}

.sectionHeroLeftButtons button:last-child:hover {
    background-color: var(--cor-principal);
    color: var(--cor-branca);
    transform: translateY(-2px);
}

.sectionHeroRight {
    width: 50%;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.sectionHeroImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/img/PRE\ FABRICADOS.jpg') center/cover no-repeat;
    -webkit-mask-image: linear-gradient(to left, black 60%, transparent 95%);
    mask-image: linear-gradient(to left, black 60%, transparent 95%);
    filter: brightness(1.05) contrast(1.05);
    transform: scale(1.05);
    transition: transform 1s ease;
}

/* Efeito de partículas sutil */
.sectionHeroParticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--cor-principal);
    border-radius: 50%;
    opacity: 0.1;
    animation: particleFloat 8s infinite ease-in-out;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(120deg);
    }
}

/* Tablet and Medium Screens (768px - 1024px) */
@media (max-width: 1024px) {
    .sectionHero {
        height: 75vh;
        min-height: 550px;
    }

    .sectionHeroLeft {
        padding: 2.5rem;
    }

    .sectionHeroLeft h1 {
        font-size: 2.8rem;
    }

    .sectionHeroLeft p {
        font-size: 1.1rem;
    }

    .sectionHeroLeftButtons button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
        min-width: 200px;
    }
}

/* Small Tablets (600px - 768px) */
@media (max-width: 768px) {
    .sectionHero {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    .sectionHeroLeft,
    .sectionHeroRight {
        width: 100%;
    }

    .sectionHeroLeft {
        padding: 2.5rem 2rem;
        order: 2;
        text-align: center;
    }

    .sectionHeroRight {
        height: 350px;
        order: 1;
    }

    .sectionHeroImage {
        -webkit-mask-image: linear-gradient(to top, black 70%, transparent 95%);
        mask-image: linear-gradient(to top, black 70%, transparent 95%);
    }

    .sectionHeroLeft h1 {
        font-size: 2.5rem;
    }

    .sectionHeroLeft h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .sectionHeroLeft p {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .sectionHeroLeftButtons {
        justify-content: center;
    }
}

/* Mobile Devices (up to 600px) */
@media (max-width: 600px) {
    .sectionHeroLeft {
        margin-top: -5px;
        padding: 2rem 1.5rem;
    }

    .sectionHeroRight {
        height: 300px;
    }

    .sectionHeroLeft h1 {
        font-size: 2.2rem;
    }

    .sectionHeroLeft p {
        font-size: 1rem;
    }

    .sectionHeroLeftButtons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .sectionHeroLeftButtons button {
        width: 100%;
        max-width: 280px;
        font-size: 0.95rem;
    }
}

/* Very Small Mobile Devices (up to 400px) */
@media (max-width: 400px) {
    .sectionHeroLeft {
        padding: 1.8rem 1.2rem;
    }

    .sectionHeroRight {
        height: 250px;
    }

    .sectionHeroLeft h1 {
        font-size: 1.9rem;
    }

    .sectionHeroLeft p {
        font-size: 0.95rem;
    }

    .sectionHeroLeftButtons button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: auto;
    }
}

/* Large Desktop Screens (min-width: 1600px) */
@media (min-width: 1600px) {
    .sectionHero {
        height: 80vh;
        min-height: 700px;
    }

    .sectionHeroLeft h1 {
        font-size: 4rem;
    }

    .sectionHeroLeft p {
        font-size: 1.3rem;
    }

    .sectionHeroLeftButtons button {
        padding: 1.1rem 2.2rem;
        font-size: 1.1rem;
    }
}

/*-------------------------------- SECTION (MAIN) --------------------*/
/*-------------------------------- SECTION (MAIN) --------------------*/
/*-------------------------------- SECTION (MAIN) --------------------*/
/*-------------------------------- SECTION (MAIN) --------------------*/

.sectionMain {
    background-color: var(--cor-branca);
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.sectionMainLight {
    background-color: var(--light);
}

/* Section Main Upper */
.sectionMainUpper {
    text-align: center;
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

.sectionMainUpper h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--cor-preta);
    position: relative;
    display: inline-block;
}

.sectionMainUpper h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--cor-principal);
    border-radius: 3px;
}

.sectionMainUpperIntroduction {
    font-size: 1.4rem;
    margin: 2rem auto 3rem;
    max-width: 80%;
    color: var(--cor-texto);
    font-weight: 400;
    line-height: 1.6;
}

.sectionMainUpperContainer {
    display: flex;
    flex-direction: row;
    text-align: start;
    gap: 3rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.sectionMainUpperLeft {
    width: 50%;
    margin-left: -50px;
}

.sectionMainUpperLeft p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--cor-texto);
}

/* Carousel de Vídeos no formato original */
.sectionMainUpperRight {
    width: 50%;
    position: relative;
}

.main-video {
    width: 110%;
    height: 380px;
    background: #000;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        -8px -8px 20px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.1);
}

.main-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: white;
}

.main-video:hover .play-button-main {
    transform: translate(-50%, -50%) scale(1.2);
}

.video-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-description {
    font-size: 0.95rem;
    opacity: 0.9;
}


/*-------------------------------- DIV (MODAL VIDEO) --------------------*/
/*-------------------------------- DIV (MODAL VIDEO) --------------------*/
/*-------------------------------- DIV (MODAL VIDEO) --------------------*/
/*-------------------------------- DIV (MODAL VIDEO) --------------------*/

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    width: 80%;
    height: 80%;
    position: relative;
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--cor-principal);
}

.container-h3 {
    margin-top: 4rem !important;
    padding-top: 3rem;
}


/*-------------------------------- SECTION (MAIN) --------------------*/
/*-------------------------------- SECTION (MAIN) --------------------*/
/*-------------------------------- SECTION (MAIN) --------------------*/
/*-------------------------------- SECTION (MAIN) --------------------*/

.sectionMain h3 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 5rem 0 3rem;
    color: var(--cor-preta);
    position: relative;
    padding-bottom: 15px;
}

.sectionMain h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--cor-principal);
    border-radius: 2px;
}

.sectionMainContainer {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.sectionMainLeft {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sectionMainLeftImages {
    margin-top: 8px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    /* Remover aspect-ratio fixo */
    aspect-ratio: auto;
    /* Adicionar altura automática */
    height: auto;
}

.sectionMainLeftImages img {
    width: 100%;
    height: auto;
    /* Alterar para auto em vez de 100% */
    object-fit: contain;
    /* Mostrar imagem completa em vez de cortar */
    display: block;
    transition: transform 0.5s ease;
}

.sectionMainRight {
    width: 50%;
}

.sectionMainRight ul {
    padding-left: 0;
    list-style: none;
}

.txt-p {
    font-size: 1.2rem;
    color: var(--cor-preta);
}

.sectionMainRight li {
    font-size: 1.2rem;
    margin-top: 1.8rem;
    line-height: 1.7;
    color: var(--cor-preta);
    position: relative;
    padding-left: 2.5rem;
    padding-right: 1rem;
}

.sectionMainRight li::before {
    content: '✓';
    color: var(--cor-principal);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255, 123, 0, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sectionMainFooter {
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 4rem;
    background-color: var(--cor-branca);
    position: relative;
    overflow: hidden;
}

.sectionMainFooter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 300px;
    opacity: 0.3;
}

.sectionMainFooter h4 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--cor-preta);
    position: relative;
    display: inline-block;
}

.sectionMainFooter h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--cor-principal);
    border-radius: 2px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.requirement-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    position: relative;
    z-index: 2;
    border-left: 4px solid var(--cor-principal);
}

.requirement-card h5 {
    font-size: 1.3rem;
    color: var(--cor-principal);
    margin-bottom: 0.8rem;
}

.requirement-card p {
    font-size: 1rem;
    padding: 0;
    box-shadow: none;
    margin: 0;
}

.sectionMainRight h4 {
    font-size: 1.5rem;
    color: var(--cor-principal);
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 123, 0, 0.2);
    font-weight: 600;
    position: relative;
}

.sectionMainRight h4:first-of-type {
    margin-top: 0;
}

/* Responsividade */
@media (max-width: 1200px) {
    .sectionMainUpperContainer,
    .sectionMainContainer {
        flex-direction: column;
        gap: 3rem;
    }

    .sectionMainUpperLeft,
    .sectionMainUpperRight,
    .sectionMainLeft,
    .sectionMainRight {
        width: 100%;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
     .sectionMainUpperLeft {
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .sectionMainUpper {
        padding: 3rem 1.5rem 1.5rem;
    }

    .sectionMainUpper h2 {
        font-size: 2.2rem;
    }

    .sectionMainUpperIntroduction {
        font-size: 1.2rem;
        max-width: 90%;
    }

    .main-video {
        height: 300px;
    }

    .video-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }

    .sectionMain h3 {
        font-size: 2rem;
    }

    .sectionMainRight li {
        font-size: 1.1rem;
    }

    .sectionMainFooter {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .sectionMainUpper h2 {
        font-size: 1.9rem;
    }

    .sectionMainUpperIntroduction {
        font-size: 1.1rem;
    }

    .main-video {
        height: 250px;
    }

    .video-thumbnail {
        height: 70px;
    }

    .sectionMain h3 {
        font-size: 1.7rem;
    }

    .sectionMainLeftImages {
        object-fit: contain;
        display: block;
    }

    .sectionMainRight li {
        font-size: 1rem;
        padding-left: 2.2rem;
    }

    .video-modal-content {
        width: 95%;
        height: 50%;
    }

    .close-modal {
        top: -35px;
        font-size: 1.8rem;
    }
}

/*-------------------------------- SECTION (CONTATO) --------------------*/
/*-------------------------------- SECTION (CONTATO) --------------------*/
/*-------------------------------- SECTION (CONTATO) --------------------*/
/*-------------------------------- SECTION (CONTATO) --------------------*/

.contato-container {
    font-family: "Poppins", sans-serif;
    background-color: var(--cor-preta);
    width: 100%;
    padding: 40px 5%;
}

.contato-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.contato-header {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

.contato-header h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--cor-branca);
    position: relative;
    padding-bottom: 12px;
}

.contato-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--cor-principal);
}

.contato-header p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ccc;
}

.divider {
    display: none;
}

.contato-content {
    flex: 1;
    min-width: 300px;
    background-color: var(--cor-branca);
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contato-info h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--cor-preta);
    position: relative;
    padding-bottom: 10px;
}

.contato-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--cor-principal);
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background-color: var(--light);
    border: 1px solid #ddd;
    color: var(--cor-preta);
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s;
    font-family: "Poppins", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cor-principal);
}

.btn-enviar {
    background-color: var(--cor-branca);
    color: var(--cor-principal);
    border: 2px solid var(--cor-principal);
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-enviar:hover {
    background-color: var(--cor-principal);
    color: var(--cor-branca);
}

@media (max-width: 768px) {
    .contato-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .contato-header {
        padding-right: 0;
        text-align: center;
    }

    .contato-header h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contato-container {
        padding: 30px 4%;
    }
}

/* Estilos adicionais para as notificações */
.notification {
    position: fixed;
    top: 20px;
    right: 40%;
    padding: 15px 25px;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(120%);
    transition: transform 0.4s ease-out;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background-color: var(--cor-principal);
    border-left: 4px solid var(--cor-principal);
}

.notification.error {
    background-color: #e74c3c;
    border-left: 4px solid #c0392b;
}

.notification.warning {
    background-color: #f39c12;
    border-left: 4px solid #d35400;
}