/*
Theme Name: Gotti Custom Theme
Author: Giovanna Silva de Freitas
Version: 1.0
Description: Tema customizado em código puro para o site da Gotti.
*/

/* Resets Básicos */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/* Header Container */
.gotti-header {
    background: #ffffff;
    padding: 20px 0;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img {
    max-width: 140px;
    display: block;
}

/* ==========================================================
   MENU PRINCIPAL (Nível Superior - Desktop)
   ========================================================== */
.menu > ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 66px;
}

.menu > ul > li {
    position: relative;
    list-style: none;
}

.menu > ul > li > a {
    text-decoration: none;
    color: #111111;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu > ul > li > a:hover {
    color: #db3632;
}

.dropdown > a::after {
    content: "▼";
    font-size: 9px;
    color: #db3632;
    margin-left: 6px;
    vertical-align: middle;
    display: inline-block;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after,
.dropdown.active > a::after {
    transform: rotate(180deg);
}

.menu-toggle {
    display: none;
    background: #db3632;
    color: #ffffff;
    border: none;
    font-size: 24px;
    padding: 32px 30px;
    border-radius: 2px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* ==========================================================
   SUBMENU / DROPDOWN (Independente do menu principal)
   ========================================================== */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    padding: 10px 0;
    gap: 0;
    z-index: 99;
    list-style: none;
}

.dropdown:hover .submenu,
.dropdown.active .submenu {
    display: flex !important;
}

.submenu li {
    width: 100%;
    list-style: none;
}

.submenu li a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #111111;
    transition: all 0.2s ease;
}

.submenu li a:hover {
    background-color: #f5f5f5;
    color: #db3632;
}

/* ==========================================================
   AÇÕES DIREITAS (Botão e Sociais)
   ========================================================== */
.actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-orcamento {
    border: 1px solid #FFA8A6;
    color: #db3632;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    padding: 10px 24px;
    transition: 0.3s;
    border-radius: 3px;
    background: transparent;
}

.btn-orcamento:hover {
    background: #db3632;
    color: #ffffff;
}

.social {
    color: #000;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.social:hover {
    color: #db3632;
}

/* ---------------------------------
   MEDIA QUERIES (MOBILE E TABLET)
   --------------------------------- */
@media (max-width: 1024px) {
    .actions { display: none; }
    .header-container { flex-wrap: wrap; }
    .menu-toggle { display: flex; margin-left: auto; }

    .menu {
        position: absolute;
        top: 100%;
        right: -100%;
        left: auto;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 10px 20px rgba(0,0,0,0.1);
        display: flex !important;
        visibility: hidden;
        flex-direction: column;
        z-index: 999;
        overflow-y: auto;
        transition: right 0.4s ease-in-out, visibility 0.4s;
    }

    .menu.active {
        right: 0;
        visibility: visible;
    }

    .menu > ul {
        margin-top: 60px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }

    .menu > ul > li {
        width: 100%;
        border-bottom: 1px solid #eeeeee;
    }

    .menu > ul > li > a {
        display: block;
        padding: 18px 30px;
    }

    .submenu {
        position: static;
        display: none !important;
        box-shadow: none;
        min-width: 100%;
        background: #fcfcfc;
        padding: 0;
    }

    .submenu li a {
        padding-left: 50px;
        font-size: 16px;
        color: #555;
    }

    .dropdown:hover .submenu {
        display: none !important;
    }

    .dropdown.active .submenu {
        display: flex !important;
    }
}

/* ---------------------------------
   FOOTER (RODAPÉ)
   --------------------------------- */
.gotti-footer {
    background-color: #f2f2f2;
    border-top: 4px solid #db3632;
    padding: 60px 0 20px;
    font-family: 'Roboto', sans-serif;
    color: #111111;
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.5fr 2.5fr 2.5fr 2fr 2.5fr;
    gap: 50px;
}

.footer-col .footer-logo img {
    max-width: 130px;
}

.footer-col h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111111;
}

.footer-col p {
    font-size: 16px;
    margin-bottom: 38px;
    line-height: 1.5;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: #111111;
    font-size: 16px;
    margin-bottom: 38px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #db3632;
}

.contact-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
}

.contact-col i {
    font-size: 24px;
    width: 30px;
    text-align: center;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-socials a {
    display: inline-block;
    font-size: 20px;
    margin-bottom: 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    padding-bottom: 100px;
    font-size: 16px;
    color: #333333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact-col a, .footer-socials {
        justify-content: center;
    }
}

