/* ------------------------------------------------------------------------------
   Theme: Sudeste Eletricidade
   Base template: Minifolio
   File: main.css
   Version: 2.0
   Objetivo: CSS limpo com paleta Sudeste, banner em vídeo, logo horizontal e CTA.
-------------------------------------------------------------------------------*/

/* ------------------------------------------------------------------------------
   Design Tokens - Paleta Sudeste Eletricidade
-------------------------------------------------------------------------------*/
:root {
    --sudeste-azul-eletrico: #009FE3;
    --sudeste-azul: #0074C8;
    --sudeste-azul-marinho: #003B63;
    --sudeste-azul-escuro: #061A2F;
    --sudeste-cinza-claro: #F3F6F8;
    --sudeste-cinza-medio: #D9E3EA;
    --sudeste-grafite: #2D3033;
    --sudeste-branco: #FFFFFF;
}

/* ------------------------------------------------------------------------------
   Typography
-------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Roboto+Slab:300,400,500,600,700");

body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: var(--sudeste-grafite);
    background: var(--sudeste-branco);
}

p {
    font-size: 14px;
    line-height: 22.4px;
    color: #6c7279;
}

h1 {
    font-size: 65px;
    color: var(--sudeste-grafite);
}

h2 {
    font-size: 40px;
    color: var(--sudeste-grafite);
}

h3 {
    font-size: 28px;
    color: var(--sudeste-grafite);
    font-weight: 300;
}

h4 {
    font-size: 22px;
    color: var(--sudeste-grafite);
    font-weight: 400;
}

h5 {
    font-size: 14px;
    color: var(--sudeste-grafite);
    text-transform: uppercase;
    font-weight: 700;
}

/* ------------------------------------------------------------------------------
   Buttons
-------------------------------------------------------------------------------*/
.btn {
    background-color: var(--sudeste-azul);
    color: var(--sudeste-branco);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    border: 0;
    border-radius: 4px;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn:hover,
.btn:focus {
    background-color: var(--sudeste-azul-marinho);
    color: var(--sudeste-branco);
    text-decoration: none;
}

.btn-large {
    padding: 15px 40px;
}

.banner-cta {
    background-color: var(--sudeste-azul);
    color: var(--sudeste-branco) !important;
    padding: 16px 34px;
    border-radius: 4px;
    letter-spacing: 2px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.banner-cta:hover,
.banner-cta:focus {
    background-color: var(--sudeste-azul-marinho);
    color: var(--sudeste-branco) !important;
}

/* ------------------------------------------------------------------------------
   Global Styles
-------------------------------------------------------------------------------*/
a {
    color: var(--sudeste-azul);
}

a:hover,
a:focus {
    color: var(--sudeste-azul-eletrico);
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

.section {
    padding: 100px 0;
}

.no-padding {
    padding: 0;
}

.no-gutter [class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.space {
    margin-top: 60px;
}

/* ------------------------------------------------------------------------------
   Header / Navigation
-------------------------------------------------------------------------------*/
#header {
    position: fixed;
    width: 100%;
    z-index: 999;
}

#header .header-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.3s;
}

#header.fixed {
    background-color: rgba(6, 26, 47, 0.82) !important;
    backdrop-filter: blur(8px);
}

#header.fixed .header-content {
    border-bottom: 0;
    padding: 14px 0 !important;
}

#header .logo {
    float: none !important;
    display: flex;
    align-items: center;
    max-width: 170px;
}

#header .logo img.logo-sudeste {
    width: auto !important;
    max-width: 170px !important;
    max-height: 74px !important;
    height: auto !important;
    display: block !important;
}

#header.fixed .logo img.logo-sudeste {
    max-width: 140px !important;
    max-height: 56px !important;
}

.navigation {
    float: none !important;
    margin-left: auto;
}

.navigation.open {
    opacity: 0.9;
    visibility: visible;
    transition: opacity 0.5s;
}

.navigation .primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navigation li {
    display: inline-block;
}

.navigation a {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 13px;
    font-weight: 500;
    margin-left: 42px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.navigation a:hover,
.navigation a.active {
    color: var(--sudeste-azul-eletrico) !important;
}

.nav-toggle {
    display: none;
    height: 44px;
    overflow: hidden;
    position: fixed;
    right: 5%;
    text-indent: 100%;
    top: 32px;
    white-space: nowrap;
    width: 44px;
    z-index: 99999;
    transition: all 0.3s;
}

.nav-toggle:before,
.nav-toggle:after {
    border-radius: 50%;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition-property: transform;
    background-color: var(--sudeste-azul) !important;
}

.nav-toggle:before {
    transform: scale(1);
    transition-duration: 0.3s;
}

.nav-toggle:after {
    transform: scale(0);
    transition-duration: 0s;
}

.nav-toggle span {
    background-color: #fff;
    bottom: auto;
    display: inline-block;
    height: 3px;
    left: 50%;
    position: absolute;
    right: auto;
    top: 50%;
    width: 18px;
    z-index: 10;
    transform: translateX(-50%) translateY(-50%);
}

.nav-toggle span:before,
.nav-toggle span:after {
    background-color: #fff;
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: transform 0.3s;
}

.nav-toggle span:before {
    transform: translateY(-6px) rotate(0deg);
}

.nav-toggle span:after {
    transform: translateY(6px) rotate(0deg);
}

.nav-toggle.close-nav:before {
    transform: scale(0);
}

.nav-toggle.close-nav:after {
    transform: scale(1);
}

.nav-toggle.close-nav span {
    background-color: rgba(255, 255, 255, 0);
}

.nav-toggle.close-nav span:before,
.nav-toggle.close-nav span:after {
    background-color: #fff;
}

.nav-toggle.close-nav span:before {
    transform: translateY(0) rotate(45deg);
}

.nav-toggle.close-nav span:after {
    transform: translateY(0) rotate(-45deg);
}

/* ------------------------------------------------------------------------------
   Banner com vídeo de fundo
-------------------------------------------------------------------------------*/
.banner {
    position: relative;
    overflow: hidden;
    min-height: 750px;
    background-color: var(--sudeste-azul-escuro);
}

.banner-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    min-height: 750px;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(6, 26, 47, 0.62) 0%,
        rgba(6, 26, 47, 0.38) 42%,
        rgba(6, 26, 47, 0.12) 100%
    ) !important;
    z-index: 1;
    pointer-events: none;
}

