﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.page-wrapper {
    flex: 1;
}

/*=========================
         HEADER
=========================*/

/* HEADER BASE */
.header {
    background-color: #f4f4f3;
    padding: 18px 0;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 24px;
}

/* LOGO */
.tituloSite {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1f1f1f;
    text-transform: uppercase;
    text-decoration: none;
}

    .tituloSite:hover {
        color: #1f1f1f;
    }

/* MENU DESKTOP */
.nav-menu {
    display: flex;
}

.InformacaoMenu {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.CaminhoMenu {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    padding: 5px 0;
}

    .CaminhoMenu::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0%;
        height: 2px;
        background-color: #2f7d32;
        transition: width 0.3s ease;
    }

    .CaminhoMenu:hover {
        color: #2f7d32;
    }

        .CaminhoMenu:hover::after {
            width: 100%;
        }

/* BOTÃO HAMBÚRGUER */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

    .menu-toggle span {
        width: 26px;
        height: 3px;
        background-color: #1f1f1f;
        border-radius: 2px;
    }

/* LOGO */
.logo-site {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-site img {
    height: 42px; /* desktop */
    width: auto;
}


@media (max-width: 1024px) {
    .container-header {
        padding: 0 80px;
    }
}

/* 📱 MOBILE */
@media (max-width: 900px) {

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #f4f4f3;
        border-bottom: 1px solid #e0e0e0;
        display: none;
    }

        .nav-menu.active {
            display: block;
        }

    .InformacaoMenu {
        flex-direction: column;
        gap: 0;
    }

        .InformacaoMenu li {
            border-top: 1px solid #e0e0e0;
        }

    .CaminhoMenu {
        display: block;
        padding: 16px 24px;
        font-size: 16px;
    }

        .CaminhoMenu::after {
            display: none;
        }
        
         .logo-site img {
        height: 34px;
    }
}

/*=========================
      PAGINA INICIAL
=========================*/

.hero {
    background-color: #ffffff;
    padding: 100px 0;
}

/* CONTAINER */
.hero-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: flex;
    text-align: justify;
}

/* TEXTO */
.hero-text {
    z-index: 2;
}

.hero-title {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    margin-bottom: 32px;
}

.hero-description {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    max-width: 550px;
    margin-bottom: 24px;
}

.hero-highlight {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 16px;
    font-weight: 50;
    color: #2f7d32;
    max-width: 550px;
    margin-bottom: 40px;
}

/* BOTÃO */
.hero-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

    .hero-button:hover {
        transform: translateY(-2px);
        opacity: 0.9;
        color: #2f7d32;
    }

/* IMAGEM */
.hero-image {
    position: relative;
}

    .hero-image img {
        width: 100%;
        height: 600px;
        object-fit: cover;
        border-radius: 6px;
    }

/* 📱 TABLET */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 80px;
    }

    .hero-image img {
        height: 480px;
    }
}

/* 📱 MOBILE */
@media (max-width: 600px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-highlight {
        font-size: 15px;
    }

    .hero-image img {
        height: 320px;
    }

    .hero-button {
        width: 100%;
        text-align: center;
    }
}


/*=========================
    MAIS SOBRE EMPRESA
=========================*/

.about-company {
    padding: 140px 0;
    background-color: #ffffff;
}

.about-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
    text-align:justify;

}

/* TEXTO */
.about-title {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #000;
}

.about-description {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    max-width: 600px;
    margin-bottom: 24px;
}

.about-button {
    display: inline-block;
    margin-top: 30px;
    background-color: #000;
    color: #fff;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

    .about-button:hover {
        transform: translateY(-2px);
        opacity: 0.9;
        color: #2f7d32;
    }

/* IMAGENS */
.about-images {
    position: relative;
}

.about-image-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 6px;
}

/* imagem sobreposta (desktop only) */
.about-image-overlay {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 320px;
    height: 220px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

    .about-image-overlay img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 80px;
    }

    .about-image-main img {
        height: 420px;
    }

    .about-image-overlay {
        left: 20px;
    }
}

