body {
    margin: 0;
    padding: 0;
    font-family: 'Sora', sans-serif;
    background-color: #000;
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
}

.hero {
    background-image: url(../images/BG.png);
    background-position: 0 0;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
}

* {
    box-sizing: border-box;
}

/* Regra global para imagens responsivas */
img {
    max-width: 100%;
    height: auto;
}

/* Prevenção de scroll horizontal */
.container {
    overflow-x: hidden;
}

.row {
    overflow-x: hidden;
}

section {
    overflow-x: hidden;
}

.essencia {
    background-color: #fff;
    color: #000;
}

.overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 300px;
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 1));
    z-index: 0;
}

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

/* Header */
header {
    justify-content: center;
    display: flex;
    padding: 25px 0 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color:transparent;
    width: 100%;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    padding: 15px 0 !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
}

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

header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-group {
    position: relative;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 19px;
}

.top-text {
    flex-grow: 0;
    font-family: Sora;
    font-size: 30px;
    font-weight: bold;
    text-align: right;
    color: #fff;    
    margin-top: 24px;
}

.text-light {
    font-weight: 400;
}

.text-bold {
    font-weight: 700;
}

.main-text {
    display: flex;
    flex-direction: column;
    font-size: 138px;
    line-height: 110px;
}

.plural-para {
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;
    mix-blend-mode: exclusion;
}

.transformar {
    font-weight: 700;
    letter-spacing: -3px;
    margin-left: 30px;
    color: #fff;
    mix-blend-mode: exclusion;
}

.bottom-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    color: #000;
    text-align: left;
    font-size: 30px;
    width: 100%;
    padding-right: 100px;
}



