/* =========================================
   VARIÁVEIS E RESET
   ========================================= */
:root {
    --color-oxford: #002147;
    --color-oxford-deep: #001A38;
    --color-profundo: #003366;
    --color-profundo-light: #004080;
    --color-bg-dark: #002147;
    --color-bg-darker: #001833;
    --color-text-main: #ffffff;
    --color-text-muted: #B8C9D9;
    --color-text-on-light: #002147;
    --color-text-body-light: #1A3A5C;
    --color-border: rgba(255, 255, 255, 0.12);
    --color-border-light: rgba(0, 33, 71, 0.15);
    --color-surface-light: #F0F4F8;
    --font-main: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-darker);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* =========================================
   ANIMAÇÕES (KEYFRAMES)
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-load {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

/* =========================================
   COMPONENTES GERAIS (Botões)
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
}

.btn--primary {
    background-color: #ffffff;
    color: #002147;
    font-size: clamp(1rem, 1vw, 1.3rem);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s ease, transform 0.3s ease;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.6s ease;
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--primary:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
    background-color: rgb(255, 255, 255);
    color: #002147;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* =========================================
   HEADER & MENU NAVIGATION
   ========================================= */
.header {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0; 
    z-index: 999; 
    background-color: rgba(0, 24, 51, 0.9); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); 
    transition: all var(--transition-speed);
    overflow: visible;
}

.header__container {
    width: 100%;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: flex;
    position: relative;
    align-items: center;
    height: 100%;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    min-width: 220px;
}

.header__logo-box {
    color: #000;
    padding: 0.2rem 0.5rem;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: 18px;
    transform: translateY(-50%);
    overflow: visible;
}

.header__logo-box img {
    display: block;
    max-height: clamp(200px, 23vw, 280px);
}

.header__nav {
    display: none;
}

.header__nav-desktop {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header__nav-mobile-header {
    display: none;
}

.header__nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header__link {
    color: var(--color-text-main);
    text-decoration: none;
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    font-weight: 600;
    transition: color var(--transition-speed);
    position: relative;
}

.header__nav-desktop .header__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.header__nav-desktop .header__link:hover::after {
    transform: scaleX(1);
}

.header__link:hover {
    color: var(--color-text-muted);
}

.header__cta-mobile {
    display: none;
}

.header__checkbox {
    display: none;
}

.header__toggle-btn {
    display: none;
    cursor: pointer;
    padding: 1.5rem;
    z-index: 100;
    
}

.header__icon {
    position: relative;
    display: block;
    background: var(--color-text-main);
    width: 24px;
    height: 2px;
    transition: background var(--transition-speed);
}

.header__icon::before,
.header__icon::after {
    content: '';
    position: absolute;
    left: 0;
    background: var(--color-text-main);
    width: 24px;
    height: 2px;
    transition: all var(--transition-speed);
}

.header__icon::before { top: -8px; }
.header__icon::after { bottom: -8px; }


/* =========================================
   SECTION HERO
   ========================================= */
.section-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end; 
    padding-bottom: 42px;
    background: linear-gradient(135deg, rgba(0, 24, 51, 0.95) 0%, rgba(0, 51, 102, 0.75) 50%, rgba(0, 33, 71, 0.85) 100%), 
                url('Assets/Nova_image_hero.png') no-repeat center center/cover;
    overflow: hidden;
}

.section-hero__container {
    width: 100%;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (max-width: 768px) {
    .section-hero {
        background: linear-gradient(135deg, rgba(0, 24, 51, 0.95) 0%, rgba(0, 51, 102, 0.75) 50%, rgba(0, 33, 71, 0.85) 100%),
                    url('Assets/image_hero_mobile.png') no-repeat center center/cover;
    }
    .section-hero__container { gap: 2rem; padding: 0 1.5rem;}
    .header__container { padding: 0 1.5rem; }
}

.section-hero__content {
    max-width: 900px;
    padding-top: 8rem;
}


.section-hero__badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.section-hero__line {
    width: 40px;
    height: 1px;
    background-color: #B8C9D9;
}

.section-hero__title {
    font-size: clamp(2.8rem, 5vw, 4rem); 
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-hero__description {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem); 
    color: #C8D8E8;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.section-hero__actions {
    display: flex;
    gap: 1rem;
}

/* Hero Stats */
.section-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 2px solid rgba(255, 255, 255, 0.45);
    padding-top: 1.5rem;
}

.section-hero__stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.45);
    padding: 0 2rem;
}

.section-hero__stat-item:first-child {
    padding-left: 0;
}

.section-hero__stat-item:last-child {
    border-right: none;
}