/* --- BOTÕES FLUTUANTES WHATSAPP --- */
.whats-float{
    position:fixed;
    right: 26px;
    bottom: 35px;
    z-index:9999;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.whats-float .item{
    position:relative;
    width:44px;
    height:44px;
    border-radius:50%;
    background:#fff;
    padding:0;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
    transition:.3s;
    display:flex;
    align-items:center;
    justify-content:center;
    margin: 3px 0px 0px 0px;
}

.whats-float .item img{
    max-width:30px;
    max-height:30px;
    display:block;
}

.whats-float .item span {
    position:absolute;
    right:0px;
    top:50%;
    transform:translateY(-50%);
    background:#fff;
    color:#222;
    font-size:15px;
    font-weight:500;
    white-space:nowrap;
    padding:11px 25px;
    border-radius:40px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
    opacity:0;
    visibility:hidden;
    transition:all 350ms ease;
}

.whats-float .item span img {
    display: inline-block !important;
    vertical-align: middle;
    margin: 0px 8px 0px 0px;
}

.whats-float .item:not(.whatsapp):hover span{
    opacity:1;
    visibility:visible;
}

.whats-float .item:hover{
    transform:scale(1.05);
}

.item.whatsapp {
    background: transparent !important;
    box-shadow: 0px 0px 0px !important;
    margin: 0 !important;
}

.item.whatsapp img {
    max-width: 90px !important;
    max-height: 90px !important;
    display: block;
}

.whatsapp-group {
    position: relative;
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

.whatsapp-menu {
    position: absolute;
    bottom: 80px; 
    right: 0;
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    width: max-content;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
    font-family: 'Montserrat', sans-serif;
}

.whatsapp-menu.ativo {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.whatsapp-menu .w-header {
    font-family: 'Montserrat', sans-serif;
    color: #db3632;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 5px;
    line-height: 1.3;
}

.whatsapp-menu .w-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s;
}

.whatsapp-menu .w-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.whatsapp-menu .w-item i {
    color: #25D366;
    font-size: 18px;
}

.whatsapp-menu .w-item:hover {
    color: #25D366;
}

/* ==========================================================
   ESTILOS GLOBAIS DA HOME
   ========================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.gotti-home h1, .gotti-home h2, .gotti-home h3 {
    font-family: 'Montserrat', sans-serif;
}
.gotti-home p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
}

.btn-solid-white {
    display: inline-block;
    background-color: #ffffff;
    color: #111111;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 2px;
    transition: 0.3s ease;
}
.btn-solid-white:hover {
    background-color: #db3632;
    color: #ffffff;
}

.btn-solid-red {
    display: inline-block;
    background-color: #e3403a;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
}
.btn-solid-red:hover {
    background-color: #c02925;
}

.btn-outline-black {
    display: inline-block;
    background-color: transparent;
    color: #111111;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 30px;
    text-decoration: none;
    border: 1px solid #111111;
    border-radius: 2px;
    transition: 0.3s ease;
}
.btn-outline-black:hover {
    background-color: #111111;
    color: #ffffff;
}

/* ==========================================================
   1. HERO SECTION
   ========================================================== */
.hero-section {
    background-size: cover;
    background-position: center center; 
    background-repeat: no-repeat;
    min-height: 115vh;
    display: flex;
    align-items: flex-start; 
    padding-top: 180px; 
    padding-bottom: 80px;
}

.hero-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    width: 100%;
}

.hero-content {
    max-width: 600px;
    position: relative; 
}

.hero-content h1 {
    color: #ffffff;
    font-size: 40px;
    font-family: 'Provicali', sans-serif; 
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px; 
    letter-spacing: -2.5px;
}

.hero-content p {
    color: #ffffff;
    font-size: 24px;
    font-family: 'Provicali', sans-serif; 
    font-weight: 800; 
    margin-bottom: 30px;
    line-height: 1.2;
    margin-left: 0; 
    letter-spacing: -2.0px;
}

.hero-badge {
    margin-top: 20px; 
}

.hero-badge img {
    max-width: 140px;
    display: block;
}

/* ==========================================================
   2. TRADIÇÃO SECTION
   ========================================================== */
.tradicao-section {
    padding: 80px 0;
    padding-bottom: 200px;
    background-color: #ffffff;
}

.tradicao-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; 
    gap: 20px; 
    align-items: stretch; 
}

.tradicao-img img {
    width: 100%;
    height: auto;
    display: block;
}

