@font-face {
    font-family: 'Nexa XBold';
    src: url('./assets/fonts/Nexa-XBold.woff2') format('woff2'),
        url('./assets/fonts/Nexa-XBold.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa black';
    src: url('./assets/fonts/NexaBlack.woff2') format('woff2'),
        url('./assets/fonts/NexaBlack.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa Regular';
    src: url('./assets/fonts/Nexa-Regular.woff2') format('woff2'),
        url('./assets/fonts/Nexa-Regular.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

:root {
    /* TYPOGRAPHY VARIABLES BASED ON SEO TABLE */
    --h1-desktop: 2.5rem;
    --h1-mobile: 1.75rem;
    --h2-desktop: 2rem;
    --h2-mobile: 1.6rem;
    --h3-desktop: 1.6rem;
    --h3-mobile: 1.3rem;
    --subtitle-desktop: 1.125rem;
    --subtitle-mobile: 1rem;
    --paragraph-desktop: 1rem;
    --paragraph-mobile: 0.9rem;

    /* Line heights according to SEO table */
    --line-height-h1: 1.2;
    --line-height-h2: 1.3;
    --line-height-h3: 1.3;
    --line-height-subtitle: 1.4;
    --line-height-paragraph: 1.6;

    /* Colors */
    --color-primary: #D8CFAA;
    --color-dark: #1f2020;
    --color-light: #ffffff;
    --transition: 0.3s ease;
    --color-gold: #D8CFAA;
    --color-black: #151515;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

body {
    color: var(--color-light);
    overflow-x: hidden;
    font-family: 'Nexa Regular', Montserrat, sans-serif;
    font-size: var(--paragraph-desktop);
    line-height: var(--line-height-paragraph);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--color-dark);
}

/* ===== NAVBAR ===== */
.logo-text,
.mobile-menu li a:hover,
.navbar-menu-center a:hover,
.navbar-email a:hover,
.navbar-phone a:hover {
    color: var(--color-primary);
}

#maxima-navbar {
    background-color: var(--color-dark);
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 131px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0 0 0;
    z-index: 1001;
    transition: all var(--transition);
}

/* LINHA SUPERIOR: Email + Menu Centralizado + Telefone */
.navbar-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 0 20px;
}

/* Email e Telefone */
.navbar-email,
.navbar-phone {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.navbar-email {
    justify-content: flex-start;
}

.navbar-phone {
    justify-content: flex-end;
}

.navbar-email a,
.navbar-phone a {
    font-family: 'Nexa XBold', Montserrat, sans-serif;
    color: var(--color-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    transition: all var(--transition);
    padding: 8px 12px;
    white-space: nowrap;
}

.navbar-email i,
.navbar-phone i {
    margin-right: 8px;
    font-size: 12px;
    min-width: 12px;
    flex-shrink: 0;
}

/* Menu Centralizado */
.navbar-menu-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 20px;
    padding: 0;
}

.navbar-menu-center li {
    margin: 0;
    position: relative;
}

.navbar-menu-center a {
    font-family: 'Nexa XBold', Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-light);
    text-decoration: none;
    transition: all var(--transition);
    padding: 8px 0;
    white-space: nowrap;
    display: block;
}

.navbar-menu-center a:hover {
    color: var(--color-primary);
}

.navbar-menu-center a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition);
}

.navbar-menu-center a:hover::after {
    width: 100%;
}

/* LINHA INFERIOR: Logo Centralizada */
.navbar-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    margin-top: -15px;
}

.navbar-logo {
    display: block;
    text-decoration: none;
    line-height: 0;
    text-align: center;
}

.navbar-logo .custom-logo,
.navbar-logo img {
    height: 55px;
    width: auto;
    max-width: 200px;
    display: block;
    margin: 0 auto;
    transition: all var(--transition);
}

.logo-text {
    font-family: 'Nexa XBold', Montserrat, sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    line-height: 1;
    padding: 5px 10px;
    color: var(--color-primary);
}

/* Elementos antigos ocultados */
.navbar-menu-container,
.menu-center-wrapper,
.navbar-menu-left,
.navbar-menu-right,
.nav-logo {
    display: none !important;
}

/* Triângulo ajustado para nova altura */
.nav-triangle {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 180px solid transparent;
    border-right: 180px solid transparent;
    border-top: 70px solid var(--color-dark);
    pointer-events: none;
    z-index: 1;
}

/* Logo Mobile */
.mobile-header-logo {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.mobile-header-logo .navbar-logo {
    display: block;
}

.mobile-header-logo .custom-logo,
.mobile-header-logo img {
    height: 35px;
    width: auto;
    max-width: 150px;
    display: block;
    margin: 0 auto;
}

.mobile-header-logo .logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-light);
    display: block;
    line-height: 1;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
    background: 0 0;
    border: none;
    z-index: 1003;
    position: relative;
}

.hamburger .line {
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    display: block;
    margin: 5px auto;
    transition: all var(--transition);
}

.hamburger-active {
    transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
    opacity: 0;
}

.hamburger-active .line:first-child {
    transform: translateY(7px) rotate(0);
}

.hamburger-active .line:nth-child(3) {
    transform: translateY(-7px) rotate(-90deg);
}

.menubar {
    position: fixed;
    top: 0;
    left: -100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 80%;
    height: 100vh;
    padding: 80px 0 30px;
    background: rgba(37, 37, 37, .99);
    transition: .3s ease-in-out;
    z-index: 1002;
    box-shadow: 5px 0 15px rgba(0, 0, 0, .3);
    overflow-y: auto;
}

.menubar.active {
    left: 0;
}

.mobile-logo {
    display: none;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(199, 162, 107, .3);
    width: 80%;
}

.mobile-logo a {
    display: inline-block;
    text-decoration: none;
}

.mobile-logo .custom-logo,
.mobile-logo img {
    height: 50px;
    width: auto;
    max-width: 150px;
    margin: 0 auto;
}

.mobile-logo .logo-text {
    font-size: 22px;
    letter-spacing: 3px;
}

.mobile-menu {
    padding: 0;
    list-style: none;
    width: 100%;
    text-align: center;
}

.mobile-menu li {
    margin-bottom: 32px;
}

.mobile-menu li a {
    font-size: 16px;
    padding: 12px 20px;
    display: block;
    color: var(--color-light);
    text-decoration: none;
}

.mobile-menu li a:hover {
    padding-left: 30px;
    color: var(--color-primary);
}

.mobile-contact {
    padding-top: 20px;
    border-top: 2px solid rgba(199, 162, 107, .3);
    text-align: center;
    width: 80%;
}

.mobile-email,
.mobile-phone {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 8px 0;
    transition: color var(--transition);
}

.mobile-email i,
.mobile-phone i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.mobile-email:hover,
.mobile-phone:hover {
    color: var(--color-light);
}

/* ===== HERO SECTION page home ===== */
.hero-section {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./assets/images/BackgroundHeroDesktop.webp') center/cover no-repeat;
    z-index: -1;
}

.hero-content {
    width: 60%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title-section {
    margin-bottom: 40px;
}

.hero-title {
    font-family: 'Nexa black', Montserrat, sans-serif;
    font-size: var(--h1-desktop);
    line-height: var(--line-height-h1);
    font-weight: 400;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-family: 'Nexa black', Montserrat, sans-serif;
    font-size: var(--subtitle-desktop);
    line-height: var(--line-height-subtitle);
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--color-light);
    text-transform: uppercase;
}

.hero-triangle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 180px solid transparent;
    border-right: 180px solid transparent;
    border-bottom: 60px solid var(--color-dark);
    pointer-events: none;
    z-index: 1;
}