.section-hero__stat-number {
    font-size: clamp(3rem, 4vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.section-hero__stat-text {
    font-size: 1rem;
    color: #C8D8E8;
}

/* =========================================
   SECTION ABOUT
   ========================================= */
.section-about {
    background-color: var(--color-oxford);
    padding: 42px 0;
    padding-top: 160px;
    overflow: hidden;
}

.section-about__container {
    width: 100%;
    padding: 0 3rem;
}

.section-about__title {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 3rem;
}

.section-about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 6rem);
    width: 100%;
    max-width: 100%;
    align-items: center;
}

.section-about__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-about__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter var(--transition-speed);
}

.section-about__image:hover {
    filter: grayscale(0%);
}

.section-about__description {
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    color: var(--color-text-muted);
    line-height: 1.8;
}

.section-about__features {
    display: grid;
    grid-template-columns: 1.3fr 1.3fr;
}

.section-about__feature {
    padding: 6rem;
    transition: background-color var(--transition-speed);
}

.section-about__feature:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.section-about__feature:nth-child(1) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0;
    padding-left: 0;
}

.section-about__feature:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0;
    padding-right: 0;
}

.section-about__feature:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0;
    padding-left: 0;
}

.section-about__feature:nth-child(4) {
    padding-bottom: 0;
    padding-right: 0;
}

.section-about__feature-title {
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #ffffff;
}

.section-about__feature-text {
    font-size: clamp(0.95rem, 1.3vw, 1.25rem);
    color: #B8C9D9;
    line-height: 1.6;
}

/* =========================================
   SECTION SEGMENT
   ========================================= */
.section-segment {
    background-color: #ffffff; 
    color: var(--color-text-on-light);
    padding: 240px 0;
}

.section-segment__container {
    width: 100%; 
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 6rem;
    align-items: start;
}

.section-segment__content {
    display: flex;
    flex-direction: column;
}

.section-segment__subtitle {
    font-size: clamp(1.1rem, 1.3vw, 1.4rem);
    font-weight: 400;
    color: var(--color-profundo);
    display: block;
    margin-bottom: 0.2rem;
}

.section-segment__title {
    font-size: clamp(3rem, 4vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2rem;
    color: var(--color-oxford);
}

.section-segment__text p {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    color: var(--color-text-body-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 850px; 
}

.section-segment__cta-wrapper {
    margin-top: 1.5rem;
}

.section-segment__cta-title {
    font-size: clamp(1.3rem, 1.5vw, 1.6rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-oxford);
}

.section-segment__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-oxford);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 400px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.section-segment__btn svg {
    transition: transform var(--transition-speed) ease;
}

.section-segment__btn:hover {
    background-color: var(--color-profundo);
    transform: translateY(-2px);
}

.section-segment__btn:hover svg {
    transform: translateX(5px);
}

.section-segment__media {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-segment__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px; 
}

.section-segment__img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 75%; 
    background-color: #E0E8F0;
}

.section-segment__img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) grayscale(30%); 
    transition: filter 0.6s ease;
}

.section-segment__img-wrapper:hover img {
    transform: scale(1.08); 
    filter: brightness(1) grayscale(0%);
}

.section-segment__footer-text {
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    color: var(--color-text-body-light);
    line-height: 1.7;
}

/* =========================================
   MEDIA QUERIES (Responsividade Base)
   ========================================= */

@media (min-width: 1930px) and (max-width: 2491px) {
    .section-hero__content { max-width: 1300px; }
    .section-hero__badge { font-size: 1.3rem; }
    .section-hero__title { font-size: 7rem; }
    .section-hero__description { font-size: 1.8rem; margin-bottom: 3.5rem; }
    .section-hero__actions .btn { font-size: 1.3rem; padding: 1.2rem 3.5rem; }
    .section-hero__stat-number { font-size: 6rem; }
    .section-hero__stat-text { font-size: 1.4rem; }
    .header__logo-box img{min-height: 300px;}
    .header__link{font-size: 1.5rem;}
    

    .section-segment__subtitle { font-size: 1.6rem; }
    .section-segment__title { font-size: 5.5rem; }
    .section-segment__text p { font-size: 1.6rem; max-width: 1100px; line-height: 1.9; }
    .section-segment__cta-title { font-size: 2rem; }
    .section-segment__btn { font-size: 1.3rem; padding: 1.2rem 3.5rem; max-width: 500px; }
    .section-segment__footer-text { font-size: 1.3rem; }
}