/* Footer */
footer {
    background-color: #000;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 100%;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 0;
    max-width: 1220px;
    margin: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-links img {
    height: 20px;
    width: auto;
    opacity: 0.8;
}

.info {
    display: flex;
    gap: 80px;
    margin-bottom: -4px;
}

.contact, .address {
    font-size: 14px;
    line-height: 1.4;
}

.contact h3, .address h3 {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.contact p, .address p {
    margin: 4px 0;
    opacity: 0.8;
}
.images {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.images img {
    max-width: 30%;
    height: auto;
}

.partners {
    display: flex;
    gap: 32px;
    align-items: center;
}

.partners img {
    height: 24px;
    width: auto;
    opacity: 0.8;
}

.placeholder {
    width: 100px;
    height: 100px;
    background-color: gray;
    display: inline-block;
    margin: 10px;
}

.Uma-agncia {
    width: 123px;
    height: 76px;
    flex-grow: 0;
    margin: 48px 19px 143px 0;
    font-family: Sora;
    font-size: 30px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: right;
    color: #fff;
}

.cols figure {
    max-width: calc(25% - 60px);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cols figure .color {
    display: none;
}

figure:hover .color {
    display: block;
}

figure:hover .branco {
    display: none;
}

.Uma-agncia .text-style-1 {
    font-weight: normal;
}

@media (max-width: 768px) {
    .hero {
        background-image: url(../images/BG.png);
        background-position: right bottom;
        background-size: cover;
        background-repeat: no-repeat;
        min-height:calc(90vh - 60px) !important;
    }
    body {
        overflow-x: hidden !important;
        background-image: none !important;
    }
    
    html {
        overflow-x: hidden !important;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .plural-para,
    .transformar {
        max-width: 100% !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
    
    .main-text {
        font-size: 40px !important;
        line-height: 35px !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }
    .top-text {
        margin-top: 3px !important;
        font-size: 17px !important;
        text-align: center !important;
        padding-right: 0 !important;
    }
    .bottom-text {
        font-size: 17px !important;
        padding-right: 0 !important;
        text-align: center !important;
        width: 100% !important;
        justify-content: center !important;
    }
    .row {
        gap: 10px !important;
        flex-wrap: wrap !important;
    }
    header img {
        width: 85px !important;
    }
    
    /* Menu hamburger mobile */
    .menu-toggle {
        display: flex !important;
    }
    
    header .menu {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        width: 100% !important;
        background-color: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        flex-direction: column !important;
        padding: 20px 0 !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        z-index: 999 !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    header .menu.active {
        transform: translateX(0) !important;
    }
    
    header .menu li {
        width: 100% !important;
        text-align: center !important;
        margin: 10px 0 !important;
    }
    
    header .menu li a {
        font-size: 16px !important;
        padding: 15px 0 !important;
        display: block !important;
        width: 100% !important;
    }
    footer {
        width: 100% !important;
    }
    footer .container {
        width: 100% !important;
        max-width: 100% !important;
        flex-direction: column !important;
        padding: 40px 20px !important;
        gap: 15px !important;
    }

    .info {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .container {
        width: 100% !important;
        padding: 0 20px !important;
    }
    .partners {
        flex-wrap: wrap !important;
        justify-content: center !important;
        column-count: 2 !important;
    }
    
    /* Melhorias para seções principais */
    .sobre-nos .row,
    section.clientes .row,
    section.essencia .row {
        flex-direction: column !important;
        padding: 40px 20px !important;
        gap: 30px !important;
        text-align: center !important;
    }
    
    section.clientes .row h2,
    section.essencia .row h2,
    .sobre-nos h2 {
        font-size: 32px !important;
        text-align: left !important;
    }
    
    section.clientes .cols,
    section.essencia .cols {
        flex-direction: column !important;
        gap: 30px !important;
        width: 100% !important;
    }
    
    section.essencia .cols div {
        width: 100% !important;
        text-align: left !important;
    }
    
    section.essencia .cols div h3 {
        font-size: 24px !important;
        margin-bottom: 16px !important;
    }
    
    section.essencia .cols div p {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }
    
    .sobre-nos p {
        font-size: 16px !important;
        line-height: 1.5 !important;
        text-align: left !important;
        margin-bottom: 16px !important;
    }
    
    /* Seção de clientes - grid responsivo */
    section.clientes .cols {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        justify-items: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    section.clientes .cols img {
        max-width: 100% !important;
        height: auto !important;
        max-height: 40px !important;
        object-fit: contain !important;
    }
    
    /* Ajustes para imagens */
    .sobre-nos .row img {
        max-width: 100% !important;
        height: auto !important;
        margin-top: 20px !important;
    }
    
    /* Ajustes do title-group */
    .title-group {
        padding-bottom: 60px !important;
        min-height: 70vh !important;
    }
    
    .title-group .row {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .transformar {
        margin-left: 10px !important;
    }
    
    /* Garantir que nenhum elemento cause scroll horizontal */
    .title-group,
    .sobre-nos,
    .clientes,
    .essencia,
    main {
        overflow-x: hidden !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .images {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .cols figure {
        max-width: calc(50% - 60px) !important;
        margin: 0 !important;
    }

    .images img {
        max-width: 100% !important;
        height: auto !important;
    }
    
}

/* Regras para dispositivos móveis menores */
@media (max-width: 480px) {
    body {
        padding-top: 60px !important;
        overflow-x: hidden !important;
    }
    
    html {
        overflow-x: hidden !important;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .plural-para,
    .transformar {
        max-width: 100% !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
    
    .main-text {
        font-size: 46px !important;
        line-height: 48px !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .top-text {
        font-size: 24px !important;
        text-align: center !important;
        padding-right: 0 !important;
    }
    
    .bottom-text {
        font-size: 24px !important;
        padding-right: 0 !important;
        text-align: center !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .overlay {
        display: none !important;  
    }
    
    .container {
        width: 100% !important;
        padding: 0 15px !important;
    }
    
    header .menu {
        top: 60px !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    header .menu li a {
        font-size: 14px !important;
        padding: 12px 0 !important;
    }
    
    .sobre-nos .row,
    section.clientes .row,
    section.essencia .row {
        padding: 30px 15px !important;
        gap: 25px !important;
    }
    
    section.clientes .row h2,
    section.essencia .row h2,
    .sobre-nos h2 {
        font-size: 28px !important;
    }
    
    section.essencia .cols div h3 {
        font-size: 20px !important;
    }
    
    section.essencia .cols div p,
    .sobre-nos p {
        font-size: 14px !important;
    }
    
    .title-group {
        min-height: 60vh !important;
        padding-bottom: 40px !important;
    }
    
    .title-group .row {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    footer .container {
        padding: 30px 15px !important;
    }
    
    .info {
        gap: 15px !important;
        flex-direction: column !important;
    }
    
    .partners {
        gap: 20px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .partners img {
        height: 20px !important;
    }
    
    /* Ajuste especial para seção essencia em mobile */
    section.essencia {
        padding: 20px 0 !important;
        overflow-x: hidden !important;
    }
    
    /* Garantir que nenhum elemento cause scroll horizontal */
    .title-group,
    .sobre-nos,
    .clientes,
    .essencia,
    main {
        overflow-x: hidden !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}



.sobre-nos .row,
section.clientes .row,
section.essencia .row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 56px;
    padding: 100px 80px 80px;
    flex-wrap: nowrap;
    align-items: flex-start;
}

section.clientes .row h2,
section.essencia .row h2,
.sobre-nos h2 {
    font-size: 60px;
    text-align: right;
    margin: 0;
}

section.clientes .cols,
section.essencia .cols {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    align-items: center;
}

section.essencia .cols div {
    width: calc(50% - 40px);
}

section.essencia .cols div h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 0;
}

section.essencia .cols div p {
    font-size: 14px;
}


.sobre-nos p {
    font-size: 14px;
    text-align: left;
}

header .menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }
}

header .menu li {
    display: inline-block;
}

header .menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    padding: 10px 0;
}

header .menu li a:hover {
    opacity: 1;
}

/* Menu hamburger para mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Ajuste do corpo para compensar o header fixo já definido no body principal */

/* Responsividade do menu já integrada nas media queries principais */