/*
Theme Name: Vizyons
Theme URI: http://exemplo.local
Author: Vizyons Tecnologia
Author URI: http://vizyonstecnologia.com.br
Description: Tema customizado para desenvolvimento em ambiente Docker.
Version: 1.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vizyons
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Variáveis CSS */
:root {
    --font: Montserrat, sans-serif;
    --green: #91B508
}


/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font);
}

body {
    padding-top: 130px;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    right: 80px;
    bottom: 120px;
    z-index: 10;
    transition: all ease 0.5s;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 50px;
    border: 2px solid #39c641;
    padding: 7px 17px 7px 10px;
}

.whatsapp img {
    object-fit: contain;
    width: 40px;
    height: 40px;
}

.whatsapp p {
    color: #000;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 20px;
    font-weight: 400;
    margin: 0 0 0 15px;
}

.whatsapp p span {
    color: #39c641;
}

@media (max-width: 768px) {
    .whatsapp {
        bottom: 180px;
        right: 20px;
    }
}

.highlight-green {
    color: var(--green);
}

.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-image {
    margin-bottom: 45px;
}

.banner-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Estilos do Header */
.site-header {
    position: fixed;
    display: block;
    z-index: 20;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 0 20px 0;
    height: 130px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0px 12vh 0 12vh;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container h2 {
    font-size: 12px;
    font-weight: 700;
    border-left: 2px solid #5A5A5A;
    margin-left: 10px;
    padding-left: 10px;
    color: #5A5A5A;
}

.site-logo {
    width: auto;
    height: 60px;
}

.menu-container {
    display: flex;
    align-items: center;
}

.menu-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    gap: 12px;
}

/* Estilos dos links de navegação */
.nav-link {
    font-size: 12px !important;
    text-transform: uppercase;
    color: #5A5A5A !important;
    font-weight: 700;
    margin-left: 10px;
    margin-right: 10px;
    display: block;
    white-space: nowrap;
    position: relative;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    width: 100%;
    height: 3px;
    background: var(--green);
    display: block;
    margin-top: 10px;
    opacity: 0;
    transition: margin-top 0.3s ease-out, opacity 0.3s ease-out;
}

.nav-link:hover::after {
    margin-top: 5px;
    opacity: 1;
}

.nav-link::before {
    content: '';
    width: 100%;
    height: 3px;
    background: var(--green);
    display: block;
    margin-bottom: 10px;
    opacity: 0;
    transition: margin-bottom 0.3s ease-out, opacity 0.3s ease-out;
}

.nav-link:hover::before {
    margin-bottom: 5px;
    opacity: 1;
}

.hover::after {
    content: '';
    width: 100%;
    height: 3px;
    background: var(--green);
    display: block;
    margin-top: 5px;
    opacity: 1;
    transition: margin-top 0.3s ease-out, opacity 0.3s ease-out;
}

.hover::before {
    content: '';
    width: 100%;
    height: 3px;
    background: var(--green);
    display: block;
    margin-bottom: 5px;
    opacity: 1;
    transition: margin-bottom 0.3s ease-out, opacity 0.3s ease-out;
}

/* Estilos do botão */
.button {
    background-color: var(--green);
    color: white;
    padding: 8px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    margin-left: 12px;
    display: inline-block;
    transition: background-color 0.3s;
    font-size: 12px;
}

.button:hover {
    background-color: darkgreen;
}

.custom-button {
    padding: 15px 30px 15px 65px;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    border: 3px solid var(--green);
    color: var(--green);
    font-size: 16px;
    font-weight: 700;
    position: relative;
    top: 50px;
    background: linear-gradient(to left, transparent 50%, var(--green) 50%);
    background-size: 300% 100%;
    background-position: right bottom;
    transition: all 2s ease;
}

.custom-button span {
    position: absolute;
    left: -1px;
    top: 25px;
    padding: 17px;
    border-radius: 50%;
    background-color: var(--green);
    transform: translateY(-50%);
}

.custom-button span>img {
    display: block;
    transition: all .4s ease-out;
    transition-delay: .3s;
}

.custom-button:hover {
    background-position: left bottom;
    color: #ffffff;
}

.custom-button:hover span>img {
    transform: rotate(180deg);
}