@media (max-width: 992px) {
    .header { padding-top: clamp(2.5rem, 14vh,5rem); }
    .header__container { padding: 0 1rem; }
    .header__logo-box img { max-height: clamp(230px, 20vw, 250px); transform: translateY(-24px); }
    .header__toggle-btn {
        display: block;
        position: absolute;
        top: 50%;
        right: 1.5rem;
        transform: translateY(-50%);
    }
    .header__icon { width: 28px; }
    .header__icon::before, .header__icon::after { width: 28px; }

    .header__cta {
        display: none;
    }

    .header__nav {
        display: flex;
        position: fixed;
        top: 0;
        right: -750px;
        width: 300px; 
        height: 100vh; 
        background-color: #001A38; 
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem; 
        transition: right var(--transition-speed) cubic-bezier(0.77,0.2,0.05,1.0);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 998; 
    }

    .header__nav-mobile-header {
        display: flex;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        padding-top: 6rem; 
    }

    .header__nav-mobile-brand { display: flex; flex-direction: column; }
    .brand-name { font-weight: 800; font-size: 1.2rem; letter-spacing: 1px; color: #fff; }
    .brand-subtitle { font-size: 0.75rem; color: #B8C9D9; }

    .header__nav-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        align-items: flex-start;
    }

    .header__link { font-size: 1.1rem; font-weight: 600; padding: 0.5rem 0; width: 100%; color: #ffffff; }
    .header__cta-mobile { display: inline-flex; width: 100%; margin-top: auto; border-radius: 0px; padding: 1rem; }
    #menu-toggle:checked ~ .header__nav { right: 0; }
    #menu-toggle:checked ~ .header .header__toggle-btn .header__icon { background: transparent; }
    #menu-toggle:checked ~ .header .header__toggle-btn .header__icon::before { transform: rotate(-45deg); top: 0; }
    #menu-toggle:checked ~ .header .header__toggle-btn .header__icon::after { transform: rotate(45deg); bottom: 0; }

    .header__nav-desktop { display: none; }

    .section-hero__title { font-size: clamp(2.5rem, 6vw, 3.5rem); }
    .section-hero__stats { grid-template-columns: 1fr; gap: 2rem; }
    .section-hero__stat-item { border-right: none; border-bottom: 1px solid var(--color-border); padding: 0 0 2rem 0; }
    .section-hero__stat-item:last-child { border-bottom: none; padding-bottom: 0; }

    .section-about__content { grid-template-columns: 1fr; gap: 4rem; }
    .section-segment__container { display: flex; flex-direction: column; gap: 3rem; }
    .section-segment__content { display: contents; }
    .section-segment__content-body { order: 0; }
    .section-segment__media { order: 1; }
    .section-segment__cta-wrapper { order: 2; margin-top: 0; text-align: center; display: flex; flex-direction: column; align-items: center; width: 100%; }
    .section-segment__title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .section-hero__title { font-size: 2.5rem; }
    .section-hero__actions { flex-direction: column; }
    .header__container { padding: 0; }
    .header__logo-box img { max-height: clamp(180px, 15vw, 200px); transform: translateY(-32px);}
    .header__icon { width: 24px; }
    .header__icon::before, .header__icon::after { width: 24px; }
    .section-about__container { padding: 0 1.5rem; }
    .section-about__features { grid-template-columns: 1fr; }
    .section-about__feature:nth-child(n) { border-right: none; border-bottom: 1px solid var(--color-border); padding: 2.5rem 0; }
    .section-about__feature:last-child { border-bottom: none; }
    .section-segment { padding: 60px 0; }
    .section-segment__container { padding: 0 1.5rem; }
    .section-segment__title { font-size: 2.2rem; }
    .section-segment__grid { grid-template-columns: 1fr; }
    .section-segment__btn { max-width: 100%; }
    .section-hero{ min-height: 100vh; display: flex; align-items: flex-end; }
}

@media (max-width: 480px) {
    .section-hero__title { font-size: 2rem; }
    .section-hero__description { font-size: 1rem; }
}

/* =========================================
   NOVA SEÇÃO: INDUSTRIA DE TINTAS
   ========================================= */
.section-industry {
    background-color: var(--color-surface-light); 
    color: var(--color-text-on-light);
    /* Adicionado mais espaçamento superior (150px) */
    padding: 10vh 0;
}

.section-industry__container {
    width: 100%; 
    padding: 0 3rem;
    display: grid;
    /* Ajuste de proporção: 1.2fr para texto, 0.8fr para as imagens (reduzindo imagens) */
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 5rem;
    align-items: start;
    justify-content: center;
}

.section-industry__container > :first-child{
    max-width: 1000px;
    padding-top: 24px;
}

.section-industry__container > :last-child{
    max-width: 900px;
}

.section-industry__content {
    display: flex;
    flex-direction: column;
}

.section-industry__subtitle {
    font-size: clamp(1.1rem, 1.3vw, 1.4rem);
    font-weight: 400;
    color: var(--color-profundo);
    display: block;
    margin-bottom: 0.2rem;
}

.section-industry__title {
    font-size: clamp(3rem, 4vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--color-oxford);
    margin-top: 32px;
}

.section-industry__highlight {
    font-size: clamp(1.1rem, 1.3vw, 1.4rem);
    font-weight: 800;
    color: var(--color-oxford);
    margin-bottom: 2rem;
}

.section-industry__text p {
    font-size: clamp(1.1rem, 1.2vw, 1.25rem);
    color: var(--color-text-body-light);
    margin-bottom: 2.3rem;
    line-height: 1.8;
    max-width: 850px;
}

.section-industry__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
    
}

.section-industry__feature-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background-color: var(--color-oxford);
    color: #ffffff;
    padding: 1.5rem 1.5rem !important;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: default;
    /* Transição aplicada a todos os atributos para suavizar a animação de hover */
    transition: all var(--transition-speed) ease;
}

