/* ----------------------------------------------------
   DESIGN SYSTEM: BRUTALIST-EDITORIAL
   ---------------------------------------------------- */
:root {
    --bg-dark: #09090a;
    --bg-card: #121212;
    --orange: #ff5500;
    --orange-hover: #e64a00;
    --text-light: #f4f4f4;
    --text-muted: #888888;
    --text-dark: #09090a;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-dark: rgba(0, 0, 0, 0.2);

    --font-display: 'Archivo Black', sans-serif;
    --font-body: 'Bricolage Grotesque', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: initial;
    /* Lenis takes over */
}

body.brutalist-theme {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.4;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.orange-text {
    color: var(--orange);
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-light);
}

.code-tag {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid var(--orange);
    padding: 0.3rem 0.8rem;
}

/* ----------------------------------------------------
   BUTTONS
   ---------------------------------------------------- */
.btn-brutal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-orange {
    background: var(--orange);
    color: var(--text-dark);
}

.btn-orange:hover {
    background: var(--text-light);
    color: var(--text-dark);
}

.arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-brutal:hover .arrow {
    transform: translate(3px, -3px);
}

/* ----------------------------------------------------
   HEADER
   ---------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(9, 9, 10, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    transition: var(--transition);
}

.site-header.scrolled .header-flex {
    height: 80px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-est {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    z-index: 99;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-light);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    transform: rotate(-45deg);
}

.btn-header-orange {
    background: var(--orange);
    color: var(--text-dark);
    padding: 0.8rem 2rem;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.85rem;
    clip-path: polygon(0% 0%, 100% 0%, 92% 100%, 0% 100%);
    transition: var(--transition);
}

.btn-header-orange .dot {
    margin-right: 0.5rem;
}

.btn-header-orange:hover {
    background: var(--text-light);
    transform: translateX(5px);
}

/* ----------------------------------------------------
   HERO BRUTAL
   ---------------------------------------------------- */
.hero-brutal {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-wood.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero-bg-image {
        background-image: url('images/hero-mobile.webp');
        opacity: 0.6;
        /* Increased opacity for mobile context */
    }

    .hero-bg-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(9, 9, 10, 0.8), rgba(9, 9, 10, 0.4));
    }
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}