/* Estilos do logo Philus */
.philus-logo {
    height: auto;
    max-width: 5rem;
    margin-left: 32px;
}

/* Botão menu mobile */
.mobile-menu-button {
    display: none;
    /* Esconde por padrão no desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-button span {
    width: 100%;
    height: 2px;
    background-color: var(--green);
    transition: all 0.3s;
}

/* Carrossel de Imagens */
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 615px;
    width: 100%;
    background-color: #411717;
    position: relative;
    overflow: hidden;
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: none;
}

.carousel-item.active {
    opacity: 1;
    position: relative;
    display: block;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    text-align: start;
    color: white;
    max-width: 675px;
    z-index: 5;
    padding-left: 12vh;
}

.carousel-caption h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel-caption h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--green);
}

/* Destaque verde */
.highlight-green {
    color: var(--green);
}

/* Dots de navegação */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 10%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 36px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--green);
    transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .carousel-caption {
        left: 50%;
        text-align: center;
        padding: 0 20px;
        width: 90%;
    }

    .carousel-caption h1 {
        font-size: 28px;
    }

    .carousel-caption h2 {
        font-size: 16px;
    }

    .carousel-dots {
        bottom: 20px;
    }
}

/* Produtos */
.products-container {
    background-color: #ffffff;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--green);
    margin-top: 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
}

.products-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 100px;
    padding: 0 20px;
    margin-bottom: 40px;
}

.product-item {
    max-width: 332px;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.product-item h4 {
    font-size: 24px;
    font-weight: 500;
    color: #333333;
    margin-top: 10px;
}

.product-item p {
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
}

.product-item img {
    width: auto;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    display: block;
    margin: 20px 0;
}

.product-features {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
}

.product-item a {
    display: inline-block;
    color: black;
    font-size: 14px;
    font-weight: 400;
}

.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.download-button img {
    width: 40px;
    height: 40px;
    display: block;
}


/* Contato */
.contact-container {
    background-size: cover;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    height: 262px;
}

.contact-container h2 {
    color: var(--green);
    font-size: 40px;
    font-weight: 800;
}

.contact-container p {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

.contact-container .button {
    margin-top: 20px;
    background-color: transparent;
    color: var(--green);
    border: var(--green) 2px solid;
}


/* EXPERTISE */
.expertise-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.expertise-info {
    max-width: 50%;
    padding: 40px;
}

.expertise-container .section-subtitle {
    margin-bottom: 10px;
}

.expertise-container .section-title {
    line-height: 1;
    max-width: 55%;
}

.expertise-container p {
    font-weight: 300;
    font-size: 14px;
    line-height: 1.8;
    max-width: 80%;
}

.expertise-image {
    max-width: 50%;
}

.expertise-image img {
    width: 400px;
    height: auto;
}

/* Little About */
.little-about-container {
    position: relative;
    /* Para posicionamento do vídeo */
    padding: 40px 20%;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    display: flex;
    overflow: hidden;
    /* Evita que o vídeo ultrapasse os limites */
}

/* Estilo do vídeo de background */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Garante que o vídeo cubra toda a área */
    z-index: 0;
}

/* Overlay escuro para melhorar a legibilidade */
.little-about-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Container para o conteúdo */
.content-overlay {
    position: relative;
    z-index: 2;
}

.content-overlay .custom-button {
    border: 3px solid #fff;
    color: #fff;
    background: linear-gradient(to left, transparent 50%, #fff 50%);
    background-size: 300% 100%;
    background-position: right bottom;
}

.content-overlay .custom-button span {
    position: absolute;
    left: -1px;
    top: 25px;
    padding: 17px;
    border-radius: 50%;
    background-color: #fff;
    transform: translateY(-50%);
}

.content-overlay .custom-button:hover {
    background-position: left bottom;
    color: var(--green);
}

.little-about-container .section-title {
    color: #ffffff;
    font-size: 40px;
    font-weight: 800;
    max-width: 500px;
    margin: 0 auto 20px;
    /* Centraliza o título */
}

.little-about-container p {
    font-size: 14px;
    color: #ffffff;
    text-align: left;
    line-height: 1.8;
    margin-bottom: 15px;
}

.little-about-container .button {
    margin-top: 40px;
    background-color: transparent;
    color: #ffffff;
    border: #ffffff 2px solid;
    width: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
}

/* Why Choose */
.why-choose-container {
    display: flex;
    flex-direction: column;
    background-size: cover;
    padding: 80px 60px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.why-choose-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Cor preta com 60% de opacidade */
    z-index: 1;
}

.why-choose-container>* {
    position: relative;
    z-index: 2;
}

.why-choose-container .row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 1440px;
}

.why-choose-container .row-1 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    max-width: 1440px;
}