.tradicao-content h2 {
    color: #db3632;
    font-size: 50px;
    font-weight: 900;
    line-height: 1.6;
    letter-spacing: -3.0px;
    margin-bottom: 20px;
    font-family: 'Provicali', sans-serif; 
}

.tradicao-content h3 {
    font-size: 28px;
    font-weight: 900;
    color: #111111;
    margin: 25px 0 15px 0;
    line-height: 1.3;
}

.tradicao-content p {
    font-size: 18px;
    line-height: 1.6;
}

.fundo-seta-cinza {
    background-image: url('assets/img/home/background-robustez-leveza.png'); 
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100% 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ==========================================================
   3. PROJETOS PERSONALIZADOS
   ========================================================== */
.projetos-section {
    background-size: cover;
    background-position: center;
    min-height: 900px; 
    display: flex;
    align-items: center; 
    padding: 50px 0; 
}

.projetos-content h2 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
    max-width: 680px;
}

/* ==========================================================
   4. PRODUTOS SOB MEDIDA
   ========================================================== */
.sob-medida-section {
    background-color: #EDEDED;
    padding: 80px 0;
    overflow-x: hidden; 
}

.sob-medida-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center;
}

.sob-medida-img {
    margin-left: -150px; 
    width: calc(100% + 150px); 
}

.sob-medida-img img {
    width: 100%;
    max-width: none;
    display: block;
}

.sob-medida-content p {
    font-size: 20px;
    color: #111111;
    margin-bottom: 30px;
    font-weight: 600;
}

.sob-medida-content strong {
    font-weight: 800;
}

/* ==========================================================
   4.5 DEPOIMENTOS
   ========================================================== */
.depoimentos-section {
    background-color: #ffffff;
    padding: 60px 0 80px 0;
    text-align: center;
    overflow: hidden;
}

.depoimentos-titulo {
    color: #df312d;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

.depoimentos-wrapper {
    position: relative;
    max-width: 1000px; 
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.depoimentos-slider {
    position: relative;
    width: 100%;
    max-width: 880px; 
    background: #df312d;
    border-radius: 12px;
    min-height: 410px; 
    margin: 0 50px; 
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.depoimento-slide {
    position: absolute; 
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    text-align: center; 
    width: 100%; 
    height: 100%; 
    padding: 20px 70px;
    opacity: 0;
    visibility: hidden;
    z-index: 1; 
    transition: opacity 0.5s ease, visibility 0.5s ease; 
}

.depoimento-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2; 
}

p.depoimento-texto {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
    color: #ffffff !important; 
}

p.depoimento-nome {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 0.8px;
    font-family: 'Roboto', sans-serif;
    color: #ffffff !important;
}

p.depoimento-infos {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    color: #ffffff !important;
}

.depoimento-arrow {
    background-color: #df312d;
    color: #ffffff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.depoimento-arrow:hover {
    background-color: #c02925;
}

.depoimento-arrow.prev { left: 0; }
.depoimento-arrow.next { right: 0; }

.depoimentos-dots {
    display: flex;
    gap: 12px;
    margin-top: 35px;
    justify-content: center;
}

.depoimentos-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #E6E7E8; 
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.depoimentos-dots .dot.active {
    background-color: #df312d; 
}

@media (max-width: 1024px) {
    .depoimentos-titulo {
        font-size: 30px;
        padding: 0 20px;
    }
    .depoimentos-slider {
        margin: 0 15px;
        padding: 10px;
        min-height: 420px;
    }
    .depoimento-slide {
        padding: 30px 20px;
    }
    .depoimento-arrow {
        display: none; 
    }
    .depoimentos-dots {
        flex-wrap: wrap;
        padding: 0 20px;
    }
}

/* ==========================================================
   5. LINHAS DE IMPLEMENTOS
   ========================================================== */
.linhas-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.linhas-title {
    text-align: center;
    font-size: 38px; 
    font-weight: 900;
    color: #111111;
    margin-bottom: 50px;
    font-family: 'Provicali', sans-serif; 
    letter-spacing: -2.2px;
    line-height: 1.2;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.linhas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px; 
}

.linha-card {
    background-color: #D6D6D6;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 0px 0px 35px 0px;
}

.linha-img {
    width: 100%;
    height: 340px;      
    overflow: hidden;   
    display: flex;
    align-items: flex-start; 
    justify-content: center;
}

.linha-img img {
    width: 100%;
    height: auto;
    display: block;
}

.linha-info {
    padding: 30px 20px 10px 20px;
    background-color: #D6D6D6;
}

.linha-card h3 {
    font-size: 24px;
    font-weight: 900;
    color: #111111;
    margin-bottom: 5px;
    font-family: 'Provicali', sans-serif; 
    letter-spacing: -1px;
}

.linha-card a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #111111;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s;
}

.linha-card a:hover {
    color: #db3632;
}

@media (max-width: 1024px) {
    .linhas-title {
        font-size: 26px;
    }
    .linha-card {
        min-height: 400px; 
    }
}

/* ==========================================================
   6. CONSÓRCIO
   ========================================================== */
.consorcio-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 130px 40px;
}