.section-industry__feature-btn:hover {
    background-color: var(--color-profundo);
    /* Efeito de subir sutilmente ao passar o mouse */
    transform: translateY(-4px);
}

.section-industry__media {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.section-industry__images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-industry__images img {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    /* Filtro 100% preto e branco */
    filter: grayscale(100%); 
    transition: filter var(--transition-speed) ease;
}

.section-industry__images img:hover {
    /* Retorna à cor original no hover */
    filter: grayscale(0%);
}

.section-industry__cta-wrapper {
    margin-top: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-industry__cta-title {
    font-size: clamp(1.3rem, 1.5vw, 1.6rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-oxford);
}

.section-industry__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-oxford);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    width: 100%;
    max-width: 400px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.section-industry__btn svg {
    transition: transform var(--transition-speed) ease;
}

.section-industry__btn:hover {
    background-color: var(--color-profundo);
    transform: translateY(-2px);
}

.section-industry__btn:hover svg {
    transform: translateX(5px);
}

/* =========================================
   RESPONSIVIDADE: INDUSTRIA DE TINTAS
   ========================================= */
@media (min-width: 1930px) and (max-width: 2491px) {
    .section-industry__subtitle { font-size: 1.6rem; }
    .section-industry__title { font-size: 5.5rem; }
    .section-industry__highlight { font-size: 1.8rem; }
    .section-industry__text p { font-size: 1.6rem; max-width: 1100px; line-height: 1.9; }
    .section-industry__feature-btn { font-size: 1.2rem; padding: 1.2rem 2rem; }
    .section-industry__cta-title { font-size: 2rem; }
    .section-industry__btn { font-size: 1.3rem; padding: 1.2rem 3.5rem; max-width: 500px;}
}

/* =========================================================================
   NOVA REGRA ADICIONADA: FIX DE ALINHAMENTO PARA TELAS ENTRE 993px e 1407px 
   ========================================================================= */
@media (min-width: 993px) and (max-width: 1407px) {
    .section-industry__container {
        grid-template-columns: 1fr 1fr; /* Divide o espaço igualmente para que as imagens não sejam esmagadas */
        gap: 3rem; /* Reduz o gap gigante de 10rem que estava encolhendo a coluna da direita */
        align-items: center; /* Alinha o texto e as imagens perfeitamente ao centro verticalmente */
    }
    
    .section-industry__media {
        align-items: center; /* Centraliza horizontalmente o conteúdo (imagens e botão) dentro da coluna */
    }
}

@media (max-width: 992px) {
    .section-industry__container { grid-template-columns: 1fr; gap: 3rem; }
    .section-industry__title { font-size: 3rem; }
    .section-industry__images img{width: 100%; max-width: none;}
}

@media (max-width: 768px) {
    .section-industry { padding: 80px 0; }
    .section-industry__container { padding: 0 1.5rem; }
    .section-industry__title { font-size: 2.2rem; }
    .section-industry__features { grid-template-columns: 1fr; }
    .section-industry__btn { max-width: 100%; }
}

/* =========================================
   NOVA SEÇÃO: LEVANTAMENTO DE CARGA
   ========================================= */
.section-lifting {
    background-color: #ffffff;
    color: var(--color-text-on-light);
    padding: 10vh 0;
}

.section-lifting__container {
    width: 100%;
    padding: 0 3rem;
    display: grid;
    /* Divide o espaço, dando ligeiramente mais ênfase para o texto */
    grid-template-columns: 1.1fr 0.9fr; 
    gap: 5rem;
    align-items: start;
    justify-content: center;
}

/* --- COLUNA ESQUERDA: CONTEÚDO --- */
.section-lifting__content {
    display: flex;
    flex-direction: column;
    padding-top: 24px;
    max-width: 900px;
}

.section-lifting__subtitle {
    font-size: clamp(1.1rem, 1.3vw, 1.4rem);
    font-weight: 400;
    color: var(--color-profundo);
    display: block;
    margin-bottom: 0.2rem;
}

.section-lifting__title {
    font-size: clamp(3rem, 4vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2.5rem;
    color: var(--color-oxford);
}

.section-lifting__text p {
    font-size: clamp(1.1rem, 1.2vw, 1.25rem);
    color: var(--color-text-body-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.section-lifting__features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.section-lifting__feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.section-lifting__feature-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--color-profundo);
}

.section-lifting__feature-text {
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    color: var(--color-text-body-light);
    line-height: 1.6;
}

.section-lifting__feature-text strong {
    color: var(--color-oxford);
    font-weight: 800;
}

/* --- COLUNA DIREITA: IMAGENS E CTA --- */
.section-lifting__media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
}

/* Badge Preto */
.section-lifting__badge {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--color-oxford);
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Grid de Imagens */
.section-lifting__image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 400px;
}