.banner #header,
.banner .container,
.banner .banner-content {
    position: relative;
    z-index: 2;
}

.banner .banner-content {
    width: 90%;
    max-width: 1200px;
    min-height: 750px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 0;
}

.banner-text {
    position: relative;
    z-index: 2;
    padding-top: 0 !important;
    max-width: 560px;
    margin: 0;
    text-align: left !important;
}

.banner-text h1 {
    font-family: "Roboto", sans-serif !important;
    font-size: 52px !important;
    line-height: 1.08 !important;
    font-weight: 700 !important;
    letter-spacing: -1px !important;
    color: var(--sudeste-branco) !important;
    margin: 0 0 22px 0 !important;
    text-align: left !important;
}

.banner-text p {
    font-family: "Roboto", sans-serif !important;
    font-size: 20px !important;
    line-height: 1.55 !important;
    font-weight: 400 !important;
    letter-spacing: 0.3px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 520px;
    margin: 0 0 32px 0 !important;
    text-align: left !important;
}

.banner-widget {
    margin: 0;
    padding: 0;
}

.banner-image-area {
    margin-top: 35px;
    text-align: center;
}

.banner-image-area img {
    max-width: 360px;
    width: 100%;
    height: auto;
    display: inline-block;
}

/* ------------------------------------------------------------------------------
   Description / Sobre
-------------------------------------------------------------------------------*/
.descripton p {
    color: var(--sudeste-grafite);
    font-size: 18px;
    line-height: 33px;
    font-weight: 400;
}

/* ------------------------------------------------------------------------------
   Works / Produtos
-------------------------------------------------------------------------------*/
.work {
    box-shadow: 0 0 0 1px #fff;
    overflow: hidden;
    position: relative;
    visibility: hidden;
}

.work img {
    width: 100%;
    height: 100%;
}

.work .overlay {
    background: rgba(0, 59, 99, 0.88) !important;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    transition: opacity 0.3s;
}