.consorcio-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 15px;
    align-items: center;
}

.consorcio-left h2 {
    color: #ffffff;
    font-size: 33px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.setas-icon {
    max-width: 200px;
}

.consorcio-right p {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
}

/* ==========================================================
   7. FORMULÁRIO DE CONTATO
   ========================================================== */
.contato-section {
    background-color: #db3632;
    padding: 150px 0; 
    text-align: center;
}

.contato-section h2 {
    color: #ffffff;
    font-size: 26px; 
    font-weight: 700;
    margin-bottom: 45px;
    font-family: 'Montserrat', sans-serif;
}

.form-contato {
    width: 75%; 
    max-width: 950px;
    margin: 0 auto;
}

.html-form {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.html-form .row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px; 
}

.html-form .row-2 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.35fr 0.65fr; 
    gap: 15px;
}

.html-form input.form {
    height: 52px; 
    margin-bottom: 0; 
    width: 100%;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 3px;
    padding: 0 20px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    box-sizing: border-box;
    transition: 0.3s ease;
}

.html-form input.form::placeholder {
    color: #ffffff;
    opacity: 1; 
    font-weight: 500;
}

.html-form input.form:focus {
    outline: none;
    border: 1px solid #ffffff;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.08); 
}

.html-form button.botao {
    height: 52px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; 
    font-size: 15px;
    border: none;
    width: 100%;
    background-color: #ffffff;
    color: #db3632;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.3s ease;
}

.html-form button.botao:hover {
    background-color: #f0f0f0;
}