/* page home apos hero*/
.intro-section {
    margin-top: 1rem;
    padding: 100px 0;
    background-color: var(--color-dark);
    position: relative;
    z-index: 1;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-title {
    font-family: 'Nexa black', Montserrat, sans-serif;
    font-size: var(--h1-desktop);
    line-height: var(--line-height-h1);
    font-weight: 400;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.intro-subtitle {
    font-family: 'Nexa black', Montserrat, sans-serif;
    font-size: var(--subtitle-desktop);
    line-height: var(--line-height-subtitle);
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--color-light);
    text-transform: uppercase;
    margin-bottom: 5rem;
}

.intro-description {
    max-width: 750px;
    margin: 0 auto;
}

.intro-text {
    font-family: 'Nexa Regular', Montserrat, sans-serif;
    font-size: var(--paragraph-desktop);
    line-height: var(--line-height-paragraph);
    color: var(--color-light);
    margin: 0;
}

.intro-text strong {
    font-weight: 600;
    color: var(--color-light);
}

.intro-highlight {
    color: var(--color-primary);
}

/* Ajuste para o vídeo no hero */
.hero-about-section {
    min-height: 70vh;
    /* Aumentei a altura para ficar mais destacado */
}

/* ===== SERVICES SECTION PAGE SERVICES ===== */
.services-section {
    padding: 120px 0 0px;
    background-color: var(--color-dark);
    position: relative;
    z-index: 0;
}

.services-header {
    margin-bottom: 80px;
}

.services-title {
    font-family: 'Nexa black', Montserrat, sans-serif;
    font-size: var(--h2-desktop);
    line-height: var(--line-height-h2);
    font-weight: 400;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.services-subtitle {
    font-family: 'Nexa Regular', Montserrat, sans-serif;
    font-size: var(--subtitle-desktop);
    line-height: var(--line-height-subtitle);
    color: var(--color-light);
    max-width: 600px;
    margin: 0 auto;
}

.service-card-wrapper {
    position: relative;
    padding-left: 33px;
    height: 100%;
}

.service-icon-external {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), #D7CFA9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(199, 162, 107, 0.3);
    transition: all 0.4s ease;
}

.service-card-wrapper:hover .service-icon-external {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(199, 162, 107, 0.4);
}

.service-icon-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card-wrapper:hover .service-icon-img {
    transform: scale(1.1);
}

.service-card {
    background: #1C1C1C;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 15px 15px 50px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    border-radius: 30px 30px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    background: rgba(45, 45, 45, 0.95);
    transform: translateY(-8px);
    border-color: rgba(199, 162, 107, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(199, 162, 107, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 30px;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card h3 {
    font-family: 'Nexa XBold', Montserrat, sans-serif;
    font-size: var(--h3-desktop);
    line-height: var(--line-height-h3);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #ffffff;
}

.service-subtitle {
    font-family: 'Nexa Regular', Montserrat, sans-serif;
    font-size: var(--subtitle-desktop);
    line-height: var(--line-height-subtitle);
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.service-card:hover .service-subtitle {
    color: #e6d1ac;
}

.service-description {
    font-family: 'Nexa Regular', Montserrat, sans-serif;
    font-size: var(--paragraph-desktop);
    line-height: var(--line-height-paragraph);
    color: var(--color-light);
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: #ffffff;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    position: relative;
    background-color: black;
    clip-path: polygon(0 7%, 38% 7%, 48% 25%, 100% 25%, 100% 100%, 0 100%);
    padding-top: 30px;
    min-height: 630px;
    z-index: 0;
    overflow: hidden;
}

.about-section .container-fluid {
    position: relative;
}

.about-section .row {
    position: relative;
}

.about-text-column {
    position: relative;
    z-index: 2;
}

.about-content {
    position: relative;
    padding: 95px 120px 60px 60px !important;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.98) 50%,
            rgba(0, 0, 0, 0.95) 65%,
            rgba(0, 0, 0, 0.88) 75%,
            rgba(0, 0, 0, 0.7) 82%,
            rgba(0, 0, 0, 0.45) 88%,
            rgba(0, 0, 0, 0.2) 93%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.about-content h2 {
    font-family: 'Nexa black', sans-serif;
    font-size: var(--h2-desktop);
    line-height: var(--line-height-h2);
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-content p {
    font-family: 'Nexa Regular', sans-serif;
    font-size: var(--paragraph-desktop);
    line-height: var(--line-height-paragraph);
    color: var(--color-light);
    margin-bottom: 20px;
}

.destaqueCor {
    color: var(--color-primary);
}

.about-image-column {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60%;
    z-index: 1;
}

.about-image {
    width: 168%;
    height: 130%;
    background-image: url('./assets/images/about-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.9) contrast(1.1);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 5%,
            rgba(0, 0, 0, 0.98) 10%,
            rgba(0, 0, 0, 0.95) 20%,
            rgba(0, 0, 0, 0.88) 30%,
            rgba(0, 0, 0, 0.75) 40%,
            rgba(0, 0, 0, 0.55) 50%,
            rgba(0, 0, 0, 0.35) 60%,
            rgba(0, 0, 0, 0.18) 70%,
            rgba(0, 0, 0, 0.08) 80%,
            rgba(0, 0, 0, 0.02) 90%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* ===== ABOUT SECTION TRIANGLE (SOLUÇÃO PARA CLIP-PATH) ===== */
.about-section-triangle {
    position: relative;
    width: 100%;
    height: 0;
    margin-top: -60px;
    z-index: 3;
}

.about-section-triangle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 180px solid transparent;
    border-right: 180px solid transparent;
    border-bottom: 60px solid var(--color-dark);
    pointer-events: none;
}

.portfolio-section {
    margin-top: 10rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-section h2 {
    font-family: 'Nexa black', Montserrat, sans-serif;
    font-size: var(--h2-desktop);
    line-height: var(--line-height-h2);
    color: var(--color-primary);
    margin-bottom: 50px;
    font-weight: 300;
    text-transform: uppercase;
}

.contact-box {
    display: inline-block;
    border: 1px solid var(--color-primary);
    border-radius: 40px;
    padding: 20px 100px;
}

/* DESKTOP - ÍCONE E TEXTO NA MESMA LINHA (HORIZONTAL) */
.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alinhado à esquerda */
    margin: 20px 0;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(216, 207, 170, 0.3);
    padding: 5px 15px;
    border-radius: 30px;
    width: 100%;
    text-align: left;
}

.contact-item i {
    color: var(--color-primary);
    margin-right: 15px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0; /* Impede o ícone de encolher */
    width: 30px; /* Largura fixa para alinhamento */
    text-align: center;
}

.contact-item span {
    font-family: 'Nexa Regular', sans-serif;
    font-size: var(--paragraph-desktop);
    line-height: var(--line-height-paragraph);
    color: var(--color-light);
    text-decoration: none;
    flex: 1; /* Ocupa o espaço restante */
}

.contact-item:hover i {
    transform: scale(1.1);
}

.contact-item:hover span {
    color: var(--color-primary);
}


/*page sobre */
/* ===== HERO ABOUT SECTION WITH VIDEO ===== */
.hero-about-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Background */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Triangle */
.hero-about-triangle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 180px solid transparent;
    border-right: 180px solid transparent;
    border-bottom: 60px solid var(--color-dark);
    pointer-events: none;
    z-index: 3;
}

/* page about  */
/* ===== SOBRE INTRO (SECTION 1) ===== */
/* Hero Section */
.sobre-hero {
    background-color: var(--color-dark);
    padding: 100px 0 0px;
}

.sobre-hero h1 {
    font-size: var(--h1-desktop);
    line-height: var(--line-height-h1);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.sobre-hero .subtitle {
    font-size: var(--subtitle-desktop);
    line-height: var(--line-height-subtitle);
    color: var(--color-primary);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.sobre-hero .intro-text {
    font-size: var(--paragraph-desktop);
    line-height: var(--line-height-paragraph);
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto;
}

/* Main Section with Image */
.sobre-content {
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    min-height: 700px;
}

/* Left Column - Text Content */
.content-text {
    padding: 60px 80px 60px 0;
    left: -2rem;
    z-index: 2;
    position: relative;
}

.section-title {
    font-size: var(--h3-desktop);
    line-height: var(--line-height-h3);
    color: var(--color-primary);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.value-item {
    margin-bottom: 40px;
    padding-left: 25px;
    border-left: 3px solid var(--color-primary);
    transition: var(--transition);
}

.value-item:hover {
    border-left-width: 5px;
    padding-left: 28px;
}

.value-item h4 {
    font-size: var(--subtitle-desktop);
    line-height: var(--line-height-subtitle);
    color: var(--color-light);
    font-weight: 400;
    margin-bottom: 12px;
}

.value-item p {
    font-size: var(--paragraph-desktop);
    line-height: var(--line-height-paragraph);
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Right Column - Image with Overlays */
.content-image-wrapper {
    position: relative;
    height: 700px;
}

.main-image {
    position: absolute;
    top: 0;
    right: -100px;
    width: 700px;
    height: 500px;
    z-index: 1;
    overflow: hidden;
}

/* GRADIENTE INFERIOR - transição suave para o fundo escuro */
.main-image::after {
    content: '';
    position: absolute;
    bottom: -5rem;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #252525, #252525, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* GRADIENTE LATERAL ESQUERDA - transição para os overlays */
.main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 120px;
    background: linear-gradient(90deg, #252525, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*box-shadow: -30px 30px 80px rgba(0, 0, 0, 0.178);*/
}

/* Overlay Box - Left Side */
.overlay-left {
    position: absolute;
    top: 120px;
    left: -6rem;
    width: 350px;
    height: 380px;
    background: rgba(37, 37, 37, 0.95);
    z-index: 3;
    padding: 40px;
    border-left: 4px solid var(--color-primary);


}

/* Overlay Box - Bottom */
.overlay-bottom {
    position: absolute;
    bottom: 1rem;
    right: 0;
    width: 500px;
    background: linear-gradient(135deg, rgba(216, 207, 170, 0.15), rgba(37, 37, 37, 0.95));
    z-index: 3;
    padding: 10px;
    border-top: 3px solid var(--color-primary);
}

.vm-item h3 {
    font-size: var(--h2-desktop);
    line-height: var(--line-height-h2);
    color: var(--color-primary);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.vm-item p {
    font-size: var(--paragraph-desktop);
    line-height: var(--line-height-paragraph);
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Container Adjustment */
.sobre-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}


/*page contact */
.investor-section {
    position: relative;
    min-height: 100vh; /* Mantém a altura mínima */
    margin-top: -35px; /* Mantém o valor padrão */
    padding-top: 60px;
    z-index: -10;
    overflow: hidden;
}

/* Container FLEX para alinhamento vertical */
.investor-container {
    display: flex;
    width: 100%;
    min-height: calc(100vh - 60px);
    position: relative;
}

/* ===== LADO ESQUERDO - CONTEÚDO COM CLIP-PATH EXATO ===== */
.investor-content {
    background-color: #232424;
    color: white;
    padding: 190px 60px 60px 60px; /* Padding-top padrão */
    width: 73%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    clip-path: polygon(0% 0%, 73% 0%, 100% 63%, 75% 100%, 0% 100%);
    position: relative;
    z-index: 2;
}

.investor-header {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.investor-title {
    font-size: var(--h1-desktop);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: var(--line-height-h1);
    color: var(--color-primary);
    position: relative;
}

.investor-subtitle {
    font-size: var(--h2-desktop);
    font-weight: 600;
    color: var(--color-light);
    line-height: var(--line-height-h2);
    display: block;
    margin-top: 0.5rem;
}

.investor-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 1rem;
}

.investor-description {
    font-size: var(--paragraph-desktop);
    line-height: var(--line-height-paragraph);
    color: var(--color-light);
    max-width: 90%;
    margin-top: 0;
}

.investor-description strong {
    color: var(--color-primary);
    font-weight: 600;
}

.investor-footer {
    margin-top: auto;
    padding-top: 3rem;
}

.investor-footer-logo img {
    max-width: 230px;
    height: auto;
    display: block;
}

/* ===== LADO DIREITO - IMAGEM ===== */
.investor-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.investor-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.investor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-logo {
    position: absolute;
    top: 40px;
    right: 30px;
    z-index: 3;
    padding: 15px 20px;
}

.image-logo img {
    max-width: 200px;
    display: block;
    height: auto;
}

.desktop-image {
    display: block;
}

.mobile-image {
    display: none;
}


/* Footer */
/* Footer */
footer {
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 40px;
}

.footer-info a {
    font-size: 1rem;
    color: var(--color-light);
    text-decoration: none;
}

/* ===== VIMEO NO HERO - CORREÇÃO DE LARGURA ===== */

/* Container do Vimeo - mantém aspect ratio 16:9 e ocupa 100% */
.hero-video-wrapper .vimeo-container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding-bottom: 0 !important;
    overflow: hidden;
}

/* Iframe do Vimeo - cobre todo o espaço */
.hero-video-wrapper .vimeo-container iframe {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 100vw !important; /* 100% da viewport width */
    height: 100vh !important; /* 100% da viewport height */
    min-width: 100% !important;
    min-height: 100% !important;
    transform: translate(-50%, -50%) scale(1.1) !important; /* Zoom sutil para cobrir bordas */
    object-fit: cover !important;
    border: none !important;
    pointer-events: none !important;
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    
    /* Sempre 100% da largura da viewport */
    width: 100vw;
    
    /* Altura baseada no aspect ratio 16:9 */
    height: 56.25vw; /* 100vw * 9/16 */
    
    /* Se precisar de mais altura, ajusta */
    min-height: 100vh;
    
    /* Para telas muito altas, ajusta a largura */
    min-width: 177.77vh; /* 100vh * 16/9 */
    
    transform: translate(-50%, -50%);
    object-fit: cover;
    border: none;
}

/* Overlay para escurecer o vídeo */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Para garantir que o hero section tenha altura mínima */
.hero-about-section {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
}

/*page error 404 */
/* ERROR SECTION */
.error-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.error-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100px 100px;
    opacity: 0.5;
    pointer-events: none;
}

.error-content {
    position: relative;
    z-index: 2;
}

.error-code {
    font-family: 'Nexa black', Montserrat, sans-serif;
    font-size: 180px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 0 60px rgba(216, 207, 170, 0.3);
    letter-spacing: 10px;
}

.error-title {
    font-family: 'Nexa black', Montserrat, sans-serif;
    font-size: var(--h1-desktop);
    line-height: var(--line-height-h1);
    font-weight: 700;
    color: var(--color-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.error-subtitle {
    font-family: 'Nexa Regular', Montserrat, sans-serif;
    font-size: var(--subtitle-desktop);
    line-height: var(--line-height-subtitle);
    color: var(--color-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 300;
}

.error-description {
    font-family: 'Nexa Regular', Montserrat, sans-serif;
    font-size: var(--paragraph-desktop);
    line-height: var(--line-height-paragraph);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
}


/* ===== RESPONSIVE BREAKPOINTS ===== */
/* ===== AJUSTE ESPECÍFICO PARA TVs/TELAS CURTAS ===== */
/* ===== RESPONSIVE BREAKPOINTS - COMPLETO E ORGANIZADO ===== */


/* ===================================================== */
/* ===== MOBILE FIRST - BASE (até 374px) ===== */
/* ===================================================== */

/* 320px - Mobile Extra Small */
@media screen and (max-width: 374px) {
    /* Ajustes específicos para telas muito pequenas */
    .investor-section {
        margin-top: -150px !important;
        padding-top: 8px;
    }

    .investor-content {
        padding: 55px 10px 18px;
    }

    .investor-header {
        margin-bottom: 0.8rem;
    }

    .investor-title {
        font-size: 1.5rem;
    }

    .investor-subtitle {
        font-size: 1.1rem;
    }

    .investor-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .investor-image-wrapper {
        min-height: 320px;
    }
    
    .investor-image-container {
        min-height: 320px;
    }

    .investor-footer-logo img {
        max-width: 130px;
    }
}

/* 375px - Mobile Small */
@media screen and (min-width: 375px) and (max-width: 479px) {
    #maxima-navbar {
        padding: 0 10px;
    }

    .mobile-header-logo .custom-logo,
    .mobile-header-logo img {
        height: 25px;
    }

    .mobile-header-logo .logo-text {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .navbar-logo .custom-logo,
    .navbar-logo img {
        height: 30px;
    }

    .logo-text {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .menubar {
        width: 85%;
        left: -85%;
        padding: 70px 0 30px;
    }

    .mobile-menu li {
        margin-bottom: 20px;
    }

    .mobile-menu li a {
        font-size: var(--paragraph-mobile) !important;
        letter-spacing: 1px;
    }

    .hamburger {
        padding: 5px;
    }

    .hamburger .line {
        width: 22px;
    }

    .nav-triangle {
        border-left: 70px solid transparent;
        border-right: 70px solid transparent;
        border-top: 40px solid var(--color-dark);
    }

    /* page home sessão apos hero */
    .intro-section {
        max-height: 415px;
        padding: 40px 10px;
    }

    .intro-title {
        font-size: var(--h1-mobile);
    }

    .intro-subtitle {
        letter-spacing: 1px;
    }

    .hero-section {
        padding: 70px 8px 30px;
    }

    .hero-subtitle {
        letter-spacing: 1px;
    }

    .hero-triangle {
        border-left: 69px solid transparent;
        border-right: 69px solid transparent;
        border-bottom: 40px solid var(--color-dark);
    }

    /* page about e valores */
    .sobre-content {
        padding: 30px 0 60px;
    }

    .content-text {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .value-item {
        margin-bottom: 20px;
        padding-left: 15px;
    }

    .value-item h4 {
        font-size: 1rem;
    }

    .value-item p {
        font-size: 0.9rem;
    }

    .main-image {
        height: 250px;
        margin: -25px -15px 25px 0;
        width: calc(100% + 15px);
    }

    .main-image::after {
        height: 60px;
    }

    .main-image::before {
        width: 50px;
    }

    .overlay-left,
    .overlay-bottom {
        margin-top: -10px;
        padding: 20px 15px;
        margin-bottom: 13px;
    }

    .vm-item h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .vm-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /*page services */
    .service-card-wrapper {
        padding-left: 25px;
    }

    .service-icon-external {
        width: 50px;
        height: 50px;
    }

    .service-icon-img {
        width: 25px;
        height: 25px;
    }

    .service-card {
        padding: 15px 15px 15px 30px;
        min-height: 140px;
    }

    .about-section {
        clip-path: polygon(0 2.5%, 22% 2.5%, 32% 10%, 100% 10%, 100% 100%, 0 100%);
        padding-top: 5rem;
        padding-bottom: 0;
    }

    .about-content {
        padding: 25px 15px 15px !important;
    }

    .about-content h2 {
        font-size: var(--h2-mobile) !important;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .about-content p {
        font-size: var(--paragraph-mobile) !important;
        line-height: 1.6;
    }

    .about-image-column {
        height: 250px;
        margin-top: 15px;
    }

    .about-section-triangle {
        margin-top: -40px;
    }

    .about-section-triangle::before {
        border-left: 69px solid transparent;
        border-right: 69px solid transparent;
        border-bottom: 40px solid var(--color-dark);
    }

    /* hero about page */
    .hero-about-section {
        min-height: 35vh;
    }

    .hero-about-triangle {
        border-left: 69px solid transparent;
        border-right: 69px solid transparent;
        border-bottom: 40px solid var(--color-dark);
    }

    /*session contact */
    .contact-section {
        padding: 35px 10px;
    }

    .contact-section h2 {
        font-size: var(--h2-mobile) !important;
        margin-bottom: 20px;
    }

    .contact-box {
        padding: 18px 20px;
        border-radius: 18px;
        max-width: 320px;
    }

    .contact-item {
        margin: 18px 0;
        padding: 10px 10px;
    }

    .contact-item i {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }

    .contact-item span {
        font-size: var(--paragraph-mobile) !important;
        line-height: 1.4;
        word-break: break-word;
        hyphens: auto;
    }

    /*page contato */
    .investor-section {
        margin-top: -190px !important;
        padding-top: 12px;
    }

    .investor-content {
        padding: 65px 12px 20px;
    }

    .investor-image-wrapper {
        min-height: 360px;
    }
    
    .investor-image-container {
        min-height: 360px;
    }

    .investor-footer-logo img {
        max-width: 145px;
    }

    .investor-title {
        font-size: 1.7rem;
    }

    .investor-subtitle {
        font-size: 1.3rem;
    }

    /* Footer adjustments */
    footer {
        padding: 15px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-logo {
        margin-bottom: 8px;
    }

    .footer-logo img {
        height: 20px;
    }

    .footer-info a {
        font-size: var(--paragraph-mobile) !important;
        display: block;
        margin-bottom: 4px;
    }

    /* page error 404 */
    .error-code {
        font-size: 70px;
        margin-bottom: 10px;
    }

    .error-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .error-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

/* ===================================================== */
/* ===== 480px - Mobile Large ===== */
/* ===================================================== */
@media screen and (min-width: 480px) and (max-width: 767px) {
    .menubar {
        width: 80%;
        left: -80%;
        padding: 80px 0 40px;
    }

    .menubar.active {
        left: 0;
    }

    .mobile-menu li {
        margin-bottom: 25px;
    }

    .mobile-menu li a {
        font-size: var(--paragraph-mobile) !important;
        padding: 10px 15px;
    }

    .mobile-contact {
        width: 85%;
    }

    .mobile-header-logo .custom-logo,
    .mobile-header-logo img {
        height: 28px;
    }

    .mobile-header-logo .logo-text {
        font-size: 15px;
        letter-spacing: 1.5px;
    }

    .nav-triangle {
        border-left: 80px solid transparent;
        border-right: 80px solid transparent;
        border-top: 40px solid var(--color-dark);
    }

    /* page home sessão apos hero */
    .intro-section {
        max-height: 412px;
        padding: 50px 29px;
    }

    .intro-subtitle {
        letter-spacing: 2px;
    }

    .hero-section {
        min-height: 50vh;
    }

    .hero-content {
        width: 100%;
    }

    .hero-title {
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }

    .hero-triangle {
        border-left: 79px solid transparent;
        border-right: 79px solid transparent;
        border-bottom: 40px solid var(--color-dark);
    }

    .about-section {
        clip-path: polygon(0 3%, 25% 3%, 35% 12%, 100% 12%, 100% 100%, 0 100%);
        padding-top: 40px;
        padding-bottom: 0;
    }

    .about-image-column {
        height: 300px;
        margin-top: 20px;
        padding: 0 !important;
    }

    .about-image {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
    }

    .about-content {
        padding: 90px 20px 10px !important;
    }

    .about-content h2 {
        margin-bottom: 18px;
        letter-spacing: 1.2px;
    }

    .about-content p {
        font-size: var(--paragraph-mobile) !important;
        line-height: 1.7;
    }

    .about-section-triangle {
        margin-top: -40px;
    }

    .about-section-triangle::before {
        border-left: 79px solid transparent;
        border-right: 79px solid transparent;
        border-bottom: 40px solid var(--color-dark);
    }

    /* hero about page */
    .hero-about-section {
        min-height: 38vh;
    }

    .hero-about-triangle {
        border-left: 79px solid transparent;
        border-right: 79px solid transparent;
        border-bottom: 40px solid var(--color-dark);
    }

    /* page about nossos valores */
    .sobre-content {
        padding: 40px 0 80px;
        overflow: visible;
    }

    .sobre-container {
        padding: 0 15px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
        display: block;
    }

    .content-text {
        padding: 0 !important;
        left: 0;
        margin-left: 0;
        margin-bottom: -20px;
        position: relative;
        z-index: 1;
    }

    .section-title {
        font-size: var(--h2-mobile);
        text-align: center;
        margin-bottom: 30px;
    }

    .value-item {
        margin-bottom: 25px;
        padding-left: 20px;
        border-left-width: 3px;
    }

    .value-item:hover {
        border-left-width: 3px;
        padding-left: 20px;
    }

    .value-item h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .value-item p {
        font-size: var(--paragraph-mobile);
        line-height: 1.6;
    }

    .content-image-wrapper {
        position: relative;
        height: auto;
        width: 110%;
        margin-bottom: -2.5rem;
    }

    .main-image {
        position: relative;
        top: 0;
        right: 0;
        left: auto;
        width: calc(100% + 15px);
        height: 350px;
        margin: 0 -15px 30px 0;
        z-index: 1;
        overflow: hidden;
    }

    .main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .main-image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 85px;
        background: linear-gradient(to top, #252525, transparent 100%);
        pointer-events: none;
        z-index: 2;
    }

    .main-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 60px;
        background: linear-gradient(90deg, #252525, transparent 100%);
        pointer-events: none;
        z-index: 2;
    }

    .overlay-left {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 95%;
        height: auto;
        background: rgba(37, 37, 37, 0.98);
        padding: 20px 20px;
        margin-bottom: 20px;
        border-left: 4px solid var(--color-primary);
        z-index: 2;
        box-sizing: border-box;
    }

    .overlay-bottom {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 95%;
        background: rgba(37, 37, 37, 0.98);
        padding: 20px 20px;
        border-top: none;
        border-left: 4px solid var(--color-primary);
        z-index: 2;
        box-sizing: border-box;
    }

    .vm-item h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        letter-spacing: 1px;
    }

    .vm-item p {
        font-size: var(--paragraph-mobile);
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
    }

    /*session contact */
    .contact-section h2 {
        font-size: var(--h2-mobile) !important;
        line-height: var(--line-height-h2) !important;
        margin-bottom: 25px;
    }

    .contact-box {
        padding: 20px 25px;
        border-radius: 20px;
        width: 100%;
        max-width: 350px;
        border-width: 1.5px;
    }

    .contact-item {
        margin: 20px 0;
        padding: 12px 12px;
    }

    .contact-item i {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .contact-item span {
        font-size: var(--paragraph-mobile) !important;
        line-height: 1.5;
    }
    
    .image-side img {
        height: 65vh;
    }

    .image-side {
        height: 380px;
    }

    /*page service session */
    .text-side {
        padding: 40px 20px 30px 20px;
        min-height: auto;
    }

    .title-container {
        padding-top: 10rem;
        margin-bottom: 1rem;
    }

    .text-side h1 {
        font-size: var(--h1-mobile) !important;
        line-height: var(--line-height-h1) !important;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: var(--h2-mobile) !important;
        line-height: var(--line-height-h2) !important;
    }

    .text-side p {
        font-size: var(--paragraph-mobile) !important;
        line-height: var(--line-height-paragraph) !important;
        margin-bottom: 0.95rem;
    }

    /* page contato atendimento personalizado */
    .investor-section {
        margin-top: -210px !important;
        padding-top: 18px;
    }

    .investor-content {
        padding: 100px 18px 22px;
    }

    .investor-image-wrapper {
        min-height: 420px;
    }
    
    .investor-image-container {
        min-height: 420px;
    }

    .investor-footer-logo img {
        max-width: 170px;
    }

    /* page locações */
    .property-carousel {
        height: 280px;
    }

    .property-info {
        padding: 20px;
    }

    .property-cta {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    /* Footer adjustments */
    footer {
        padding: 20px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-logo {
        margin-bottom: 10px;
    }

    .footer-logo img {
        height: 22px;
    }

    .footer-info a {
        font-size: var(--paragraph-mobile) !important;
        display: block;
        margin-bottom: 5px;
    }

    /* page error 404 */
    .error-code {
        font-size: 80px;
        margin-bottom: 15px;
    }

    .error-title {
        margin-bottom: 15px;
    }

    .error-subtitle {
        margin-bottom: 25px;
    }
}

/* ===================================================== */
/* ===== 768px - Tablet Portrait ===== */
/* ===================================================== */
@media screen and (min-width: 768px) and (max-width: 883px) {
    body {
        font-size: var(--paragraph-mobile);
    }

    .hamburger {
        padding: 8px;
    }

    .mobile-header-logo .custom-logo,
    .mobile-header-logo img {
        height: 30px;
    }

    .mobile-header-logo .logo-text {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .navbar-logo .custom-logo,
    .navbar-logo img {
        height: 35px;
    }

    .logo-text {
        font-size: 18px;
    }

    .nav-triangle {
        border-left: 100px solid transparent;
        border-right: 100px solid transparent;
        border-top: 40px solid var(--color-dark);
    }

    /*page home sessão apos o hero */
    .intro-section {
        padding: 60px 20px;
    }

    .intro-title {
        font-size: var(--h1-mobile);
        margin-bottom: 10px;
    }

    .intro-subtitle {
        letter-spacing: 3px;
        margin-bottom: 25px;
    }

    .intro-text {
        line-height: 1.7;
    }

    .intro-text br {
        display: none;
    }

    .hero-subtitle {
        letter-spacing: 2px;
        margin-bottom: 25px;
    }

    .hero-triangle {
        border-left: 100px solid transparent;
        border-right: 100px solid transparent;
        border-bottom: 41px solid var(--color-dark);
    }

    .services-section {
        padding-top: 90px;
        margin-bottom: -1.5rem;
    }

    .service-card {
        padding: 20px 20px 20px 35px;
        min-height: 160px;
    }

    .service-icon-external {
        width: 60px;
        height: 60px;
    }

    .service-icon-img {
        width: 30px;
        height: 30px;
    }

    .about-section {
        clip-path: polygon(0 4%, 30% 4%, 40% 14%, 100% 14%, 100% 100%, 0 100%);
        padding-top: 140px;
        padding-bottom: 0;
        min-height: auto;
    }

    .about-text-column {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 100%;
    }

    .about-image-column {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        height: 350px;
        margin-top: 25px;
        padding: 0 !important;
    }

    .about-image {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
    }

    .about-image::before {
        width: 100%;
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.9) 0%,
                rgba(0, 0, 0, 0.7) 20%,
                rgba(0, 0, 0, 0.4) 40%,
                rgba(0, 0, 0, 0.2) 60%,
                rgba(0, 0, 0, 0) 80%);
    }

    .about-content {
        padding: 35px 25px 25px !important;
        background: rgba(0, 0, 0, 0.95);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-content h2 {
        font-size: var(--h2-mobile) !important;
        line-height: var(--line-height-h2) !important;
        margin-bottom: 20px;
        letter-spacing: 1.5px;
        text-align: center;
    }

    .about-content p {
        font-size: var(--paragraph-mobile) !important;
        line-height: 1.7;
        text-align: center;
    }

    .about-section-triangle {
        margin-top: -41px;
    }

    .about-section-triangle::before {
        border-left: 100px solid transparent;
        border-right: 100px solid transparent;
        border-bottom: 41px solid var(--color-dark);
    }

    .portfolio-section {
        margin-top: 5rem;
    }

    /* hero about page */
    .hero-about-section {
        min-height: 40vh;
    }

    .hero-about-triangle {
        border-left: 100px solid transparent;
        border-right: 100px solid transparent;
        border-bottom: 41px solid var(--color-dark);
    }

    /* page about */
    .overlay-left {
        top: 15px;
        left: 0;
    }

    .overlay-bottom {
        right: 13rem;
        bottom: -10px;
    }

    /* session contact */
    .contact-section {
        padding: 50px 0;
    }

    .contact-section h2 {
        font-size: var(--h2-mobile) !important;
        line-height: var(--line-height-h2) !important;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .contact-box {
        padding: 25px 30px;
        border-radius: 25px;
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 25px 0;
        padding: 15px 15px;
        width: 100%;
        text-align: center;
    }

    .contact-item i {
        font-size: 1.8rem;
        margin-right: 0;
        margin-bottom: 10px;
        width: auto;
    }

    .contact-item span {
        font-size: var(--paragraph-mobile) !important;
        line-height: var(--line-height-paragraph) !important;
        text-align: center;
        display: block;
        word-break: break-word;
        flex: none;
        width: 100%;
    }
    
    .contact-item:active {
        background-color: rgba(216, 207, 170, 0.15);
    }

    /* page serviços */
    .text-side {
        padding: 50px 30px 30px 30px;
        min-height: 50vh;
    }

    .title-container {
        padding-top: 6.5rem;
        margin-bottom: 1.5rem;
    }
    
    .image-side img {
        height: 85vh;
    }

    .image-side {
        height: 570px;
    }
    /* page contato */
    .investor-section {
        margin-top: -245px !important;
        padding-top: 22px;
    }

    .investor-content {
        padding: 120px 22px 28px !important;
    }

    .investor-image-wrapper {
        min-height: 480px;
    }
    
    .investor-image-container {
        min-height: 480px;
    }

    .investor-footer-logo img {
        max-width: 190px;
    }

    .text-side h1 {
        font-size: var(--h1-mobile) !important;
        line-height: var(--line-height-h1) !important;
    }

    .subtitle {
        font-size: var(--h2-mobile) !important;
        line-height: var(--line-height-h2) !important;
    }

    .text-side p {
        font-size: var(--paragraph-mobile) !important;
        line-height: var(--line-height-paragraph) !important;
    }

    .maxima-logos-section {
        margin-top: 2rem;
    }

    /* Footer adjustments */
    footer {
        padding: 25px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-logo {
        margin-bottom: 15px;
    }

    .footer-logo img {
        height: 25px;
    }

    .footer-info a {
        font-size: var(--paragraph-mobile) !important;
    }

    /* page error 404 */
    .error-section {
        padding: 30px 15px;
    }

    .error-code {
        font-size: 100px;
        letter-spacing: 5px;
    }

    .error-title {
        letter-spacing: 2px;
    }

    .error-subtitle {
        letter-spacing: 1px;
        margin-bottom: 30px;
    }
}

/* ===================================================== */
/* ===== 884px - Tablets ===== */
/* ===================================================== */
@media screen and (min-width: 884px) and (max-width: 991px) {
    .about-section {
        min-height: 500px;
    }

    .about-text-column {
        max-width: 50%;
    }

    .about-image-column {
        width: 58%;
    }

    .about-image::before {
        width: 45%;
    }

    .about-content {
        padding: 35px 60px 35px 35px !important;
    }

    .about-content h2 {
        font-size: var(--h2-mobile) !important;
        line-height: var(--line-height-h2) !important;
        margin-bottom: 18px;
    }

    .about-content p {
        font-size: var(--paragraph-mobile) !important;
        line-height: 1.6;
    }

    .about-section-triangle {
        margin-top: -40px;
    }

    .about-section-triangle::before {
        border-left: 110px solid transparent;
        border-right: 110px solid transparent;
        border-bottom: 40px solid var(--color-dark);
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-section h2 {
        font-size: var(--h2-mobile) !important;
        line-height: var(--line-height-h2) !important;
        margin-bottom: 30px;
    }

    .contact-box {
        padding: 20px 40px;
        border-radius: 30px;
        display: inline-block;
    }

    .contact-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        margin: 22px 0;
        padding: 8px 20px;
        width: 100%;
        text-align: left;
    }

    .contact-item i {
        font-size: 1.3rem;
        margin-right: 15px;
        margin-bottom: 0;
        width: 30px;
    }

    .contact-item span {
        font-size: 1rem;
        text-align: left;
    }

    /* hero about page */
    .hero-about-section {
        min-height: 42vh;
    }

    .hero-about-triangle {
        border-left: 110px solid transparent;
        border-right: 110px solid transparent;
        border-bottom: 40px solid var(--color-dark);
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-section h2 {
        font-size: var(--h2-mobile) !important;
        line-height: var(--line-height-h2) !important;
        margin-bottom: 30px;
    }

    .contact-box {
        padding: 20px 40px;
        border-radius: 30px;
    }

    .contact-item {
        margin: 22px 0;
    }

    .contact-item i {
        font-size: 1.3rem;
    }

    /*page contato */
    .investor-section {
        margin-top: -240px !important;
        padding-top: 28px;
    }

    .investor-content {
        padding: 145px 25px 30px;
    }

    .investor-image-wrapper {
        min-height: 520px;
    }
    
    .investor-image-container {
        min-height: 520px;
    }

    .investor-footer {
        padding-top: 1.5rem;
    }
    
    .text-side h1 {
        font-size: var(--h1-mobile) !important;
        line-height: var(--line-height-h1) !important;
    }

    .text-side h2 {
        font-size: var(--h2-mobile) !important;
        line-height: var(--line-height-h2) !important;
    }

    .text-side p {
        font-size: var(--paragraph-mobile) !important;
        line-height: var(--line-height-paragraph) !important;
    }

    .image-side img {
        height: 90vh;
    }

    .image-side {
        height: 750px;
    }

    .mobile-image {
        object-position: center 20%;
    }

    /* Footer adjustments */
    footer {
        padding: 30px 0;
    }

    .footer-content {
        justify-content: center;
        gap: 20px;
    }

    .footer-logo {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-logo img {
        min-height: 35px;
    }

    .footer-info {
        width: 100%;
        text-align: center;
    }
}

/* ===================================================== */
/* ===== 992px - Tablet Landscape ===== */
/* ===================================================== */
@media screen and (max-width: 991px) {
    :root {
        --h1-desktop: 2.5rem;
        --h2-desktop: 1.75rem;
        --h3-desktop: 1.4rem;
    }

    #maxima-navbar {
        height: 70px;
        flex-direction: row;
        justify-content: flex-end;
        padding: 0 15px;
    }
    
    .navbar-top-row,
    .navbar-logo-row {
        display: none;
    }
    
    .navbar-email,
    .navbar-phone {
        display: none;
    }
    
    .mobile-header-logo {
        display: block;
    }
    
    .hamburger {
        display: block;
        margin-left: 0;
        margin-right: 10px;
        position: relative;
        z-index: 1003;
    }
    
    .nav-triangle {
        bottom: -40px;
        border-left: 120px solid transparent;
        border-right: 120px solid transparent;
        border-top: 40px solid var(--color-dark);
    }
    
    .mobile-logo {
        display: block;
    }

    /*page home sessão apos hero */
    .intro-section {
        padding: 80px 0;
    }

    .intro-title {
        font-size: var(--h1-mobile);
    }

    .intro-subtitle {
        font-size: var(--subtitle-mobile);
        letter-spacing: 4px;
        margin-bottom: 30px;
    }

    .intro-text {
        font-size: var(--paragraph-mobile);
    }

    .hero-section {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: var(--h1-mobile) !important;
        line-height: var(--line-height-h1) !important;
    }

    .hero-triangle {
        border-left: 120px solid transparent;
        border-right: 120px solid transparent;
        border-bottom: 40px solid var(--color-dark);
        bottom: 0;
    }

    .about-section {
        clip-path: polygon(0 5%, 35% 5%, 45% 18%, 100% 18%, 100% 100%, 0 100%);
        min-height: 550px;
        padding-top: 60px;
    }

    .about-text-column {
        position: relative;
        z-index: 2;
    }

    .about-image-column {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 55%;
        z-index: 1;
    }

    .about-image {
        width: 115%;
        height: 100%;
        background-size: cover;
        background-position: center center;
    }

    .about-image::before {
        width: 50%;
    }

    .about-content {
        padding: 40px 80px 40px 40px !important;
        background: linear-gradient(to right,
                rgba(0, 0, 0, 1) 0%,
                rgba(0, 0, 0, 0.98) 50%,
                rgba(0, 0, 0, 0.95) 65%,
                rgba(0, 0, 0, 0.88) 75%,
                rgba(0, 0, 0, 0.7) 82%,
                rgba(0, 0, 0, 0.45) 88%,
                rgba(0, 0, 0, 0.2) 93%,
                rgba(0, 0, 0, 0) 100%);
    }

    .about-content h2,
    .services-title,
    .logos-section-title {
        font-size: var(--h2-mobile) !important;
        line-height: var(--line-height-h2) !important;
        margin-bottom: 20px;
        letter-spacing: 1.5px;
    }

    .about-content p {
        font-size: var(--paragraph-mobile) !important;
        line-height: var(--line-height-paragraph) !important;
    }

    .about-section-triangle {
        margin-top: -40px;
    }

    .about-section-triangle::before {
        border-left: 120px solid transparent;
        border-right: 120px solid transparent;
        border-bottom: 40px solid var(--color-dark);
    }

    /* hero page about */
    .hero-about-section {
        min-height: 45vh;
    }

    .hero-about-triangle {
        border-left: 120px solid transparent;
        border-right: 120px solid transparent;
        border-bottom: 40px solid var(--color-dark);
    }

    /* SOBRE CONTENT - Tablet */
    .sobre-content {
        padding: 60px 0 35px;
    }

    .sobre-container {
        padding: 0 20px;
        max-width: 800px;
        margin: 0 auto;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .content-text {
        padding: 0 !important;
        left: 0;
        margin-left: 0;
        text-align: center;
    }

    .section-title {
        font-size: var(--h2-mobile) !important;
        margin-bottom: 30px;
    }

    .value-item {
        margin-bottom: 30px;
        padding-left: 15px;
        text-align: left;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .value-item h4 {
        font-size: var(--subtitle-mobile) !important;
    }

    .value-item p {
        font-size: var(--paragraph-mobile) !important;
    }

    .content-image-wrapper {
        height: 500px;
        position: relative;
    }

    .main-image {
        position: absolute;
        top: 0;
        right: -130px;
        width: 550px;
        height: 350px;
        z-index: 1;
        overflow: hidden;
    }

    .main-image::after {
        content: '';
        position: absolute;
        bottom: -3rem;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(to top, #252525, #252525, transparent 100%);
        pointer-events: none;
        z-index: 2;
    }

    .main-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 60px;
        background: linear-gradient(90deg, #252525, transparent 100%);
        pointer-events: none;
        z-index: 2;
    }

    .overlay-left {
        position: absolute;
        top: 60px;
        left: -30px;
        width: 260px;
        height: 300px;
        background: rgba(37, 37, 37, 0.95);
        z-index: 3;
        padding: 25px;
        border-left: 4px solid var(--color-primary);
    }

    .overlay-bottom {
        position: absolute;
        bottom: 10px;
        right: 10rem;
        width: 350px;
        background: linear-gradient(135deg, rgba(216, 207, 170, 0.15), rgba(37, 37, 37, 0.95));
        z-index: 3;
        padding: 25px;
        border-top: 3px solid var(--color-primary);
    }

    .vm-item h3 {
        font-size: 1.2rem !important;
        margin-bottom: 10px;
    }

    .vm-item p {
        font-size: 0.85rem !important;
        line-height: 1.5;
    }

    /* page contato - Tablet (até 991px) */
    .investor-section {
        min-height: auto;
        display: block;
        margin-top: -32px;
        padding-top: 32px;
        z-index: 0;
    }

    .investor-container {
        flex-direction: column;
        min-height: auto;
        position: relative;
    }

    .investor-content {
        width: 100%;
        clip-path: none;
        padding: 100px 30px 35px;
        text-align: center;
        justify-content: center;
    }

    .investor-header {
        margin-top: 0;
        margin-bottom: 2rem;
    }

    .investor-title {
        font-size: var(--h1-mobile);
        line-height: var(--line-height-h1);
    }

    .investor-subtitle {
        font-size: var(--h2-mobile);
        line-height: var(--line-height-h2);
    }

    .investor-text {
        justify-content: center;
    }

    .investor-description {
        font-size: var(--paragraph-mobile);
        line-height: var(--line-height-paragraph);
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .investor-image-wrapper {
        position: relative;
        left: 0;
        min-height: 550px;
        margin-top: 0;
        z-index: 0;
        order: 2;
    }

    .investor-image-container {
        min-height: 550px;
        height: auto;
    }

    .investor-image {
        height: 100%;
    }

    .image-logo {
        display: none;
    }

    .investor-footer {
        text-align: center;
        padding-top: 2rem;
    }

    .investor-footer-logo {
        display: flex;
        justify-content: center;
    }

    .investor-footer-logo img {
        max-width: 200px;
    }

    .desktop-image {
        display: none !important;
    }

    .mobile-image {
        display: block !important;
    }

    /* page error 404*/
    .error-code {
        font-size: 120px;
    }

    .error-title {
        font-size: var(--h1-mobile);
    }

    .error-subtitle {
        font-size: var(--subtitle-mobile);
    }

    .error-description {
        font-size: var(--paragraph-mobile);
    }
}

/* ===================================================== */
/* ===== 992px - 1099px (Tablet to Desktop Transition) ===== */
/* ===================================================== */
@media screen and (min-width: 992px) and (max-width: 1099px) {
    .investor-section {
        margin-top: -38px;
        min-height: 800px;
    }

    .investor-container {
        min-height: 760px;
    }

    .investor-content {
        padding: 160px 40px 40px 40px;
    }

    .investor-header {
        margin-top: 1.5rem;
    }

    .investor-image-wrapper {
        left: 52%;
    }
    
    .image-logo {
        padding-top: 2rem;
    }
    
    .image-logo img {
        max-width: 160px;
    }
}

/* ===================================================== */
/* ===== 1100px - 1279px ===== */
/* ===================================================== */
@media screen and (min-width: 1100px) and (max-width: 1279px) {
    :root {
        --h1-desktop: 2.6rem;
        --h2-desktop: 1.8rem;
        --h3-desktop: 1.4rem;
    }

    .navbar-menu-center {
        gap: 20px;
    }
    
    .navbar-menu-center a {
        letter-spacing: 1px;
    }
    
    .navbar-email,
    .navbar-phone {
        width: 160px;
    }
    
    .navbar-email a,
    .navbar-phone a {  
        padding: 6px 10px;
    }
    
    .nav-triangle {
        border-left: 140px solid transparent;
        border-right: 140px solid transparent;
    }

    .hero-section {
        min-height: 550px;
    }

    .hero-subtitle {
        letter-spacing: 3px;
    }

    .hero-triangle {
        border-left: 140px solid transparent;
        border-right: 140px solid transparent;
        border-bottom: 60px solid var(--color-dark);
    }

    .about-section {
        min-height: 600px;
    }

    .about-content {
        padding: 45px 90px 45px 45px !important;
    }

    .about-content p {
        font-size: 1rem;
    }

    .about-section-triangle {
        margin-top: -60px;
    }

    .about-section-triangle::before {
        border-left: 140px solid transparent;
        border-right: 140px solid transparent;
    }

    /* hero about page */
    .hero-about-section {
        min-height: 480px;
    }

    .hero-about-triangle {
        border-left: 140px solid transparent;
        border-right: 140px solid transparent;
        border-bottom: 60px solid var(--color-dark);
    }

    /* page contato */
    .investor-section {
        margin-top: -45px;
        min-height: 820px;
    }

    .investor-container {
        min-height: 780px;
    }

    .investor-content {
        padding: 190px 45px 45px 45px;
    }

    .investor-header {
        margin-top: 1.8rem;
    }

    .investor-image-wrapper {
        left: 52.5%;
    }
    
    .image-logo {
        padding-top: 3rem;
    }
    
    .image-logo img {
        max-width: 170px;
    }
}

/* ===================================================== */
/* ===== 1280px - 1399px ===== */
/* ===================================================== */
@media screen and (min-width: 1280px) and (max-width: 1399px) {
    :root {
        --h1-desktop: 2.8rem;
        --h2-desktop: 1.9rem;
        --h3-desktop: 1.5rem;
    }

    .navbar-menu-center {
        gap: 25px;
    }
    
    .navbar-menu-center a {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
    
    .navbar-email,
    .navbar-phone {
        width: 180px;
    }
    
    .nav-triangle {
        border-left: 160px solid transparent;
        border-right: 160px solid transparent;
    }

    .hero-section {
        min-height: 600px;
    }

    .hero-triangle {
        border-left: 160px solid transparent;
        border-right: 160px solid transparent;
        border-bottom: 60px solid var(--color-dark);
    }

    .about-section {
        min-height: 650px;
    }

    .about-content {
        padding: 90px 100px 50px 50px !important;
    }

    .about-section-triangle {
        margin-top: -60px;
    }

    .about-section-triangle::before {
        border-left: 160px solid transparent;
        border-right: 160px solid transparent;
    }

    /* hero about page */
    .hero-about-section {
        min-height: 500px;
    }

    .hero-about-triangle {
        border-left: 160px solid transparent;
        border-right: 160px solid transparent;
        border-bottom: 60px solid var(--color-dark);
    }

    /* page contato */
    .investor-section {
        margin-top: -75px !important;
        min-height: 840px;
    }

    .investor-container {
        min-height: 800px;
    }

    .investor-content {
        padding: 300px 50px 50px 50px !important
    }

    .investor-header {
        margin-top: 2rem;
    }

    .investor-image-wrapper {
        left: 53%;
    }
    
    .image-logo {
        padding-top: 10rem;
    }
    
    .image-logo img {
        max-width: 175px;
    }
}

/* ===================================================== */
/* ===== 1400px - 1599px ===== */
/* ===================================================== */
@media screen and (min-width: 1400px) and (max-width: 1599px) {
    .investor-section {
        margin-top: -35px;
        min-height: 870px;
    }

    .investor-container {
        min-height: 830px;
    }

    .investor-content {
        padding: 295px 60px 60px 60px !important;
    }

    .investor-header {
        margin-top: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .investor-title {
        font-size: 2.9rem;
    }

    .investor-subtitle {
        font-size: 2.2rem;
    }

    .investor-image-wrapper {
        left: 52.5%;
    }

    .image-logo {
        padding-top: 50px !important;
    }
    
    .image-logo img {
        max-width: 200px;
    }
}

/* ===================================================== */
/* ===== 1360px - Breakpoint específico ===== */
/* ===================================================== */
@media screen and (min-width: 1360px) and (max-width: 1399px) {
    .investor-section {
        margin-top: 40px !important;
    }

    .investor-content {
        padding: 285px 60px 60px 60px !important;
    }

    .investor-image-container {
        height: 99.9%;
    }
    
    .image-logo img {
        max-width: 220px;
    }
}


/* ===================================================== */
/* ===== 1600px - 1879px ===== */
/* ===================================================== */
@media screen and (min-width: 1600px) and (max-width: 1879px) {
    .investor-section {
        margin-top: -130px !important;
        min-height: 900px;
    }

    .investor-container {
        min-height: 860px;
    }

    .investor-content {
        padding: 250px 70px 70px 70px;
        width: 72%;
    }

    .investor-header {
        margin-top: 3rem;
        margin-bottom: 3.5rem;
    }
    
    .investor-title {
        font-size: 3.2rem;
    }

    .investor-subtitle {
        font-size: 2.5rem;
    }

    .investor-description {
        font-size: 1.1rem;
        line-height: 1.8;
        max-width: 88%;
    }

    .investor-image-wrapper {
        left: 52%;
        max-height: 901px;
    }
    
    .image-logo {
        padding-top: 3.5rem;
    }
    
    .image-logo img {
        max-width: 240px;
    }
}

@media (max-width: 1559px) { 
    .investor-section {
        margin-top: -350px;
    }

}

/* ===================================================== */
/* ===== 1880px - Telas muito grandes ===== */
/* ===================================================== */
@media screen and (min-width: 1880px) and (max-width: 1919px) {
    
    .about-section {
        min-height: 700px;
    }

    .about-content {
        padding: 150px 140px 80px 80px !important;
    }

    .about-image-column {
        width: 62%;
    }

    .about-image {
        width: 160%;
        height: 150%;
    }

    .about-image::before {
        width: 42%;
    }

    /*page about */
    .sobre-content .content-grid {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 100px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .content-text {
        padding: 60px 0 60px 40px !important;
        transform: translateX(-20px);
    }

    .value-item h4 {
        font-size: 1.25rem;
    }

    .value-item p {
        font-size: 1rem;
        max-width: 90%;
    }

    .content-image-wrapper {
        height: 800px;
        margin-left: -50px;
    }

    .main-image {
        right: -290px;
        width: 850px;
        height: 600px;
    }

    .overlay-left {
        width: 400px;
        height: 420px;
        left: -40px;
        top: 180px;
    }

    .overlay-bottom {
        bottom: 0;
        width: 550px;
        right: -50px;
    }

    .hero-content {
        width: 40%;
    }

    /* page contato */
    .investor-section {
        margin-top: -130px;
        min-height: 930px;
    }

    .investor-container {
        min-height: 890px;
    }

    .investor-content {
        padding: 280px 90px 90px 90px;
        width: 71%;
    }

    .investor-header {
        margin-top: 3.5rem;
        margin-bottom: 4rem;
    }

    .investor-title {
        font-size: 3.4rem;
    }

    .investor-subtitle {
        font-size: 2.7rem;
    }

    .investor-description {
        font-size: 1.15rem;
        line-height: 1.85;
        max-width: 86%;
    }

    .investor-image-wrapper {
        left: 51.5%;
        max-height: 993px;
    }
    
    .image-logo {
        padding-top: 4.5rem;
    }
    
    .image-logo img {
        max-width: 260px;
    }
}

/* ===================================================== */
/* ===== 1920px - 4K / Full HD ===== */
/* ===================================================== */
@media screen and (min-width: 1920px) and (max-width: 2559px) {
    .investor-section {
        margin-top: -215px;
        min-height: 960px;
        padding-top: 60px;
    }

    .investor-container {
        min-height: 900px;
    }

    .investor-content {
        padding: 300px 100px 100px 100px;
        width: 70%;
    }

    .investor-header {
        margin-top: 4rem;
        margin-bottom: 4rem;
    }

    .investor-title {
        font-size: 3.8rem;
    }

    .investor-subtitle {
        font-size: 2.9rem;
    }

    .investor-description {
        font-size: 1.25rem;
        line-height: 1.9;
        max-width: 85%;
    }

    .investor-image-wrapper {
        left: 51%;
    }
    
    .image-logo {
        padding-top: 5rem;
    }
    
    .image-logo img {
        max-width: 280px;
    }
}

/* ===================================================== */
/* ===== 2560px+ - Ultra-wide / 4K+ ===== */
/* ===================================================== */
@media screen and (min-width: 2560px) {
    .investor-section {
        min-height: 1050px;
        margin-top: -160px;
        padding-top: 80px;
    }

    .investor-container {
        min-height: 970px;
    }

    .investor-content {
        padding: 350px 120px 120px 120px;
        width: 68%;
    }

    .investor-header {
        margin-top: 4.5rem;
        margin-bottom: 4.5rem;
    }

    .investor-title {
        font-size: 4.2rem;
    }

    .investor-subtitle {
        font-size: 3.2rem;
    }

    .investor-description {
        font-size: 1.35rem;
        line-height: 2;
        max-width: 80%;
    }

    .investor-image-wrapper {
        left: 50%;
    }
    
    .image-logo {
        padding-top: 6rem;
    }
    
    .image-logo img {
        max-width: 320px;
    }
}

/* ===================================================== */
/* ===== AJUSTES ESPECÍFICOS PARA ALTURA DA TELA ===== */
/* ===================================================== */

/* Para telas com pouca altura */
@media screen and (max-height: 800px) and (min-width: 992px) {
    .investor-content {
        padding-top: 180px;
    }
    
    .investor-header {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .investor-footer {
        padding-top: 2rem;
    }
}

@media screen and (max-height: 700px) and (min-width: 992px) {
    .investor-content {
        padding-top: 150px;
    }
    
    .investor-header {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .investor-footer {
        padding-top: 1.5rem;
    }
    
    .investor-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media screen and (max-height: 600px) and (min-width: 992px) {
    .investor-section {
        min-height: 600px;
    }
    
    .investor-container {
        min-height: 540px;
    }
    
    .investor-content {
        padding-top: 120px;
    }
    
    .investor-description {
        font-size: 0.9rem;
        line-height: 1.5;
        max-width: 95%;
    }
}

/* ===================================================== */
/* ===== OTMILIZAÇÃO PARA IMPRESSÃO ===== */
/* ===================================================== */
@media print {
    .investor-section {
        margin-top: 0;
        min-height: auto;
        page-break-inside: avoid;
    }
    
    .investor-image-wrapper {
        display: none;
    }
    
    .investor-content {
        width: 100%;
        clip-path: none;
        padding: 20px;
        color: black;
        background: white;
    }
}

/* ===================================================== */
/* ===== PREFERÊNCIA POR ANIMAÇÃO REDUZIDA ===== */
/* ===================================================== */
@media (prefers-reduced-motion: reduce) {
    .investor-section,
    .investor-content,
    .investor-image-wrapper {
        transition: none;
        animation: none;
    }
}

/* Otimização para performance do vídeo */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        animation: none;
    }
}