.work .overlay-caption {
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.work h5,
.work p,
.work img {
    transition: all 0.5s;
}

.work h5,
.work p {
    color: #fff;
    margin: 0;
    opacity: 0;
}

.work h5 {
    margin-bottom: 5px;
    transform: translate3d(0, -200%, 0);
}

.work p {
    transform: translate3d(0, 200%, 0);
}

.work-box:hover img {
    transform: scale(1.2);
}

.work-box:hover .overlay {
    opacity: 1;
}

.work-box:hover .overlay h5,
.work-box:hover .overlay p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Work animation */
.work:nth-child(1) { animation-delay: 0.1s; }
.work:nth-child(2) { animation-delay: 0.2s; }
.work:nth-child(3) { animation-delay: 0.3s; }
.work:nth-child(4) { animation-delay: 0.4s; }
.work:nth-child(5) { animation-delay: 0.8s; }
.work:nth-child(6) { animation-delay: 0.7s; }
.work:nth-child(7) { animation-delay: 0.6s; }
.work:nth-child(8) { animation-delay: 0.5s; }

.animated {
    visibility: visible;
}

/* ------------------------------------------------------------------------------
   Hire me / Chamada para orçamento
-------------------------------------------------------------------------------*/
.hireme {
    background-color: var(--sudeste-cinza-claro) !important;
}

.hireme h3 {
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    font-weight: 400;
    margin-top: 0;
    color: var(--sudeste-azul-marinho);
}

.hireme p {
    color: var(--sudeste-grafite);
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.hireme .btn {
    margin-top: 30px;
}

/* ------------------------------------------------------------------------------
   Contact
-------------------------------------------------------------------------------*/
.contact {
    background-color: #EAF3F9 !important;
}

.contact h3 {
    color: var(--sudeste-azul-marinho);
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    font-weight: 400;
    margin-top: 0;
}

.contact p {
    color: var(--sudeste-grafite);
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.contact .btn {
    margin-top: 30px;
}

/* ------------------------------------------------------------------------------
   Footer
-------------------------------------------------------------------------------*/
.footer {
    text-align: center;
    background-color: var(--sudeste-azul-escuro);
}

.footer p {
    font-family: "Roboto", sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer a {
    color: rgba(255, 255, 255, 0.72);
}

.footer a:hover {
    color: var(--sudeste-azul-eletrico);
}

.footer .footer-share {
    margin-top: 0;
}

.footer .footer-share li {
    background: var(--sudeste-azul-marinho);
    border-radius: 50%;
    color: #ffffff;
    width: 26px;
    height: 26px;
    padding: 4px 0;
    margin: 0 5px;
    display: inline-block;
    float: none;
}

.footer .footer-share li:hover {
    background: var(--sudeste-azul);
}

.footer .footer-share a {
    color: #fff;
}

.footer .fa-heart {
    color: var(--sudeste-azul-eletrico);
    font-size: 11px;
    margin: 0 2px;
}

/* ------------------------------------------------------------------------------
   Inner Page Banner
-------------------------------------------------------------------------------*/
.innerbanner {
    background-color: var(--sudeste-azul-marinho);
    min-height: 100%;
}

.innerbanner-text {
    padding-top: 20%;
    padding-bottom: 5%;
}

.innerbanner-text p {
    color: #fff;
    font-family: "Roboto Slab", sans-serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 44px;
    margin-top: 30px;
    margin-bottom: 80px;
}

/* ------------------------------------------------------------------------------
   Inner description
-------------------------------------------------------------------------------*/
.inner-description h1 {
    color: var(--sudeste-grafite);
    font-size: 23px;
    font-weight: 700;
    margin-top: 55px;
}

.inner-description p {
    color: var(--sudeste-grafite);
    font-size: 18px;
    line-height: 33px;
    font-weight: 400;
}

.inner-description img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

/* ------------------------------------------------------------------------------
   Contact form
-------------------------------------------------------------------------------*/
.conForm {
    margin-top: 50px;
}

.conForm input {
    background: var(--sudeste-branco);
    color: var(--sudeste-grafite);
    padding: 15px 30px;
    border: 1px solid var(--sudeste-cinza-medio);
    margin-right: 3%;
    margin-bottom: 30px;
    outline: none;
    font-style: normal;
    font-size: 15px;
}

.conForm input.noMarr {
    margin-right: 0;
}

.conForm textarea {
    background: var(--sudeste-branco);
    color: var(--sudeste-grafite);
    padding: 15px 30px;
    margin-bottom: 18px;
    outline: none;
    height: 300px;
    font-style: normal;
    resize: none;
    font-size: 15px;
    border: 1px solid var(--sudeste-cinza-medio);
}

.conForm input:focus,
.conForm textarea:focus {
    border-color: var(--sudeste-azul);
}

.conForm .submitBnt {
    background: var(--sudeste-azul) !important;
    color: #fff;
    padding: 15px 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 5px;
    border: 0;
    border-radius: 4px;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.conForm .submitBnt:hover {
    background: var(--sudeste-azul-marinho) !important;
    color: #fff;
}

.error_message {
    color: #ff675f;
    font-weight: 500;
    padding-bottom: 15px;
}

#success_page h3 {
    color: #5ed07b;
    font-size: 17px;
    font-weight: 700;
}

/* ------------------------------------------------------------------------------
   Responsive
-------------------------------------------------------------------------------*/
@media screen and (max-width: 1024px) {
    #header .header-content {
        width: 90%;
    }

    .navigation .primary-nav {
        display: block;
    }

    .navigation a {
        margin-left: 0;
    }
}

@media screen and (max-width: 992px) {
    .banner-text {
        max-width: 500px;
    }

    .banner-text h1 {
        font-size: 44px !important;
    }

    .banner-text p {
        font-size: 18px !important;
    }
}

@media screen and (max-width: 768px) {
    #header .logo img.logo-sudeste {
        max-height: 56px !important;
        max-width: 130px !important;
    }

    .banner {
        background-image: url("../images/banner-sudeste-poster.png");
        background-size: cover;
        background-position: center center;
        min-height: 620px;
    }

    .banner-bg-video {
        display: none;
    }

    .banner .banner-content {
        min-height: 620px;
        align-items: center;
        justify-content: center;
    }

    .banner-text {
        max-width: 100%;
        text-align: center !important;
        padding: 0 20px;
    }

    .banner-text h1 {
        font-size: 34px !important;
        line-height: 1.15 !important;
        text-align: center !important;
    }

    .banner-text p {
        font-size: 17px !important;
        line-height: 1.5 !important;
        text-align: center !important;
        max-width: 100%;
    }

    .banner-image-area img {
        max-width: 260px;
    }
}
/* ------------------------------------------------------------------------------
   Sobre Sudeste
-------------------------------------------------------------------------------*/

.sobre-sudeste {
    background-color: #ffffff;
    padding: 110px 0;
}

.section-label {
    display: inline-block;
    color: var(--sudeste-azul);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.sobre-sudeste h2 {
    color: var(--sudeste-azul-marinho);
    font-size: 42px;
    line-height: 1.18;
    font-weight: 700;
    margin: 0 0 28px 0;
}

.sobre-sudeste p {
    color: var(--sudeste-grafite);
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.sobre-sudeste-intro p {
    color: #4f5b63;
}

.sobre-sudeste-content {
    padding-left: 50px;
}

.sobre-diferenciais {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 38px;
}

.sobre-card {
    background: var(--sudeste-cinza-claro);
    border: 1px solid #dce7ee;
    border-radius: 10px;
    padding: 28px 24px;
    min-height: 190px;
    transition: all 0.3s ease;
}

.sobre-card:hover {
    transform: translateY(-5px);
    border-color: var(--sudeste-azul);
    box-shadow: 0 18px 40px rgba(0, 59, 99, 0.12);
}

.sobre-card h4 {
    color: var(--sudeste-azul-marinho);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 14px 0;
}

.sobre-card p {
    color: #5d6870;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

@media screen and (max-width: 992px) {
    .sobre-sudeste-content {
        padding-left: 15px;
        margin-top: 40px;
    }

    .sobre-diferenciais {
        grid-template-columns: 1fr;
    }

    .sobre-sudeste h2 {
        font-size: 34px;
    }
}

@media screen and (max-width: 768px) {
    .sobre-sudeste {
        padding: 80px 0;
    }

    .sobre-sudeste h2 {
        font-size: 30px;
    }

    .sobre-sudeste p {
        font-size: 16px;
        line-height: 1.65;
    }
}
/* ------------------------------------------------------------------------------
   Produtos Sudeste
-------------------------------------------------------------------------------*/

.produtos-sudeste {
    background-color: var(--sudeste-cinza-claro);
    padding: 110px 0;
}

.produtos-header {
    margin-bottom: 60px;
}

.produtos-header h2 {
    color: var(--sudeste-azul-marinho);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 24px 0;
}

.produtos-header p {
    color: #4f5b63;
    font-size: 18px;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
}

.produtos-grid {
    margin-top: 20px;
}

.produto-card {
    background: #ffffff;
    border: 1px solid #dce7ee;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    min-height: 420px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(6, 26, 47, 0.05);
}

.produto-card:hover {
    transform: translateY(-6px);
    border-color: var(--sudeste-azul);
    box-shadow: 0 20px 45px rgba(6, 26, 47, 0.14);
}

.produto-img {
    height: 210px;
    overflow: hidden;
    background-color: #e8eef2;
}

.produto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.produto-card:hover .produto-img img {
    transform: scale(1.08);
}

.produto-info {
    padding: 26px 24px 28px;
}

.produto-info h4 {
    color: var(--sudeste-azul-marinho);
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 14px 0;
}

.produto-info p {
    color: #5d6870;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.produto-info a {
    color: var(--sudeste-azul);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.produto-info a:hover {
    color: var(--sudeste-azul-marinho);
}

@media screen and (max-width: 992px) {
    .produtos-header h2 {
        font-size: 34px;
    }

    .produto-card {
        min-height: 390px;
    }
}

@media screen and (max-width: 768px) {
    .produtos-sudeste {
        padding: 80px 0;
    }

    .produtos-header {
        margin-bottom: 40px;
    }

    .produtos-header h2 {
        font-size: 30px;
    }

    .produtos-header p {
        font-size: 16px;
    }

    .produto-img {
        height: 230px;
    }
}
/* ------------------------------------------------------------------------------
   Correção da grade de produtos
-------------------------------------------------------------------------------*/

.produtos-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.produtos-grid > [class*="col-"] {
    float: none !important;
    display: flex;
    margin-bottom: 30px;
}

.produto-card {
    width: 100%;
    height: 100%;
    min-height: 430px;
    display: flex;
    flex-direction: column;
}

.produto-img {
    height: 190px;
    flex-shrink: 0;
}

.produto-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.produto-info p {
    flex: 1;
}

.produto-info a {
    margin-top: auto;
}

/* Desktop: 4 cards por linha */
@media screen and (min-width: 992px) {
    .produtos-grid > .col-md-3 {
        width: 25%;
    }
}

/* Tablet: 2 cards por linha */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .produtos-grid > .col-sm-6 {
        width: 50%;
    }
}

/* Celular: 1 card por linha */
@media screen and (max-width: 767px) {
    .produtos-grid > [class*="col-"] {
        width: 100%;
    }

    .produto-card {
        min-height: auto;
    }
}
/* ------------------------------------------------------------------------------
   Produtos Sudeste - 3 categorias principais
-------------------------------------------------------------------------------*/

.produtos-sudeste {
    background-color: var(--sudeste-cinza-claro);
    padding: 110px 0;
}

.produtos-header {
    margin-bottom: 60px;
}

.produtos-header h2 {
    color: var(--sudeste-azul-marinho);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 24px 0;
}

.produtos-header p {
    color: #4f5b63;
    font-size: 18px;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
}

.produtos-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.produtos-grid > [class*="col-"] {
    float: none !important;
    display: flex;
    margin-bottom: 30px;
}

.produto-card {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border: 1px solid #dce7ee;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 460px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(6, 26, 47, 0.06);
}

.produto-card:hover {
    transform: translateY(-6px);
    border-color: var(--sudeste-azul);
    box-shadow: 0 20px 45px rgba(6, 26, 47, 0.15);
}

.produto-img {
    height: 240px;
    overflow: hidden;
    background-color: #e8eef2;
    flex-shrink: 0;
}

.produto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.produto-card:hover .produto-img img {
    transform: scale(1.07);
}

.produto-info {
    padding: 30px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.produto-categoria {
    display: inline-block;
    color: var(--sudeste-azul);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.produto-info h4 {
    color: var(--sudeste-azul-marinho);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.produto-info p {
    color: #5d6870;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 22px;
    flex: 1;
}

.produto-info a {
    color: var(--sudeste-azul);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: auto;
}

.produto-info a:hover {
    color: var(--sudeste-azul-marinho);
}

@media screen and (max-width: 992px) {
    .produtos-header h2 {
        font-size: 34px;
    }

    .produto-card {
        min-height: 430px;
    }
}

@media screen and (max-width: 768px) {
    .produtos-sudeste {
        padding: 80px 0;
    }

    .produtos-header {
        margin-bottom: 40px;
    }

    .produtos-header h2 {
        font-size: 30px;
    }

    .produtos-header p {
        font-size: 16px;
    }

    .produtos-grid > [class*="col-"] {
        width: 100%;
    }

    .produto-img {
        height: 230px;
    }

    .produto-card {
        min-height: auto;
    }
}
.produto-lista {
    margin: 18px 0 22px 0;
    padding: 0;
}

.produto-lista li {
    position: relative;
    color: #4f5b63;
    font-size: 14px;
    line-height: 1.6;
    padding-left: 18px;
    margin-bottom: 6px;
}

.produto-lista li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    background-color: var(--sudeste-azul);
    border-radius: 50%;
}
/* ------------------------------------------------------------------------------
   Orçamento Sudeste
-------------------------------------------------------------------------------*/

.orcamento-sudeste {
    background: linear-gradient(
        135deg,
        var(--sudeste-azul-marinho) 0%,
        var(--sudeste-azul-escuro) 100%
    );
    padding: 85px 0;
}

.orcamento-sudeste .section-label {
    color: var(--sudeste-azul-eletrico);
}

.orcamento-sudeste h2 {
    color: #ffffff;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.orcamento-sudeste p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    max-width: 760px;
}

.orcamento-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 180px;
}

.orcamento-action .btn {
    background-color: var(--sudeste-azul);
    color: #ffffff;
    white-space: nowrap;
}

.orcamento-action .btn:hover,
.orcamento-action .btn:focus {
    background-color: #ffffff;
    color: var(--sudeste-azul-marinho) !important;
}

@media screen and (max-width: 768px) {
    .orcamento-sudeste {
        text-align: center;
        padding: 70px 0;
    }

    .orcamento-sudeste h2 {
        font-size: 30px;
    }

    .orcamento-sudeste p {
        font-size: 16px;
    }

    .orcamento-action {
        justify-content: center;
        min-height: auto;
        margin-top: 35px;
    }
}
/* ------------------------------------------------------------------------------
   Contato Sudeste
-------------------------------------------------------------------------------*/

.contato-sudeste {
    background-color: #ffffff;
    padding: 110px 0;
}

.contato-header {
    margin-bottom: 60px;
}

.contato-sudeste h2 {
    color: var(--sudeste-azul-marinho);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 22px 0;
}

.contato-sudeste p {
    color: #4f5b63;
    font-size: 18px;
    line-height: 1.7;
}

.contato-content {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.contato-info,
.contato-formulario {
    display: flex;
}

.contato-card-info,
.form-box {
    width: 100%;
    background-color: var(--sudeste-cinza-claro);
    border: 1px solid #dce7ee;
    border-radius: 14px;
    padding: 42px;
    box-shadow: 0 10px 30px rgba(6, 26, 47, 0.06);
}

.contato-card-info h4,
.form-box h4 {
    color: var(--sudeste-azul-marinho);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.contato-lista {
    margin-top: 28px;
    padding: 0;
}

.contato-lista li {
    color: #4f5b63;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.contato-lista strong {
    color: var(--sudeste-azul-marinho);
}

.contato-lista a {
    color: var(--sudeste-azul);
    font-weight: 600;
}

.form-box form {
    display: flex;
    flex-direction: column;
}

.form-box input,
.form-box textarea {
    width: 100%;
    background: #ffffff;
    color: var(--sudeste-grafite);
    padding: 15px 18px;
    border: 1px solid #d9e3ea;
    margin-bottom: 18px;
    outline: none;
    font-size: 15px;
    border-radius: 6px;
}

.form-box textarea {
    min-height: 150px;
    resize: vertical;
}

.form-box input:focus,
.form-box textarea:focus {
    border-color: var(--sudeste-azul);
}

.form-box .submitBnt {
    background: var(--sudeste-azul) !important;
    color: #ffffff;
    border: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-box .submitBnt:hover {
    background: var(--sudeste-azul-marinho) !important;
}

@media screen and (max-width: 992px) {
    .contato-info {
        margin-bottom: 30px;
    }

    .contato-info,
    .contato-formulario {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .contato-sudeste {
        padding: 80px 0;
    }

    .contato-sudeste h2 {
        font-size: 32px;
    }

    .contato-sudeste p {
        font-size: 16px;
    }

    .contato-card-info,
    .form-box {
        padding: 30px 24px;
    }
}
/* ------------------------------------------------------------------------------
   Contact Form 7 - Sudeste
-------------------------------------------------------------------------------*/

.form-box .wpcf7 label {
    display: block;
    color: var(--sudeste-azul-marinho);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}

.form-box .wpcf7 input,
.form-box .wpcf7 textarea {
    width: 100%;
    background: #ffffff;
    color: var(--sudeste-grafite);
    padding: 15px 18px;
    border: 1px solid #d9e3ea;
    margin-top: 8px;
    margin-bottom: 18px;
    outline: none;
    font-size: 15px;
    border-radius: 6px;
}

.form-box .wpcf7 textarea {
    min-height: 150px;
    resize: vertical;
}

.form-box .wpcf7 input:focus,
.form-box .wpcf7 textarea:focus {
    border-color: var(--sudeste-azul);
}

.form-box .wpcf7 input[type="submit"] {
    background: var(--sudeste-azul) !important;
    color: #ffffff;
    border: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-box .wpcf7 input[type="submit"]:hover {
    background: var(--sudeste-azul-marinho) !important;
}

.wpcf7-not-valid-tip {
    color: #d93025;
    font-size: 13px;
    margin-top: -10px;
    margin-bottom: 12px;
}

.wpcf7-response-output {
    border-radius: 6px;
    padding: 12px 16px !important;
    margin: 20px 0 0 0 !important;
    font-size: 14px;
}
/* ------------------------------------------------------------------------------
   Rodapé Sudeste
-------------------------------------------------------------------------------*/

.footer-sudeste {
    background-color: var(--sudeste-azul-escuro);
    padding: 70px 0 28px;
    color: rgba(255, 255, 255, 0.78);
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer-logo img {
    max-width: 210px;
    height: auto;
    display: block;
    margin-bottom: 24px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.7;
    max-width: 330px;
    margin: 0;
}

.footer-sudeste h4 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 22px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-sudeste ul {
    margin: 0;
    padding: 0;
}

.footer-sudeste li {
    list-style: none;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.6;
}

.footer-sudeste strong {
    color: #ffffff;
}

.footer-sudeste a {
    color: rgba(255, 255, 255, 0.72);
    transition: all 0.3s ease;
}

.footer-sudeste a:hover,
.footer-sudeste a:focus {
    color: var(--sudeste-azul-eletrico);
    text-decoration: none;
}

.footer-share {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-share li {
    margin: 0;
}

.footer-share a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--sudeste-azul-marinho);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-share a:hover {
    background-color: var(--sudeste-azul);
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 50px;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin: 0;
}

@media screen and (max-width: 992px) {
    .footer-brand,
    .footer-contact,
    .footer-menu,
    .footer-social {
        margin-bottom: 36px;
    }
}

@media screen and (max-width: 768px) {
    .footer-sudeste {
        padding: 56px 0 24px;
        text-align: center;
    }

    .footer-logo img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-share {
        justify-content: center;
    }
}
/* ------------------------------------------------------------------------------
   Ajuste de navegação one page
-------------------------------------------------------------------------------*/

html {
    scroll-behavior: smooth;
}

#aboutme,
#works,
#orcamento,
#contact {
    scroll-margin-top: 95px;
}
/* ------------------------------------------------------------------------------
   Ajustes finais mobile - Sudeste
-------------------------------------------------------------------------------*/

@media screen and (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    #header .header-content {
        width: 90%;
        padding: 18px 0 !important;
    }

    #header .logo img.logo-sudeste {
        max-width: 150px !important;
        max-height: 58px !important;
    }

    .nav-toggle {
        display: block;
        top: 22px;
    }

    .banner {
        min-height: 620px;
        background-image: url("../images/banner-sudeste-poster.png");
        background-size: cover;
        background-position: center center;
    }

    .banner-bg-video {
        display: none !important;
    }

    .banner::after {
        background: linear-gradient(
            90deg,
            rgba(6, 26, 47, 0.72) 0%,
            rgba(6, 26, 47, 0.52) 55%,
            rgba(6, 26, 47, 0.28) 100%
        ) !important;
    }

    .banner .banner-content {
        min-height: 620px;
        width: 90%;
        justify-content: center;
        align-items: center;
    }

    .banner-text {
        max-width: 100%;
        text-align: center !important;
        padding: 0 10px;
    }

    .banner-text h1 {
        font-size: 34px !important;
        line-height: 1.15 !important;
        text-align: center !important;
    }

    .banner-text p {
        font-size: 17px !important;
        line-height: 1.55 !important;
        text-align: center !important;
    }

    .banner-cta {
        padding: 14px 26px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .sobre-sudeste,
    .produtos-sudeste,
    .contato-sudeste {
        padding: 75px 0;
    }

    .sobre-sudeste h2,
    .produtos-header h2,
    .contato-sudeste h2 {
        font-size: 30px !important;
        line-height: 1.2;
    }

    .sobre-sudeste p,
    .produtos-header p,
    .contato-sudeste p {
        font-size: 16px;
        line-height: 1.65;
    }

    .sobre-sudeste-content {
        padding-left: 15px;
        margin-top: 35px;
    }

    .sobre-diferenciais {
        grid-template-columns: 1fr;
    }

    .produtos-grid > [class*="col-"] {
        width: 100%;
        display: block;
    }

    .produto-card {
        min-height: auto;
        margin-bottom: 28px;
    }

    .produto-img {
        height: 230px;
    }

    .orcamento-sudeste {
        text-align: center;
        padding: 70px 0;
    }

    .orcamento-sudeste h2 {
        font-size: 30px;
    }

    .orcamento-action {
        justify-content: center;
        min-height: auto;
        margin-top: 35px;
    }

    .contato-info {
        margin-bottom: 30px;
    }

    .contato-card-info,
    .form-box {
        padding: 30px 24px;
    }

    .footer-sudeste {
        text-align: center;
        padding: 56px 0 24px;
    }

    .footer-logo img {
        margin-left: auto;
        margin-right: auto;
        max-width: 190px;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-share {
        justify-content: center;
    }
}
/* ------------------------------------------------------------------------------
   Correção menu mobile Sudeste
-------------------------------------------------------------------------------*/

@media screen and (max-width: 1024px) {

    .nav-toggle {
        display: block !important;
        position: fixed;
        right: 5%;
        top: 24px;
        z-index: 100001;
    }

    .navigation {
        position: fixed !important;
        background: rgba(6, 26, 47, 0.97) !important;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        z-index: 100000;
        visibility: hidden;
        opacity: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.4s ease, visibility 0s 0.4s;
    }

    .navigation.open {
        visibility: visible !important;
        opacity: 1 !important;
        transition: opacity 0.4s ease;
    }

    .navigation .primary-nav {
        display: block !important;
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .navigation li {
        display: block !important;
        margin-bottom: 24px;
    }

    .navigation a {
        display: block;
        margin: 0 !important;
        color: #ffffff !important;
        font-size: 24px;
        font-weight: 700;
        letter-spacing: 3px;
        text-align: center;
        text-transform: uppercase;
    }

    .navigation a:hover,
    .navigation a.active {
        color: var(--sudeste-azul-eletrico) !important;
    }

    .nav-toggle.close-nav {
        z-index: 100002;
    }
}
html {
    scroll-behavior: smooth;
}

#aboutme,
#works,
#orcamento,
#contact {
    scroll-margin-top: 95px;
}
/* ------------------------------------------------------------------------------
   Correção clique menu mobile
-------------------------------------------------------------------------------*/

@media screen and (max-width: 1024px) {
    .navigation.open {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 100000 !important;
    }

    .navigation.open .primary-nav,
    .navigation.open li,
    .navigation.open a {
        pointer-events: auto !important;
    }

    .navigation.open a {
        position: relative;
        z-index: 100003 !important;
        cursor: pointer;
    }

    .nav-toggle {
        z-index: 100004 !important;
    }
}
/* ------------------------------------------------------------------------------
   Correção final do menu mobile clicável
-------------------------------------------------------------------------------*/

@media screen and (max-width: 1024px) {
    .navigation.open {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 100000 !important;
    }

    .navigation.open ul,
    .navigation.open li,
    .navigation.open a {
        pointer-events: auto !important;
    }

    .navigation.open a {
        position: relative;
        z-index: 100003 !important;
        cursor: pointer;
    }

    .nav-toggle {
        z-index: 100004 !important;
    }
}
/* ------------------------------------------------------------------------------
   MENU MOBILE FINAL - SUDESTE
   Corrige links sem clique e menu misturado com banner
-------------------------------------------------------------------------------*/

@media screen and (max-width: 1024px) {

    body.menu-mobile-open {
        overflow: hidden;
    }

    #header {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100000 !important;
    }

    #header .header-content {
        position: relative;
        z-index: 100004 !important;
    }

    #header .logo {
        position: relative;
        z-index: 100004 !important;
    }

    .nav-toggle {
        display: block !important;
        position: fixed !important;
        top: 22px !important;
        right: 24px !important;
        z-index: 100006 !important;
    }

    #header .navigation {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;

        width: 100vw !important;
        height: 100vh !important;

        background: rgba(6, 26, 47, 0.98) !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;

        transform: translateX(100%);
        transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s 0.35s;

        margin: 0 !important;
        padding: 0 !important;

        z-index: 100003 !important;
    }

    #header .navigation.open {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateX(0);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    #header .navigation .primary-nav {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    #header .navigation li {
        display: block !important;
        margin: 20px 0 !important;
        padding: 0 !important;
    }

    #header .navigation a {
        display: inline-block !important;
        position: relative !important;
        z-index: 100007 !important;

        color: #ffffff !important;
        font-size: 28px !important;
        font-weight: 700 !important;
        letter-spacing: 4px !important;
        text-transform: uppercase !important;

        padding: 12px 22px !important;
        margin: 0 !important;

        cursor: pointer !important;
        pointer-events: auto !important;
    }

    #header .navigation a:hover,
    #header .navigation a:focus,
    #header .navigation a.active {
        color: var(--sudeste-azul-eletrico) !important;
    }
}
/* ------------------------------------------------------------------------------
   Botão voltar ao topo
-------------------------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background-color: var(--sudeste-azul);
    color: #ffffff;
    font-size: 24px;
    line-height: 48px;
    text-align: center;
    cursor: pointer;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(6, 26, 47, 0.28);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus {
    background-color: var(--sudeste-azul-marinho);
    color: #ffffff;
    outline: none;
}

@media screen and (max-width: 768px) {
    .back-to-top {
        right: 18px;
        bottom: 18px;
        width: 44px;
        height: 44px;
        font-size: 22px;
        line-height: 44px;
    }
}
/* ------------------------------------------------------------------------------
   Header Slider - Sudeste Eletricidade
-------------------------------------------------------------------------------*/

.banner {
    position: relative;
    overflow: hidden;
    min-height: 750px;
    background-color: var(--sudeste-azul-escuro);
}

.banner-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.banner-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.9s ease, transform 1.4s ease;
}

.banner-slide.active {
    opacity: 1;
    transform: scale(1);
}

.banner-slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay para leitura */
.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(6, 26, 47, 0.70) 0%,
        rgba(6, 26, 47, 0.48) 42%,
        rgba(6, 26, 47, 0.18) 100%
    ) !important;
    z-index: 1;
    pointer-events: none;
}

.banner #header,
.banner .banner-content,
.banner .banner-dots {
    position: relative;
    z-index: 2;
}

.banner .banner-content {
    width: 90%;
    max-width: 1200px;
    min-height: 750px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 0;
}

.banner-text {
    display: none;
    max-width: 590px;
    margin: 0;
    text-align: left !important;
}

.banner-text.active {
    display: block;
    animation: bannerTextFade 0.7s ease forwards;
}

@keyframes bannerTextFade {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-text h1 {
    font-family: "Roboto", sans-serif !important;
    font-size: 52px !important;
    line-height: 1.08 !important;
    font-weight: 700 !important;
    letter-spacing: -1px !important;
    color: #ffffff !important;
    margin: 0 0 22px 0 !important;
    text-align: left !important;
}

.banner-text p {
    font-family: "Roboto", sans-serif !important;
    font-size: 20px !important;
    line-height: 1.55 !important;
    font-weight: 400 !important;
    letter-spacing: 0.3px !important;
    color: rgba(255, 255, 255, 0.92) !important;
    max-width: 560px;
    margin: 0 0 32px 0 !important;
    text-align: left !important;
}

.banner-dots {
    position: absolute !important;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active,
.banner-dot:hover {
    background-color: var(--sudeste-azul-eletrico);
    transform: scale(1.15);
}

/* Mobile */
@media screen and (max-width: 768px) {
    .banner {
        min-height: 620px;
    }

    .banner-slide {
        background-position: center center;
    }

    .banner::after {
        background: linear-gradient(
            90deg,
            rgba(6, 26, 47, 0.78) 0%,
            rgba(6, 26, 47, 0.62) 55%,
            rgba(6, 26, 47, 0.36) 100%
        ) !important;
    }

    .banner .banner-content {
        min-height: 620px;
        width: 90%;
        justify-content: center;
        align-items: center;
    }

    .banner-text {
        max-width: 100%;
        text-align: center !important;
        padding: 0 10px;
    }

    .banner-text h1 {
        font-size: 34px !important;
        line-height: 1.15 !important;
        text-align: center !important;
    }

    .banner-text p {
        font-size: 17px !important;
        line-height: 1.55 !important;
        text-align: center !important;
        max-width: 100%;
    }

    .banner-dots {
        bottom: 22px;
    }
}
/* ------------------------------------------------------------------------------
   SEO visual - H2 do slider com aparência de título principal
-------------------------------------------------------------------------------*/

.banner-text h2 {
    font-family: "Roboto", sans-serif !important;
    font-size: 52px !important;
    line-height: 1.08 !important;
    font-weight: 700 !important;
    letter-spacing: -1px !important;
    color: #ffffff !important;
    margin: 0 0 22px 0 !important;
    text-align: left !important;
}

@media screen and (max-width: 768px) {
    .banner-text h2 {
        font-size: 34px !important;
        line-height: 1.15 !important;
        text-align: center !important;
    }
}
/* ------------------------------------------------------------------------------
   Correção de alinhamento dos textos do slider
-------------------------------------------------------------------------------*/

.banner .banner-content {
    justify-content: flex-start !important;
}

.banner-text {
    width: 100% !important;
    max-width: 620px !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    box-sizing: border-box;
}

.banner-text h1,
.banner-text h2 {
    max-width: 620px !important;
    overflow-wrap: normal;
    word-break: normal;
}

.banner-text p {
    max-width: 600px !important;
}

/* Mobile */
@media screen and (max-width: 768px) {
    .banner .banner-content {
        justify-content: center !important;
    }

    .banner-text {
        max-width: 100% !important;
        padding: 0 18px !important;
        text-align: center !important;
    }

    .banner-text h1,
    .banner-text h2,
    .banner-text p {
        max-width: 100% !important;
        text-align: center !important;
    }
}
.whatsapp-orcamento-box {
    background: #ffffff;
    border: 1px solid #d8e7f3;
    border-radius: 18px;
    padding: 34px 32px;
    box-shadow: 0 18px 45px rgba(0, 57, 96, 0.08);
}

.whatsapp-orcamento-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.whatsapp-orcamento-box h3 {
    color: #003B63;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
}

.whatsapp-orcamento-box p {
    color: #34495e;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.whatsapp-beneficios {
    list-style: none;
    padding: 0;
    margin: 0 0 26px 0;
}

.whatsapp-beneficios li {
    color: #003B63;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
}

.whatsapp-beneficios li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #25D366;
    font-weight: 900;
}

.whatsapp-btn {
    background: #0074C8;
    border-color: #0074C8;
    color: #ffffff !important;
    width: 100%;
    text-align: center;
    letter-spacing: 2px;
}

.whatsapp-btn:hover {
    background: #005FA3;
    border-color: #005FA3;
}
/* Correção mobile - Card de orçamento WhatsApp */
@media screen and (max-width: 768px) {

    .contato-sudeste {
        padding: 60px 0;
    }

    .contato-header h2 {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .contato-header p {
        font-size: 17px;
        line-height: 1.6;
        padding: 0 12px;
    }

    .contato-content {
        margin-top: 35px;
    }

    .contato-info,
    .contato-formulario {
        width: 100%;
        margin-bottom: 25px;
    }

    .contato-card-info,
    .form-box {
        padding: 28px 22px;
        border-radius: 16px;
    }

    .contato-card-info h4,
    .form-box h4 {
        font-size: 24px;
        line-height: 1.25;
    }

    .contato-card-info p,
    .form-box p {
        font-size: 16px;
        line-height: 1.6;
    }

    .whatsapp-orcamento-box {
        padding: 0;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .whatsapp-orcamento-icon {
        width: 52px;
        height: 52px;
        font-size: 27px;
        margin-bottom: 18px;
    }

    .whatsapp-orcamento-box h3 {
        font-size: 24px;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .whatsapp-orcamento-box p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .whatsapp-beneficios li {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 9px;
    }

    .whatsapp-btn {
        width: 100%;
        display: block;
        padding: 16px 14px;
        font-size: 12px;
        letter-spacing: 1px;
        line-height: 1.4;
        white-space: normal;
        text-align: center;
    }
}

/* Correção para telas muito pequenas */
@media screen and (max-width: 480px) {

    .contato-header h2 {
        font-size: 30px;
    }

    .contato-card-info,
    .form-box {
        padding: 24px 18px;
    }

    .whatsapp-orcamento-box h3 {
        font-size: 22px;
    }

    .whatsapp-btn {
        font-size: 11px;
        letter-spacing: 0.8px;
        padding: 15px 10px;
    }
}