@media (max-width: 767px) {
    .form-contato {
        width: 100%;
    }
    .html-form .row,
    .html-form .row-2 {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}

/* ==========================================================
   RESPONSIVIDADE (TABLET E CELULAR)
   ========================================================== */
@media (max-width: 1024px) {
    .tradicao-grid, .sob-medida-grid, .consorcio-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .linhas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-section {
        min-height: 900px; 
        padding-top: 130px;
    }
    
    .hero-content h1 { font-size: 32px; }
    .hero-badge { display: none; }

    .sob-medida-img {
        margin-left: 0;
        width: 100%;
    }
    .sob-medida-img img {
        margin: 0 auto;
        display: block;
    }

    .linhas-title {
        font-size: 34px;
        text-align: left;
    }

    .setas-icon {
        max-width: 120px;
        margin: 0 auto;
        display: block;
    }

    .depoimentos-section .container {
        position: relative;
        padding-bottom: 80px; 
    }
    .depoimentos-wrapper {
        position: static; 
    }
    .depoimentos-slider {
        margin: 0; 
        max-width: 100%;
    }
    .depoimento-arrow {
        display: flex !important; 
        top: auto;
        bottom: 15px; 
        transform: none;
        width: 36px;
        height: 36px;
    }
    .depoimento-arrow.prev { left: 15px; }
    .depoimento-arrow.next { right: 15px; }
    
    .depoimentos-dots {
        position: absolute;
        bottom: 27px; 
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
        gap: 8px;
        flex-wrap: nowrap; 
    }
    .depoimentos-dots .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 120px 0 80px;
        text-align: center;
        min-height: 950px; 
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-content h1 {
        font-size: 32px !important;
        margin-bottom: 15px;
    }
    .hero-content p {
        font-size: 20px !important;
        text-align: center;
        line-height: 25px;
        margin-bottom: 40px; 
    }
    .hero-badge {
        display: block !important;
        position: absolute;
        bottom: -80px; 
        right: 280px; 
        max-width: 90px;
    }

    .tradicao-img {
        display: none !important;
    }
    .tradicao-grid {
        text-align: left !important; 
    }
    .fundo-seta-cinza {
        padding: 40px 20px !important; 
        background-size: cover;
    }
    .tradicao-content h2 {
        font-size: 32px !important; 
        line-height: 1.2;
    }
    .tradicao-content h3 {
        font-size: 18px !important; 
        margin: 15px 0;
    }
    .tradicao-content p {
        text-align: left !important; 
    }

    .projetos-section {
        display: none !important; 
    }
    
    .depoimentos-titulo {
        font-size: 28px;
        padding: 0 10px;
        margin-bottom: 25px;
    }
    .depoimentos-slider {
        min-height: 580px; 
    }
    .depoimento-slide {
        padding: 20px 25px;
    }
    p.depoimento-texto {
        font-size: 16px !important; 
        line-height: 1.5;
        margin-bottom: 15px;
    }
    p.depoimento-nome { font-size: 16px !important; }
    p.depoimento-infos { font-size: 14px !important; }
    
    .depoimento-arrow {
        width: 32px;
        height: 32px;
        bottom: 15px;
    }
    .depoimento-arrow.prev { left: 10px; }
    .depoimento-arrow.next { right: 10px; }
    
    .depoimentos-dots {
        bottom: 25px;
        gap: 6px;
    }
    .depoimentos-dots .dot {
        width: 8px;
        height: 8px;
    }

    .linhas-grid {
        grid-template-columns: 1fr;
    }
    .linhas-title {
        font-size: 26px; 
        text-align: left;
    }

    .setas-icon {
        max-width: 120px;
    }
}


/* ================== VARIÁVEIS E BASE ================== */
:root {
    --gotti-red: #db3632;
    --gotti-dark: #1a1a1a;
    --gotti-light-gray: #f5f5f5;
}

body { font-family: 'Montserrat', sans-serif; overflow-x: hidden; margin: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }

/* Botões */
.btn-solid-red { background: var(--gotti-red); color: #fff; padding: 12px 30px; text-decoration: none; font-weight: bold; border-radius: 4px; display: inline-block; transition: 0.3s; }
.btn-solid-red:hover { background: #b02724; }
.btn-solid-red-small { background: var(--gotti-red); color: #fff; padding: 8px 15px; text-decoration: none; font-size: 14px; font-weight: bold; }
.btn-solicitar-cotacao { background: var(--gotti-red); color: #fff; padding: 10px 20px; font-weight: bold; text-decoration: none; border-radius: 4px; }

.titulo-centralizado { text-align: center; font-size: 28px; font-weight: 800; text-transform: uppercase; margin-bottom: 40px; }
.titulo-centralizado span { color: var(--gotti-red); }
.titulo-centralizado.black { color: #000; }

/* ================== MENU FIXO ================== */
.tanques-sticky-menu { position: sticky; top: 0; background: var(--gotti-light-gray); z-index: 999; padding: 15px 0; border-bottom: 1px solid #ddd; }
.tanques-sticky-menu .container { display: flex; justify-content: space-between; align-items: center; }
.tanques-sticky-menu .nav-links { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; align-items: center; }
.tanques-sticky-menu .nav-links a { text-decoration: none; color: #333; font-weight: 600; font-size: 14px; transition: 0.3s; }
.tanques-sticky-menu .nav-links a:hover { color: var(--gotti-red); }

/* Dropdown */
.dropdown-item { position: relative; }
.dropdown-item .submenu { display: none; position: absolute; top: 100%; left: 0; background: #fff; list-style: none; padding: 10px 0; box-shadow: 0 5px 15px rgba(0,0,0,0.1); min-width: 180px; }
.dropdown-item:hover .submenu { display: block; }
.dropdown-item .submenu li a { padding: 10px 20px; display: block; }

/* ================== HERO ================== */
.hero-section { height: 70vh; background-size: cover; background-position: center; display: flex; align-items: center; color: #fff; }
.hero-content h1 { font-size: 48px; font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero-content p { font-size: 20px; font-weight: 500; margin-bottom: 30px; }

/* ================== INTRODUÇÃO ================== */
.intro-section { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding: 80px 20px; align-items: center; }
.intro-text h2 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.intro-text .borda-esquerda { border-left: 3px solid var(--gotti-red); padding-left: 20px; font-size: 16px; color: #555; line-height: 1.6; }
.intro-images { position: relative; }
.img-top { width: 80%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); z-index: 2; position: relative; }
.img-bottom { width: 70%; position: absolute; bottom: -30px; right: 0; z-index: 1; border-radius: 8px; }

/* ================== CARACTERÍSTICAS ================== */
.caracteristicas-section { background: var(--gotti-light-gray); padding: 80px 0; }
.grid-caracteristicas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.item-caracteristica { background: #fff; padding: 20px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.item-caracteristica p { font-size: 14px; font-weight: 600; margin: 0; }
.item-caracteristica i { color: var(--gotti-red); font-size: 18px; }

/* ================== GALERIA E ABAS ================== */
.galeria-section { padding: 80px 0; }
.nav-abas { display: flex; justify-content: center; gap: 15px; list-style: none; padding: 0; margin-bottom: 50px; flex-wrap: wrap; }
.nav-abas a { border: 1px solid #333; color: #333; padding: 8px 20px; text-decoration: none; font-weight: 600; font-size: 13px; text-transform: uppercase; transition: 0.3s; }
.nav-abas a:hover, .nav-abas a.active { background: var(--gotti-red); color: #fff; border-color: var(--gotti-red); }
.nav-abas a.btn-solid-red-small { border: none; }

.slider-block { margin-bottom: 60px; }
.slider-block h3 { text-align: center; font-size: 24px; font-weight: 800; margin-bottom: 30px; }
.swiper-tanques { padding-bottom: 40px; }
.swiper-tanques .swiper-slide img { width: 100%; height: 300px; object-fit: cover; border-radius: 4px; }
.swiper-tanques .swiper-slide p { text-align: right; font-style: italic; font-size: 13px; color: #666; margin-top: 10px; }
.swiper-button-next, .swiper-button-prev { color: #fff; background: rgba(0,0,0,0.5); width: 40px; height: 40px; border-radius: 50%; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 18px; }

/* ================== PERSONALIZAÇÕES ================== */
.personalizacoes-section { padding: 60px 20px; }
.perso-header { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; margin-bottom: 40px; align-items: center; }
.perso-header h2 { font-size: 24px; font-weight: 900; }
.perso-header p { font-size: 16px; color: #444; line-height: 1.6; }
.perso-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.perso-grid img { width: 100%; height: auto; border-radius: 4px; }

/* ================== MODELOS ================== */
.modelos-section { padding: 80px 20px; }
.modelos-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.modelos-intro h2 { font-size: 28px; font-weight: 800; color: var(--gotti-red); margin-bottom: 20px; }
.modelos-intro p { font-size: 16px; line-height: 1.6; color: #333; margin-bottom: 30px; }

.modelos-tabela { width: 100%; }
.tabela-head { display: flex; font-weight: bold; color: var(--gotti-red); border-bottom: 2px solid #eee; padding-bottom: 15px; margin-bottom: 15px; }
.col-modelo { width: 60%; }
.col-capacidade { width: 40%; }
.tabela-body.borda-esquerda-vermelha { border-left: 2px solid var(--gotti-red); padding-left: 15px; display: flex; flex-direction: column; gap: 15px; }
.tabela-row { display: flex; font-size: 15px; color: #000; font-weight: 500; }
.tabela-row span:first-child { width: 60%; }
.tabela-row span:last-child { width: 40%; }

/* ================== RODAPÉ (LINHAS) ================== */
.linhas-footer { background: #f9f9f9; padding: 60px 0 0 0; }
.grid-linhas { display: grid; grid-template-columns: 1fr 1fr; height: 350px; margin-top: 40px; }
.linha-link { display: flex; align-items: center; justify-content: center; text-decoration: none; background-size: cover; background-position: center; position: relative; }
.linha-link::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.5); transition: 0.3s; }
.linha-link:hover::before { background: rgba(0,0,0,0.3); }
.linha-link h3 { position: relative; z-index: 2; color: #fff; font-size: 32px; font-weight: 900; text-align: center; }

/* ================== RESPONSIVIDADE ================== */
@media (max-width: 991px) {
    .grid-caracteristicas { grid-template-columns: repeat(2, 1fr); }
    .intro-section, .modelos-wrap, .perso-header { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 36px; }
    .tanques-sticky-menu .nav-links { display: none; /* Em telas menores seria ideal um toggle de menu moble */ }
}
@media (max-width: 768px) {
    .grid-caracteristicas, .perso-grid, .grid-linhas { grid-template-columns: 1fr; }
    .grid-linhas { height: auto; }
    .linha-link { height: 250px; }
}


.wpcf7-response-output {
  color: #fff;    font-size: 13px;
}

.wpcf7-not-valid-tip {
    color: #ffb900;
    font-size: 12px;
    text-align: left;
    font-weight: normal;
    display: block;
}

.trabalhe {
	margin-top: 15px;
}

.wpcf7-file {
	line-height: 52px;
}

   .html-form .botao {
    height: 52px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border: none;
    width: 100%;
    background-color: #ffffff;
    color: #db3632;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.3s ease;
}