.section-lifting__img-col-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    min-height: 0;
    overflow: hidden;
}

.section-lifting__img-col-left img {
    flex: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter var(--transition-speed) ease, transform var(--transition-speed) ease;
    min-height: 0;
}

.section-lifting__img-col-right {
    height: 100%;
    min-height: 0;
    overflow: hidden;
}

.section-lifting__img-col-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    filter: grayscale(100%);
    transition: filter var(--transition-speed) ease, transform var(--transition-speed) ease;
}

/* Imagem Full-Width Abaixo do Grid */
.section-lifting__img-full {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.section-lifting__img-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter var(--transition-speed) ease, transform var(--transition-speed) ease;
}

/* Hover das Imagens */
.section-lifting__img-col-left img:hover,
.section-lifting__img-col-right img:hover,
.section-lifting__img-full img:hover {
    filter: grayscale(0%);
    transform: scale(1.08);
}

/* Chamada para Ação (CTA) */
.section-lifting__cta-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
}

.section-lifting__cta-title {
    font-size: clamp(1.2rem, 1.4vw, 1.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-oxford);
    max-width: 500px;
    text-transform: uppercase;
}

.section-lifting__btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-oxford);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    width: 100%;
    max-width: 400px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.section-lifting__btn-dark svg {
    transition: transform var(--transition-speed) ease;
}

.section-lifting__btn-dark:hover {
    background-color: var(--color-profundo);
    transform: translateY(-2px);
}

.section-lifting__btn-dark:hover svg {
    transform: translateX(5px);
}

/* =========================================
   RESPONSIVIDADE: LEVANTAMENTO DE CARGA
   ========================================= */

/* Telas Ultra Largas */
@media (min-width: 1930px) and (max-width: 2491px) {
    .section-lifting__subtitle { font-size: 1.6rem; }
    .section-lifting__title { font-size: 5.5rem; }
    .section-lifting__text p { font-size: 1.6rem; max-width: 1100px; line-height: 1.9; }
    .section-lifting__feature-text { font-size: 1.4rem; }
    .section-lifting__cta-title { font-size: 1.8rem; max-width: 600px; }
    .section-lifting__btn-dark { font-size: 1.3rem; padding: 1.2rem 3.5rem; max-width: 500px; }
    .section-lifting__image-grid { height: 750px; }
    .section-lifting__img-full { height: 450px; }
    
}

/* Ajuste Fino para Laptops e Telas Médias */
@media (min-width: 993px) and (max-width: 1407px) {
    .section-lifting__container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .section-lifting__image-grid {
        height: 480px;
    }
    .section-lifting__img-full { height: 280px; }
}

/* Tablets e Monitores Pequenos */
@media (max-width: 992px) {
    .section-lifting__container { 
        grid-template-columns: 1fr; 
        gap: 4rem; 
    }
    .section-lifting__badge {
        align-self: flex-start; /* Move a tag de segurança para a esquerda no mobile */
    }
    .section-lifting__image-grid {
        height: 500px;
    }
    .section-lifting__img-full { height: 300px; }
}

/* Celulares */
@media (max-width: 768px) {
    .section-lifting { padding: 80px 0; }
    .section-lifting__container { padding: 0 1.5rem; gap: 3rem;}
    .section-lifting__title { font-size: 2.2rem; }
    
    /* Quebra o Grid de imagens para uma coluna, empilhando as 3 fotos */
    .section-lifting__image-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .section-lifting__img-col-left {
        height: auto;
        min-height: 0;
    }
    .section-lifting__img-col-left img {
        height: 350px;
        flex: none;
    }
    .section-lifting__img-col-right img {
        height: 420px;
    }
    
    .section-lifting__img-full { height: 320px; }
    .section-lifting__btn-dark { max-width: 100%; }
}




.footer {
    background-color: #001833;
    color: #ffffff;
    padding: 100px 0 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Lado esquerdo menor, lado direito (mapa) maior */
    gap: 6rem;
}