@media (max-width: 600px) {

    .about-company {
        padding: 80px 0;
    }

    .about-title {
        font-size: 32px;
    }

    .about-description {
        font-size: 16px;
    }

    /* remove sobreposição */
    .about-image-overlay {
        position: static;
        width: 100%;
        height: 220px;
        margin-top: 20px;
        box-shadow: none;
    }

    .about-image-main img {
        height: 300px;
    }

    .about-button {
        width: 100%;
        text-align: center;
    }
}

/*=========================
       REDES SOCIAIS
=========================*/

.social-institutional {
    padding: 120px 0;
    background-color: #f4f4f3;
}

.social-wrapper {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
    text-align:justify;
}

/* TEXTO */
.social-title {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
    align-items: center;
    text-align: justify;
}

.social-description {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    max-width: 520px;
    align-items: center;
    text-align: justify;
}

/* REDES */
.social-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.social-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 36px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .social-card i {
        font-size: 42px;
        margin-bottom: 14px;
    }

    .social-card span {
        font-family: 'Poppins', Arial, sans-serif;
        font-size: 15px;
        font-weight: 500;
    }

    .social-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    /* cores */
    .social-card.whatsapp i {
        color: #25d366;
    }

    .social-card.instagram i {
        color: #e1306c;
    }

    .social-card.facebook i {
        color: #1877f2;
    }

    .social-card.linkedin i {
        color: #0a66c2;
    }


@media (max-width: 1024px) {

    .social-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: justify;
        padding: 0 80px;
    }

    .social-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .social-institutional {
        padding: 80px 0;
    }

    .social-title {
        font-size: 30px;
    }

    .social-description {
        font-size: 16px;
    }

    .social-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .social-card {
        padding: 28px 16px;
    }

        .social-card i {
            font-size: 36px;
        }
}

@media (max-width: 420px) {
    .social-links {
        grid-template-columns: 1fr;
    }
}

/*=========================
       FALE CONOSCO
=========================*/


.contact {
    padding: 140px 0;
    background-color: #f8f8f8;
}

.contact-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
    text-align: justify
}

/* TEXTO */
.contact-title {
    font-family: 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #000;
    align-items: center;
    text-align: justify
}

.contact-description {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    max-width: 420px;
    align-items: center;
    text-align: justify
}

/* FORM */
.contact-form {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

    .form-group label {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 8px;
        color: #000;
    }

    .form-group input,
    .form-group textarea {
        font-family: 'Poppins', Arial, sans-serif;
        font-size: 15px;
        padding: 14px 16px;
        border: 1px solid #ddd;
        border-radius: 4px;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #000;
            box-shadow: 0 0 0 1px #000;
        }

/* BOTÃO */
.contact-button {
    margin-top: 20px;
    background-color: #000;
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

    .contact-button:hover {
        transform: translateY(-2px);
        background-color: #111;
    }


/* Tablets e notebooks menores */
@media (max-width: 1024px) {
    .contact {
        padding: 100px 0;
    }

    .contact-container {
        gap: 60px;
        padding: 0 80px;
    }

    .contact-title {
        font-size: 42px;
    }
}

/* Tablets e celulares grandes */
@media (max-width: 768px) {
    .contact {
        padding: 80px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: left;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-description {
        max-width: 100%;
        font-size: 16px;
    }

    .contact-form {
        padding: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Celulares */
@media (max-width: 480px) {
    .contact {
        padding: 60px 0;
    }

    .contact-container {
        padding: 0 20px;
    }

    .contact-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .contact-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .contact-form {
        padding: 30px 20px;
        border-radius: 6px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 14px;
    }

    .contact-button {
        width: 100%;
        padding: 16px;
        font-size: 12px;
    }
}


/*=========================
          FOOTER
=========================*/

.footer {
    background-color: #f4f4f3;
    padding: 30px 10px 10px;
    font-family: 'Poppins', Arial, sans-serif;
    color: #1f1f1f;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* Logo / Nome */
.footer-logo {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 15px;
    margin-top: 8px;
    color: #555;
}

/* Conteúdo */
.footer-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 40px 0;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

/* Linha inferior */
.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-logo {
        font-size: 22px;
    }

    .footer-desc {
        font-size: 14px;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 30px 0;
    }

    .footer-col h4 {
        font-size: 14px;
    }

    .footer-col p {
        font-size: 14px;
        line-height: 1.5;
    }

    .footer-bottom {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 16px 16px;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-desc {
        font-size: 13px;
    }
}