.why-choose-container .row-1 .info {
    flex: 0 0 48%;
    text-align: left;
}

.why-choose-container .row-1 .info .section-subtitle {
    font-size: 14px;
    margin-bottom: 5px;
}

.why-choose-container .row-1 .info .section-title {
    line-height: 1;
    margin-bottom: 5px;
    max-width: 65%;
    color: #ffffff;
}

.why-choose-container .row-1 .info p {
    max-width: 70%;
    color: #ffffff;
    font-weight: 300;
    margin-top: 20px;
}

.grid-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex: 1;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.why-choose-item {
    background-color: #91B508;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.why-choose-item h4 {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 5px;
}

.why-choose-item p {
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
}


/* About */
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 40px; */
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    height: 700px;
    margin-bottom: 70px;
}

.about-container .section-subtitle {
    margin-bottom: 10px;
}

.about-container .section-title {
    line-height: 1;
    max-width: 390px;
}

.about-container p {
    font-weight: 300;
    font-size: 14px;
    line-height: 1.8;
    max-width: 80%;
}

.about-info {
    max-width: 50%;
    padding: 20px;
}

.about-info .custom-button {
    padding: 10px 30px 10px 65px;
    margin-bottom: 100px;
}

.about-info .custom-button span {
    padding: 10px;
    top: 20px;
}

.about-image {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img img {
    width: 100%;
    height: auto;
}

/* Testimonials */
.testimonials-container {
    display: flex;
    justify-content: space-between;
    padding: 60px 10%;
    background-color: #F8F5F2;
}

.testimonials-info {
    max-width: 50%;
    align-items: start;
}

.testimonials-info .section-title {
    margin-top: 40px;
}

.testimonial-item p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    margin-top: 10px;
    max-width: 85%;
}

.testimonial-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
}

.testimonial-item h5 {
    font-size: 14px;
    font-weight: 300;
}

.testimonials-image {
    width: 500px;
}

.testimonials-image img {
    width: 100%;
    height: auto;
}

/* Estilos para o carrossel de depoimentos */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.testimonial-slides {
    position: relative;
    min-height: 250px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
}

.testimonial-item.active {
    opacity: 1;
    position: relative;
    display: block;
}

.testimonial-controls {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dot {
    width: 28px;
    height: 4px;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--green);
}

.dot {
    width: 28px;
    height: 4px;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--green);
}



/* Ajustes responsivos */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* POLITICA DE PRIVACIDADE */

.policy-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #3A3A3A;
    margin: 30px 0;
}

.policy-content h1>span {
    font-weight: 300;
}

.policy-content p {
    color: #797979;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 32px;
}

.policy-content h4 {
    font-size: 22px;
    color: #3A3A3A;
    font-weight: 700;
    margin: 20px 0;
}

/* VERSÃO DESKTOP (maior que 1279px) */
@media (min-width: 1280px) {
    .menu-container {
        position: static;
        transform: none !important;
        background-color: transparent;
        height: auto;
    }

    .menu-links {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 12px;
    }
}

/* VERSÃO MOBILE (menor que 1280px) */
@media (max-width: 1279px) {
    .header-container {
        padding: 20px;
    }

    .mobile-menu-button {
        display: flex;
        /* Mostra o botão mobile */
    }

    .menu-container {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: none;
        height: 100vh;
        background-color: var(--green);
        transform: translateY(-100%);
        transition: transform 0.3s ease-out;
        z-index: 1000;
        padding-top: 80px;
        overflow-y: auto;
    }

    .menu-container.menu-open {
        transform: translateY(0);
    }

    .menu-links {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 0 20px;
    }

    .nav-link {
        color: #ffffff !important;
        font-size: 18px !important;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .button {
        margin: 10px auto;
    }

    .philus-link {
        margin-top: 30px;
    }

    /* Estilo do botão quando o menu está aberto */
    .mobile-menu-button.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background-color: #ffffff;
    }

    .mobile-menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background-color: #ffffff;
    }
}