/* --- LADO ESQUERDO --- */
.footer__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.footer__brand {
    margin-bottom: 4rem;
}

.footer__logo {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.footer__description {
    font-size: 1rem;
    color: #C8D8E8;
    line-height: 1.6;
    max-width: 380px;
}

.footer__cta-title {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #ffffff;
}

.footer__btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: var(--color-oxford);
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    width: fit-content;
}

.footer__btn-white svg {
    transition: transform var(--transition-speed) ease;
}

.footer__btn-white:hover {
    background-color: #E8EEF4;
    transform: translateY(-3px);
}

.footer__btn-white:hover svg {
    transform: translateX(5px);
}

/* --- LADO DIREITO --- */
.footer__right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer__links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer__nav-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__nav-title {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.footer__link {
    color: #8FA8C0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-speed) ease;
}

.footer__link:hover {
    color: #ffffff;
}

/* --- SEÇÃO DO MAPA --- */
.footer__map-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__address {
    font-size: 0.95rem;
    color: #C8D8E8;
}

.footer__map-link {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color var(--transition-speed) ease;
}

.footer__map-link:hover {
    border-color: rgba(255, 255, 255, 0.35);
}

.footer__map-link iframe {
    width: 100%;
    height: 280px;
    display: block;
    border: none;
    pointer-events: none; /* Clique passa direto para o link abrir a rota */
}

/* =========================================
   RESPONSIVIDADE: FOOTER
   ========================================= */

/* Telas Ultra Largas */
@media (min-width: 1930px) and (max-width: 2491px) {
    .footer__logo { font-size: 3.5rem; }
    .footer__description { font-size: 1.3rem; max-width: 500px; }
    .footer__cta-title { font-size: 3rem; }
    .footer__btn-white { font-size: 1.2rem; padding: 1.5rem 3rem; }
    .footer__nav-title { font-size: 1.4rem; }
    .footer__link { font-size: 1.2rem; }
    .footer__address { font-size: 1.2rem; }
    .footer__map-link iframe { height: 400px; }
}

/* Tablets e Notebooks */
@media (max-width: 992px) {
    .footer__container {
        display: flex;
        flex-direction: column;
        gap: 4rem;
    }
    
    .footer__left {
        display: contents; /* Achata o wrapper para permitir reordenamento */
    }
    
    .footer__brand {
        order: 1;
    }
    
    .footer__right {
        order: 2;
    }
    
    .footer__cta {
        order: 3; /* CTA (com o botão) vai por último */
    }
}

/* Celulares */
@media (max-width: 768px) {
    .footer { padding: 60px 0; }
    .footer__container { padding: 0 1.5rem; gap: 0; }
    .footer__cta-title{margin-top: 2rem;}
    
    .footer__links-grid {
        grid-template-columns: 1fr; /* Quebra as colunas de links para ficarem uma embaixo da outra */
        gap: 3rem;
    }
    
    .footer__map-link iframe { height: 220px; }
    .footer__btn-white { width: 100%; } /* Botão ocupando a largura total */
}

/* =========================================
   NOVA SEÇÃO: AUTO-LATEX COMPLETA
   ========================================= */
.section-autolatex {
    background-color: #ffffff;
    width: 100%;
}

.autolatex__container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Utilitários Auxiliares */
.text-center { text-align: center; }
.text-white { color: #ffffff !important; }

/* 1. HERO DO PRODUTO */
.autolatex__hero {
    min-height: 70vh;
    background: linear-gradient(135deg, rgba(0,26,51,0.88) 0%, rgba(0,33,71,0.82) 60%, rgba(13,59,102,0.78) 100%), url('https://adapta-one-prod.s3.sa-east-1.amazonaws.com/bomec.drive%40gmail.com/png/image-019f5221-b918-762c-9ae1-2546b791d895.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0;
}

.autolatex__badge {
    display: inline-block;
    color: #64B5F6;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    background: rgba(21,101,192,.15);
    padding: 8px 16px;
    border-radius: 999px;
}

.autolatex__hero-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.autolatex__hero-subtitle {
    color: rgba(255,255,255,.9);
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.autolatex__hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.autolatex__hero-actions .btn--secondary {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.autolatex__hero-actions .btn--secondary:hover {
    background-color: #ffffff;
    color: #002147;
    border-color: #ffffff;
    transform: translateY(-3px);
}

.autolatex__hero-actions .btn--primary {
    background-color: var(--color-profundo-light);
    color: #ffffff;
    border: 2px solid var(--color-profundo-light);
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}

.autolatex__hero-actions .btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.autolatex__hero-actions .btn--primary:hover::before {
    left: 100%;
}

.autolatex__hero-actions .btn--primary:hover {
    background-color: var(--color-oxford);
    border-color: var(--color-oxford);
    box-shadow: 0 8px 30px rgba(21, 101, 192, 0.6), 0 0 15px rgba(21, 101, 192, 0.3);
    transform: translateY(-3px);
}

/* 2. PROBLEMA E SOLUÇÃO */
.autolatex__ps {
    padding: 80px 0;
    background-color: #ffffff;
    color: var(--color-text-on-light);
}

.autolatex__section-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--color-oxford);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.autolatex__ps-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.autolatex__ps-left {
    border-left: 4px solid rgba(13,59,102,.35);
    padding-left: 1.5rem;
}

.autolatex__ps-right {
    border-left: 4px solid var(--color-profundo);
    padding-left: 1.5rem;
}

.autolatex__text {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: var(--color-text-body-light);
    line-height: 1.7;
}

.autolatex__cad-showcase {
    background: var(--color-surface-light);
    padding: 2.5rem 1.5rem;
    border-radius: 14px;
    margin: 0 auto 3.5rem;
    max-width: 1100px;
    position: relative;
}

.autolatex__patent-badge {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-profundo-light) 0%, var(--color-profundo) 50%, var(--color-oxford-deep) 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.35);
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0,51,102,0.6), 0 0 40px rgba(0,64,128,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
    pointer-events: none;
}

.autolatex__cad-showcase img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,33,71,0.12);
    display: block;
}