.hero-location-tag {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-location-tag .line {
    width: 40px;
    height: 1px;
    background: var(--orange);
}

.hero-location-tag .tag-text {
    font-family: var(--font-mono);
    color: var(--orange);
    font-size: 0.9rem;
    letter-spacing: 3px;
}

.hero-title-main {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 9rem);
    line-height: 0.85;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.white-text {
    color: var(--text-light);
}

.outline-orange {
    color: transparent;
    -webkit-text-stroke: 1px var(--orange);
}

.orange-text-solid {
    color: var(--orange);
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 450px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 5;
    opacity: 0.7;
}

.mouse-icon {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 15px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background: var(--orange);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

.scroll-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* ----------------------------------------------------
   GERAL & ESPAÇAMENTO
   ---------------------------------------------------- */
section {
    padding: 12rem 0;
    /* Espaço de respiro premium entre seções */
}

.code-tag,
.code-tag-sm {
    font-family: var(--font-mono);
    color: var(--orange);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.section-sub {
    font-size: 1.1rem;
    /* Tamanho padronizado conforme catálogo */
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.6;
}

/* ----------------------------------------------------
   MICROINTERAÇÕES NOS CARDS
   ---------------------------------------------------- */
.cat-card,
.dif-card,
.contact-info-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease,
        background 0.3s ease;
    cursor: pointer;
}

.cat-card:hover,
.dif-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: #151515;
}

.dif-icon {
    font-size: 2.5rem;
    color: var(--orange);
    /* Alinhado com a paleta do site */
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.dif-card:hover .dif-icon {
    transform: scale(1.2) rotate(5deg);
}

/* ----------------------------------------------------
   STATS SECTION
   ---------------------------------------------------- */
.stats-dynamic {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-dark);
}

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

.stat-item {
    text-align: left;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* ----------------------------------------------------
   MARQUEE
   ---------------------------------------------------- */
.marquee-container {
    width: 100%;
    background: var(--orange);
    color: var(--text-dark);
    padding: 1.5rem 0;
    overflow: hidden;
    display: flex;
    border-top: 2px solid var(--text-dark);
    border-bottom: 2px solid var(--text-dark);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 2.5rem;
    padding: 0 1rem;
}

/* ----------------------------------------------------
   CATALOGO NEW STYLE
   ---------------------------------------------------- */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 4rem;
}

.code-tag-sm {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--orange);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-title-lg {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.header-desc-p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 400px;
    line-height: 1.5;
}

.grid-brutal-catalog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

/* ----------------------------------------------------
   CATALOGO HOVER & REVEAL
   ---------------------------------------------------- */
.cat-card {
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem;
    transition: var(--transition);
    opacity: 0;
    /* JS will animate */
    transform: translateY(30px);
    /* JS will animate */
}

.cat-card:hover {
    background: #0d0d0d;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.card-id {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.card-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--orange);
    border: 1px solid var(--orange);
    padding: 0.2rem 0.5rem;
    text-transform: uppercase;
}

.card-media {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-card:hover .card-media img {
    transform: scale(1.1);
}

.card-hover-link {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--orange);
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.8rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-card:hover .card-hover-link {
    transform: translateY(0);
}

.card-link-wrapper {
    display: block;
    height: 100%;
}

/* ----------------------------------------------------
   TIMELINE ANIMATION
   ---------------------------------------------------- */
.timeline {
    margin-top: 3rem;
    border-left: 2px solid var(--border-color);
    padding-left: 2rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 2px;
    height: var(--timeline-height, 0%);
    background: var(--orange);
}

.timeline-item {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateX(-20px);
}

/* ----------------------------------------------------
   FLOATING ACTIONS
   ---------------------------------------------------- */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.float-btn img {
    width: 30px;
    height: 30px;
}

.float-btn.insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.float-btn.wpp {
    background: #25D366;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

/* ----------------------------------------------------
   FOOTER FINAL (PRINT STYLE)
   ---------------------------------------------------- */
.site-footer-final {
    background: #111;
    color: #fff;
    padding: 6rem 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-final-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 4rem;
    padding-bottom: 6rem;
}

.footer-final-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    color: #888;
    max-width: 200px;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-line {
    width: 30px;
    height: 2px;
    background: var(--orange);
    margin-bottom: 2rem;
}

.footer-col-nav ul li {
    margin-bottom: 1rem;
}

.footer-col-nav a {
    color: #888;
    transition: var(--transition);
}

.footer-col-nav a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #888;
    align-items: flex-start;
}

.contact-item .icon {
    color: var(--orange);
}

.social-footer-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    color: #fff;
    transition: var(--transition);
}

.social-footer-btn:hover {
    background: var(--orange);
    color: var(--text-dark);
}

.footer-final-bottom {
    background: #000;
    padding: 2rem 0;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid #222;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
}

.agency {
    color: var(--orange);
    font-weight: 700;
}

.card-h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.card-p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ----------------------------------------------------
   FABRICAÇÃO
   ---------------------------------------------------- */
.fabricacao {
    padding: 10rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.fab-list-v2 {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fab-list-v2 li {
    border-bottom: 1px solid var(--border-color);
}

.fab-list-v2 a {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.fab-list-v2 a:hover {
    transform: translateX(10px);
}

.fab-list-v2 .letter {
    font-family: var(--font-mono);
    color: var(--orange);
    font-weight: 700;
    font-size: 0.9rem;
    width: 30px;
}

.fab-list-v2 .li-content {
    flex: 1;
}

.fab-list-v2 .li-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}

.fab-list-v2 .li-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.fab-list-v2 .li-arrow {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.fab-list-v2 a:hover .li-arrow {
    color: var(--orange);
    transform: translateX(5px);
}

.fab-images {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.fab-img {
    flex: 1;
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 450px;
}

.fab-img:nth-child(2) {
    margin-top: 3rem;
}

.fab-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: transform 0.6s ease;
}

.fab-img:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ----------------------------------------------------
   HISTÓRIA V2 (REFINE)
   ---------------------------------------------------- */
.historia-brutal {
    padding: 12rem 0;
    position: relative;
    overflow: hidden;
    background: #09090a;
}

.tree-ring-bg-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.tree-ring-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.15;
    transform: translate(30%, 0);
    filter: brightness(0.8);
}

.historia-content {
    position: relative;
    z-index: 5;
}

.hist-flex {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
}

.huge-number-wrapper {
    margin: 2rem 0 4rem;
}

.huge-number {
    font-family: var(--font-display);
    font-size: clamp(6rem, 15vw, 12rem);
    line-height: 0.8;
    color: var(--orange);
}

.huge-label {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.timeline-v2 {
    border-left: 2px solid var(--orange);
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline-item-v2 {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item-v2::before {
    display: none;
}

.timeline-item-v2 .year {
    font-family: var(--font-mono);
    color: var(--orange);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.timeline-item-v2 p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 250px;
    line-height: 1.4;
}

.hist-right {
    position: relative;
    z-index: 2;
}

.hist-text-refined p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.orange-highlight {
    color: var(--orange);
    font-weight: 700;
}

.hist-quote {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.1;
    margin-top: 4rem;
    color: var(--text-light);
    border-left: 4px solid var(--orange);
    padding-left: 2rem;
}

/* ----------------------------------------------------
   DIFERENCIAIS Laranja
   ---------------------------------------------------- */
.diferenciais-orange {
    background: var(--orange);
    color: var(--text-dark);
    padding: 8rem 0;
}

.dark-tag {
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.dark-title {
    color: var(--text-dark);
}

.italic-serif {
    font-family: var(--font-display);
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-dark);
}

.dif-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #000;
    border: 1px solid #000;
    margin-top: 4rem;
}

.dif-card {
    background: var(--orange);
    padding: 4rem 3rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dif-card:hover {
    background: #ff6622;
}

.dif-icon {
    font-size: 0;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.dif-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.dif-card p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
}

.dif-footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bar-text {
    font-family: var(--font-display);
    font-size: 2.2rem;
    text-transform: uppercase;
}

.footer-bar-text .italic {
    font-style: italic;
    font-family: var(--font-display);
}

.btn-dark-brutal {
    background: #000;
    color: #fff;
    padding: 1.2rem 2.5rem;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.9rem;
    clip-path: polygon(0% 0%, 100% 0%, 92% 100%, 0% 100%);
    transition: var(--transition);
}

.btn-dark-brutal:hover {
    background: #222;
    transform: translateX(10px);
}

/* ----------------------------------------------------
   FOOTER / CONTATO
   ---------------------------------------------------- */
.footer-brutal {
    padding: 8rem 0 2rem;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.btn-whatsapp-brutal {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--orange);
    color: var(--text-dark);
    padding: 1rem 2rem;
    font-family: var(--font-mono);
    font-weight: 800;
    margin-top: 3rem;
    clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-whatsapp-brutal:hover {
    background: var(--text-light);
    transform: translateX(10px);
}

.contact-right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-card {
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--orange);
}

.info-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-info-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.map-wrapper {
    margin-bottom: 6rem;
    filter: grayscale(1) invert(0.9) contrast(1.2);
    border: 1px solid var(--border-color);
}

/* ----------------------------------------------------
   FOOTER NEW STYLE (MODEL: FORTALEZA)
   ---------------------------------------------------- */
.site-footer-final {
    background: #111112;
    color: var(--text-muted);
    padding: 6rem 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-final-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    padding-bottom: 6rem;
}

.footer-final-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 250px;
}

.footer-social-circles {
    display: flex;
    gap: 1rem;
}

.social-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.social-circle:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: translateY(-5px);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.footer-final-grid ul {
    list-style: none;
    padding: 0;
}

.footer-final-grid ul li {
    margin-bottom: 1rem;
}

.footer-final-grid ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-final-grid ul li a:hover {
    color: var(--orange);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.footer-contact-item .icon {
    color: var(--orange);
    font-size: 1.2rem;
}

.footer-final-bottom {
    background: #09090a;
    color: var(--text-muted);
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.bottom-flex a {
    color: inherit;
    text-decoration: none;
}

.bottom-flex a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .footer-final-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-final-grid {
        grid-template-columns: 1fr;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ----------------------------------------------------
   PORTFOLIO SLIDER
   ---------------------------------------------------- */
.portfolio-gallery {
    padding: 10rem 0;
    background: #0d0d0d;
}

.portfolio-slider-container {
    width: 100%;
    overflow: hidden;
    margin: 4rem 0;
    padding: 0 2rem;
}

.portfolio-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-item {
    flex: 0 0 400px;
    height: 500px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.portfolio-controls {
    display: flex;
    gap: 1rem;
}

.portfolio-btn {
    width: 60px;
    height: 60px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-btn:hover {
    background: var(--orange);
    color: var(--text-dark);
    border-color: var(--orange);
}

.btn-outline-brutal {
    border: 1px solid var(--orange);
    color: var(--orange);
    padding: 1rem 2rem;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-outline-brutal:hover {
    background: var(--orange);
    color: var(--text-dark);
}

/* ----------------------------------------------------
   MAPA
   ---------------------------------------------------- */
.map-container {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.map-wrapper {
    border: 1px solid var(--border-color);
    overflow: hidden;
}

/* ----------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------- */
@media (max-width: 1024px) {
    .grid-brutal-catalog {
        grid-template-columns: repeat(2, 1fr);
    }

    .dif-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        gap: 2rem;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 6rem 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        top: 80px;
    }

    .btn-header-orange {
        display: none;
    }

    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .grid-brutal-catalog,
    .dif-grid-6,
    .stats-grid,
    .contact-right-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title-main {
        font-size: 3rem;
    }

    .stat-num {
        font-size: 3.5rem;
    }

    .hist-flex {
        display: flex;
        flex-direction: column;
        gap: 4rem;
    }

    .tree-ring-bg-container {
        width: 100%;
        height: 50%;
        bottom: 0;
        top: auto;
    }

    .tree-ring-bg {
        width: 200%;
        transform: translate(-25%, 20%);
    }

    .fab-images {
        flex-direction: column;
    }

    .fab-img:nth-child(2) {
        margin-top: 0;
    }

    .grid-split {
        grid-template-columns: 1fr;
    }

    .dif-footer-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .footer-bar-text {
        font-size: 1.5rem;
    }

    .huge-number {
        font-size: 8rem;
    }

    .hist-quote {
        font-size: 1.5rem;
    }

    .header-flex {
        height: 80px;
    }

    .header-logo-img {
        height: 40px;
    }

    .logo-name {
        font-size: 1.1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}