@media (max-width: 768px) {
    .testimonial-slides {
        min-height: 300px;
        /* Ajuste para mobile */
    }

    .testimonial-controls {
        flex-direction: column;
        gap: 15px;
    }
}

/* FOOTER */
.footer {
    display: flex;
    flex-direction: column;
    height: 400px;
    width: 100%;
    background-color: var(--green);
    padding: 60px 130px 20px 130px;
    justify-content: center;
    align-items: center;
}

.footer-container {
    /* padding: 80px; */
    display: flex;
    justify-content: space-between;
    align-items: start;
    max-width: 1200px;
}

.footer-container h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.footer-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-content img {
    width: 230px;
    height: auto;
}

.footer-content .button {
    background-color: #ffffff;
    color: var(--green);
    font-size: 16px;
    font-weight: 400;
}

.footer-content .button:hover {
    background-color: transparent;
    border: #ffffff solid 2px;
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-right: 80px;
    /* margin-left: 500px; */
}

.footer-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
}

.footer-info {
    margin-left: 80px;
}

.footer-info h3 {
    margin-bottom: 20px;
}

.footer-info p {
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    color: #ffffff;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
}

.footer-bottom p {
    font-weight: 300;
}

.horizontal-line {
    border-top: 1px solid #ffffff;
    box-sizing: border-box;
    max-width: 1200px;
    margin-top: 80px;
    width: 100%;
}

.vertical-line {
    border-right: 1px solid #ffffff;
    box-sizing: border-box;
}



/* PÁGINA SOBRE */

.about {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 0 80px; */
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-content p {
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 32px;
    color: #797979;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 70%;
}

.about-content .section-title {
    margin-top: 30px;
}

.about-content li {
    font-size: 14px;
    font-weight: 300;
    line-height: 32px;
    margin-bottom: 10px;
    color: #797979;
}

.about-downloads {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px;
}

.about-philus {
    width: 70%;
}

.about-philus h2 {
    font-size: 70px;
    font-weight: 700;
}

.philus-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
}

.philus-info p {
    color: #797979;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 32px;
}

.philus-companies {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px 0;
}

.philus-companies img {
    max-width: calc((100% - 100px) / 6);
    /* Distribui igualmente o espaço entre as 6 imagens */
    height: auto;
    object-fit: contain;
    flex: 0 0 auto;
    /* Impede que as imagens cresçam ou encolham além do necessário */
}

.philus-video {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 50px 0;
}

.about-divider {
    width: 70%;
    height: 2px;
    background-color: #e0e0e0;
    margin: 40px 0;
}

.about-downloads {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.about-downloads-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
}

.about-downloads-content h1 {
    font-size: 18px;
    font-weight: 800;
    margin: 10px 0;
}