/* STEPS */
.autolatex__steps-subtitle {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-oxford);
    margin-bottom: 1.5rem;
}

.autolatex__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.autolatex__step {
    background: var(--color-surface-light);
    padding: 2rem 1.5rem;
    border-radius: 14px;
    border-top: 3px solid var(--color-profundo);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.autolatex__step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.autolatex__step-num {
    color: var(--color-profundo);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.autolatex__step h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-oxford);
    margin-bottom: 0.5rem;
}

.autolatex__step p {
    font-size: 0.95rem;
    color: var(--color-text-body-light);
}

/* 3. PRODUTIVIDADE */
.autolatex__prod {
    background: linear-gradient(120deg, var(--color-oxford) 0%, var(--color-profundo) 45%, #1565C0 100%);
    padding: 80px 0;
}

.autolatex__prod-cols {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.autolatex__prod-col {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.autolatex__big {
    font-size: clamp(4rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
}

.autolatex__lbl {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.faded { color: rgba(255,255,255,.5); }
.bright { color: #ffffff; }

.autolatex__circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--color-oxford);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(0,0,0,.2);
    flex-shrink: 0;
}

.autolatex__prod-note {
    margin-top: 3rem;
    font-style: italic;
    font-size: 1.15rem;
    color: rgba(255,255,255,.9);
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* 4. DIFERENCIAIS + ESG */
.autolatex__diff {
    background: var(--color-surface-light);
    padding: 80px 0;
}

.autolatex__diff-strip {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 14px;
    margin: 2.5rem 0;
    box-shadow: 0 8px 24px rgba(0,33,71,0.12);
    display: block;
}

.autolatex__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.autolatex__card {
    background: #ffffff;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease, border-color var(--transition-speed) ease;
    border: 1px solid #C7D6E5;
}

.autolatex__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
    border-color: var(--color-profundo);
}

.autolatex__ic {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.autolatex__card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-oxford);
    margin-bottom: 0.5rem;
}

.autolatex__card p {
    font-size: 0.95rem;
    color: var(--color-text-body-light);
}

.autolatex__esg {
    margin-top: 3rem;
    text-align: center;
    font-size: 1rem;
    color: var(--color-oxford);
    font-weight: 600;
    padding: 1.2rem;
    border-top: 1px solid #B0C4DE;
    border-bottom: 1px solid #B0C4DE;
}

.autolatex__esg span { margin: 0 10px; }
.autolatex__esg .sep { color: var(--color-profundo); font-weight: 800; }

/* 5. ESPECIFICAÇÕES */
.autolatex__specs {
    padding: 80px 0;
    background: #ffffff;
}

.autolatex__sub {
    color: var(--color-text-body-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.autolatex__specs-photo {
    display: block;
    max-width: 1000px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,33,71,0.12);
    margin: 0 auto 1.5rem;
}

.autolatex__specs-caption {
    font-style: italic;
    text-align: center;
    color: var(--color-text-body-light);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.autolatex__accordions {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.autolatex__acc {
    border: 1px solid #C7D6E5;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #ffffff;
    transition: box-shadow var(--transition-speed) ease;
}

.autolatex__acc:hover, .autolatex__acc[open] {
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.autolatex__acc summary {
    list-style: none;
    cursor: pointer;
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-oxford);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.autolatex__acc summary::-webkit-details-marker { display: none; }
.autolatex__acc summary::after {
    content: "+";
    color: var(--color-profundo);
    font-size: 1.5rem;
    font-weight: 800;
    transition: transform var(--transition-speed) ease;
}

.autolatex__acc[open] summary::after {
    transform: rotate(45deg);
}

.autolatex__acc-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-body-light);
    font-size: 1rem;
    line-height: 1.6;
}

.autolatex__final-cta {
    text-align: center;
    margin-top: 3rem;
}

.autolatex__final-cta .btn {
    background-color: var(--color-oxford);
    color: #ffffff;
    padding: 24px 32px;
}

.autolatex__final-cta .btn:hover {
    background-color: var(--color-profundo);
}

/* Responsividade Específica para AutoLatex */
@media (max-width: 992px) {
    .autolatex__ps-grid { grid-template-columns: 1fr; gap: 2rem; }
    .autolatex__steps { grid-template-columns: repeat(2, 1fr); }
    .autolatex__cards { grid-template-columns: repeat(2, 1fr); }
    .autolatex__prod-cols { gap: 2rem; }
    .autolatex__esg { display: flex; flex-direction: column; gap: 10px; }
    .autolatex__esg .sep { display: none; }
    .autolatex__patent-badge { font-size: 0.75rem; padding: 0.5rem 1.1rem; }
}

@media (max-width: 768px) {
    .autolatex__container { padding: 0 1.5rem; }
    .autolatex__hero { padding: 80px 0; }
    .autolatex__hero-actions { flex-direction: column; }
    .autolatex__hero-actions .btn { width: 100%; text-align: center; }
    .autolatex__steps { grid-template-columns: 1fr; }
    .autolatex__cards { grid-template-columns: 1fr; }
    .autolatex__big { font-size: 3.5rem; }
    .autolatex__diff-strip { height: 400px; }
    .autolatex__cad-showcase { padding: 1.5rem 1rem; }
    .autolatex__final-cta .btn{padding: 16px;}
    .autolatex__patent-badge { font-size: 0.65rem; padding: 0.4rem 0.9rem; top: 0.8rem; }
}

@media (min-width: 1200px) {
    .autolatex__hero-title { font-size: 4.5rem; }
    .autolatex__hero-subtitle { font-size: 1.4rem; }
    .autolatex__section-title { font-size: 3rem; }
    .autolatex__text { font-size: 1.2rem; }
    .autolatex__step h5 { font-size: 1.2rem; }
    .autolatex__step p { font-size: 1.05rem; }
    .autolatex__card h5 { font-size: 1.2rem; }
    .autolatex__card p { font-size: 1.05rem; }
    .autolatex__big { font-size: 6.5rem; }
    .autolatex__lbl { font-size: 1.2rem; }
    .autolatex__prod-note { font-size: 1.25rem; }
    .autolatex__esg { font-size: 1.1rem; }
    .autolatex__sub { font-size: 1.2rem; }
    .autolatex__acc summary { font-size: 1.2rem; }
    .autolatex__acc-body { font-size: 1.1rem; }
    .autolatex__steps-subtitle { font-size: 1.6rem; }
    .autolatex__diff-strip { height: 600px; }
}

@media (min-width: 1930px) and (max-width: 2491px) {
    .autolatex__hero-actions .btn--secondary {
        padding: 1.3rem 3rem;
        font-size: 1.3rem;
    }
    .autolatex__hero-actions .btn--primary {
        padding: 1.3rem 3rem;
        font-size: 1.3rem;
    }
    .autolatex__hero-title { font-size: 5.5rem; }
    .autolatex__hero-subtitle { font-size: 1.6rem; }
    .autolatex__section-title { font-size: 3.5rem; }
    .autolatex__text { font-size: 1.35rem; }
    .autolatex__step h5 { font-size: 1.35rem; }
    .autolatex__step p { font-size: 1.2rem; }
    .autolatex__card h5 { font-size: 1.3rem; }
    .autolatex__card p { font-size: 1.2rem; }
    .autolatex__big { font-size: 8rem; }
    .autolatex__lbl { font-size: 1.35rem; }
    .autolatex__prod-note { font-size: 1.4rem; }
    .autolatex__esg { font-size: 1.25rem; }
    .autolatex__sub { font-size: 1.35rem; }
    .autolatex__acc summary { font-size: 1.35rem; }
    .autolatex__acc-body { font-size: 1.25rem; }
    .autolatex__steps-subtitle { font-size: 1.8rem; }
    .autolatex__diff-strip { height: 750px; }
    .autolatex__prod { padding: 100px 0; }
    .autolatex__diff { padding: 100px 0; }
    .autolatex__specs { padding: 100px 0; }
    .autolatex__ps { padding: 100px 0; }
}