.about-button {
    background: var(--green);
    border-radius: 50px;
    border: none;
    width: 190px;
    height: 44px;
    font-weight: 700;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    transition-duration: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.about-button a {
    text-decoration: none;
    color: #fff;
}

.about-img img {
    margin-top: 100px;
}


.about-info .custom-button {
    left: 15%;
}

/* PÁGINA DE CONTATO */
.contact {
    /* width: 70%; */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    padding: 40px 80px;
    gap: 60px;
}


.contact-form {
    /* display: flex; */
    align-items: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    width: 100%;
    margin-right: 80px;
}

.contact-info {
    /* width: 50%; */
    display: flex;
    flex-direction: column;
    gap: 90px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.contact-info-item img {
    width: 200px;
}

.contact-info-item h2 {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 5px;
}

.contact-info-item p {
    font-size: 18px;
    font-weight: 600;
}

.contact-info-item a {
    margin-top: 20px;
    text-transform: none;
    padding: 10px 20px;
    margin-left: 0;
    font-size: 14px;
}

.contact-info-item .recruitment-icon {
    width: 150px;
    height: auto;
}

.contact-info-item-details {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
}

.contact-info-item-details ul {
    list-style-type: none;
}

.contact-info-item-details li {
    letter-spacing: 1.5px;
    font-weight: 900;
    margin: 0;
}

.contact-info-recruitment {
    display: flex;
    flex-direction: column;
    align-items: start;
    /* justify-content: start; */
    width: 50%;
}

.contact-info-recruitment p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 5px;
}

.contact-info-recruitment a {
    font-size: 16px;
    font-weight: 400;
    color: var(--green);
    text-decoration: none;
    margin-top: 0;
}

.contact-info-recruitment .button {
    background-color: transparent;
    color: var(--green);
    border: var(--green) 2px solid;
    display: block;
    font-size: 14px;
}

.form-term {
    display: flex;
    align-items: center;
    gap: 10px
}

.form-button {
    background-color: var(--green);
    color: #fff;
    width: 100%;
    border-radius: 0;
    line-height: 60px;
    border: none;
    margin-top: 20px;
    transition: ease all .5s;
    cursor: pointer;
}

.form-button:hover {
    background-color: #678106;
    outline: 0;
}

.input {
    background-color: transparent;
    width: 100%;
    height: 60px;
    font-weight: 300;
    font-size: 14px;
    border: 1px solid #797979;
    text-indent: 30px;
    color: #797979;
    /* Note que você precisará definir a cor da borda */
    margin-top: 6px;
    margin-bottom: 6px;
    padding: 15px;
}

.input-text {
    height: 130px;
}

.checkbox {
    height: 20px;
    width: 20px;
    cursor: pointer;
}

/* PÁGINA DE COMPOSTAGEM */
.composting {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.composting .section-cta {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 300px;
    align-items: center;
    justify-content: center;
}

.section-cta h2 {
    color: var(--green);
    font-size: 36px;
    font-weight: 800;
}

.section-cta .custom-button {
    top: 20px
}

.section-cta p {
    font-size: 14px;
    font-weight: 400;
    max-width: 600px;
    text-align: center;
    margin: 20px 0;
    color: #ffffff;
}

.composting-content {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.composting-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: start;
    padding: 100px;
    background-color: rgba(245 245 245);
}

.composting-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 100px;
}

.composting-right h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--green);
}

.composting-right h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

.composting-right p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.section-process {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-process h2 {
    font-size: 36px;
    font-weight: 800;
    color: #4b4a4a;
    margin-bottom: 40px;
    max-width: 550px;
    text-align: center;
}

.process-steps {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
    gap: 40px;
    /* visibility: hidden; */

}

.step-image {
    height: 350px;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-divider {
    width: 1px;
    background-color: #ACACAC;
    display: flex;
    position: relative;
    margin: 0 150px
}

.step-line {
    width: 19px;
    height: 19px;
    border-radius: 50px;
    background-color: var(--green);
    position: absolute;
    left: -10px;
    top: 0%;
    aspect-ratio: square;
}

.step-info {
    display: flex;
    width: 100%;
    height: 350px;
    align-items: center;
    justify-content: center;
}

.step-info-content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 450px;
    gap: 20px;
}

.step-position {
    background-color: var(--green);
    border-radius: 50px;
    width: 60px;
    height: 45px;
    aspect-ratio: square;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    margin-right: 10px;
}

.step-description {
    display: flex;
    align-items: start;
    gap: 20px;
    justify-content: start;
    flex-direction: column;
}

.step-description h3 {
    margin-top: 10px;
    margin-bottom: 0;
    width: auto;
    font-size: 16px;
    font-weight: 700;
    color: #5A5A5A;
}

.step-description span {
    font-size: 14px;
    font-weight: 400;
    opacity: 1;
    color: #797979;
}

.composting-features {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    width: 120px;
}

.feature-item img {
    width: 50px;
    height: 50px;
}

.feature-item p {
    font-size: 16px;
    font-weight: 500;
    max-width: 150px;
    line-height: 1.2;
}

.feature-divider {
    width: 100%;
    height: 3px;
    background-color: var(--green);
    margin: 80px 0;
}

/* Classes de visibilidade responsiva */
.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

/* Estilo para a versão mobile do processo */
.process-steps-mobile {
    width: 100%;
    padding: 0 20px;
}

.mobile-timeline {
    position: relative;
}

.mobile-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background-color: #ACACAC;
    z-index: 1;
}

.process-step-mobile {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.step-number {
    background-color: var(--green);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-right: 15px;
    flex-shrink: 0;
    z-index: 2;
}

.step-content-mobile {
    flex: 1;
    padding-left: 15px;
    padding-bottom: 20px;
}

.step-content-mobile h3 {
    font-size: 18px;
    font-weight: 700;
    color: #5A5A5A;
    margin-bottom: 10px;
}

.step-content-mobile p {
    font-size: 14px;
    color: #797979;
    margin-bottom: 15px;
}

.step-image-mobile {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.step-image-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Media queries */
@media screen and (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .section-process h2 {
        font-size: 26px;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    /* Estilos responsivos para outras partes da página */
    .composting-content {
        flex-direction: column;
    }

    .composting-video {
        max-height: 250px;
    }

    .composting-left,
    .composting-right {
        width: 100%;
        padding: 40px 20px;
    }

    .composting-features {
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 30px;
    }

    .feature-divider {
        margin: 40px 0;
    }

    .composting-right h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

/* ===== AJUSTES MOBILE COMPLETOS ===== */
/* Banner */
@media (max-width: 768px) {
    .banner-container {
        padding: 20px 15px;
    }

    .banner-image {
        margin-bottom: 25px;
    }

    .banner-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* Ajustes gerais */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
    }

    .section-subtitle {
        text-align: center;
    }

    .button {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* Header e Menu */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .site-header {
        padding: 0 10px;
        height: 60px;
    }

    .logo-container h2 {
        font-size: 8px;
    }

    .header-container {
        padding: 15px 20px;
    }

    .site-logo {
        width: 6rem;
    }

    .menu-container {
        width: 100%;
        padding: 40px 20px;
    }

    .nav-link {
        font-size: 18px !important;
        margin: 5px 0;
    }

    .philus-logo {
        max-width: 4rem;
        margin-left: 15px;
    }
}

/* Carrossel */
@media (max-width: 768px) {
    .carousel-container {
        height: 80vh;
    }

    .carousel-caption {
        left: 50%;
        top: 50%;
        text-align: center;
        padding: 0 20px;
        width: 90%;
    }

    .carousel-caption h1 {
        font-size: 28px;
    }

    .carousel-caption h2 {
        font-size: 16px;
    }
}

/* Produtos */
@media (max-width: 768px) {
    .products-container {
        padding: 40px 15px;
    }

    .products-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .product-item {
        max-width: 100%;
    }
}

/* Expertise */
@media (max-width: 768px) {
    .expertise-container {
        flex-direction: column;
        padding: 40px 20px;
    }

    .expertise-info,
    .expertise-image {
        max-width: 100%;
        padding: 20px 0;
    }

    .expertise-container .section-title {
        max-width: 100%;
        text-align: center;
    }

    .expertise-container p {
        max-width: 100%;
        text-align: center;
    }

    .expertise-image img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
}

/* Little About */
@media (max-width: 768px) {
    .little-about-container {
        padding: 60px 20px;
        height: auto;
        min-height: 80vh;
    }

    .little-about-container .section-title {
        font-size: 28px;
        max-width: 100%;
    }

    .little-about-container p {
        text-align: center;
    }
}

/* Why Choose */
@media (max-width: 768px) {
    .why-choose-container {
        padding: 40px 20px;
    }

    .why-choose-container .row-1 {
        flex-direction: column;
        align-items: center;
    }

    .why-choose-container .row-1 .info {
        flex: 0 0 100%;
        text-align: center;
    }

    .why-choose-container .row-1 .info .section-title {
        max-width: 100%;
        text-align: center;
    }

    .why-choose-container .row-1 .info p {
        max-width: 100%;
        text-align: center;
    }

    .grid-1 {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .why-choose-item {
        height: auto;
        padding: 30px 20px;
    }
}

/* About */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        height: auto;
        padding: 40px 20px;
    }

    .about-info,
    .about-image {
        max-width: 100%;
    }

    .about-container .section-title {
        max-width: 100%;
        text-align: center;
    }

    .about-container .section-subtitle {
        text-align: center;
        width: 100%;
    }

    .about-container p {
        max-width: 100%;
        text-align: center;
    }

    .about-info .button {
        margin: 20px auto 0;
        display: block;
    }

    .about-image img {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }
}

/* Testimonials */
@media (max-width: 768px) {
    .testimonials-container {
        flex-direction: column;
        padding: 40px 20px;
    }

    .testimonials-info {
        max-width: 100%;
        text-align: center;
    }

    .testimonial-item p {
        max-width: 100%;
        text-align: center;
    }

    .testimonial-item h4,
    .testimonial-item h5 {
        text-align: center;
    }

    .testimonials-image {
        width: 100%;
        max-width: 350px;
        margin: 30px auto 0;
    }
}

/* Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
        height: auto;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        margin: 30px 0;
        align-items: center;
        text-align: center;
    }

    .footer-info {
        margin-left: 0;
        text-align: center;
    }

    .horizontal-line {
        margin-top: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* PÁGINA SOBRE */
@media (max-width: 768px) {
    .about-image img {
        width: 100%;
        height: auto;
        max-height: 250px;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content p,
    .about-content li {
        text-align: left;
    }

    .philus-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .philus-info img {
        max-width: 100%;
        height: auto;
    }

    .about-philus h2 {
        font-size: 60px;
    }

    .philus-companies {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .philus-companies img {
        max-width: 100%;
        height: auto;
    }

    .philus-video {
        height: auto !important;
    }

    .about-downloads {
        flex-direction: column;
    }

    .about-downloads-content {
        max-width: 100%;
    }
}

/* PÁGINA DE CONTATO */
@media (max-width: 768px) {
    .contact {
        flex-direction: column;
        padding: 0 20px;
    }

    .contact-form,
    .contact-info {
        width: 100%;
        margin: 40px 0;
    }

    .contact-form form {
        margin-right: 0;
        max-width: 100%;
    }

    .contact-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info-item img {
        /* width: 100px; */
        margin-bottom: 15px;
    }

    .contact-info-item-details {
        align-items: center;
        text-align: center;
        display: block;
    }

    .contact-info-recruitment {
        display: block;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .form-term {
        align-items: flex-start;
    }

    .form-term label {
        font-size: 14px;
        line-height: 1.3;
    }

    .checkbox {
        margin-top: 3px;
    }
}

/* PÁGINA DE COMPOSTAGEM */
@media (max-width: 768px) {
    .composting .section-cta {
        height: auto;
        padding: 40px 20px;
    }

    .section-cta h2 {
        font-size: 28px;
        text-align: center;
    }

    .composting-content {
        flex-direction: column;
    }

    .composting-left,
    .composting-right {
        width: 100%;
        padding: 40px 20px;
    }

    .composting-right h1 {
        font-size: 28px;
        text-align: center;
    }

    .composting-right h2 {
        font-size: 20px;
        text-align: center;
    }

    .composting-right p {
        text-align: center;
    }

    .composting-features {
        flex-direction: column;
        gap: 30px;
    }

    .feature-item {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .feature-divider {
        margin: 40px 0;
    }
}

/* Ajustes para dispositivos muito pequenos */
@media (max-width: 480px) {
    .carousel-caption h1 {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .product-item h4 {
        font-size: 20px;
    }

    .why-choose-item {
        padding: 20px 15px;
    }

    .about-container {
        padding: 30px 15px;
    }

    .input {
        padding: 12px;
    }

    .input-text {
        height: 100px;
    }

    .little-about-container .section-title {
        font-size: 24px;
    }

    .footer {
        padding: 30px 15px 15px;
    }

    .footer-links {
        margin: 20px 0;
    }

    .footer-links a,
    .footer-info p {
        font-size: 14px;
    }

    .horizontal-line {
        margin-top: 30px;
    }
}

/* Dispositivos extremamente pequenos */
@media (max-width: 320px) {
    .carousel-caption h1 {
        font-size: 20px;
    }

    .carousel-caption h2 {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .button {
        padding: 6px 15px;
        font-size: 13px;
    }

    .product-item h4 {
        font-size: 18px;
    }

    .footer-content img {
        width: 180px;
    }
}