
/* ==========================================
   VARIÁVEIS DE DESIGN SYSTEM (PALETA OBRIGATÓRIA)
   ========================================== */
:root {
    /* Cores do briefing */
    --color-brand: #29631B;
    --color-brand-dark: #28581D;
    --color-cta: #19920E;
    --color-cta-hover: #13770a;
    --color-brand-light: #D3F8E2;
    --color-white: #FFFFFF;
    --color-bg-light: #F7F7F7;
    --color-text-main: #252917;
    --color-text-secondary: #5F6555;

    /* Acentos para Gramas Coloridas */
    --color-magenta: #D63384;
    --color-orange: #FD7E14;
    --color-stars: #FFC107;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #128C7E;

    /* Neutros de Suporte */
    --color-border: #E2E8F0;
    --color-dark-bg: #1A3015;
    
    /* Refinamentos visuais de fundos por seção */
    --color-auth-bg: #D6F3E3;
    --color-bento-bg: #E3EAE0;
    --color-colored-bg: #ECEFE8;
    --color-comparison-bg: #E8EDE3;
    --color-steps-bg: #E2E9DF;
    --color-types-bg: #E8EDE3;
    --color-gallery-bg: #E3EAE0;
    --color-testimonials-bg: #D6F3E3;
    --color-contact-bg: #EBEBEB;
    --color-footer-bg: #152A11;

    /* Tipografia */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Sombras Showroom */
    --shadow-soft: 0 4px 20px rgba(41, 99, 27, 0.04);
    --shadow-medium: 0 12px 30px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 40px rgba(41, 99, 27, 0.1);
    --shadow-premium: 0 30px 60px rgba(0, 0, 0, 0.08);

    /* Arredondamento */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);

    /* Layout */
    --container-max-width: 1240px;
    --header-height: 80px;
}

/* ==========================================
   RESET E CONFIGURAÇÃ•ES GERAIS
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

/* Scrollbar Estilizada */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--color-brand);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-brand-dark);
}

/* ==========================================
   LAYOUT E UTILITIES
   ========================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Elementos de ambientação e profundidade visual */
.bg-glow-spot {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.12;
    color: var(--color-brand);
}

/* Traçados de Topografia */
.topography-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.25;
    color: var(--color-brand-light);
}

.hero-showroom .topography-svg {
    color: rgba(211, 248, 226, 0.25);
    opacity: 0.3;
}

.section-bento .topography-svg {
    color: var(--color-brand);
    opacity: 0.18;
}

/* Separadores de Seção em Onda SVG */
.wave-divider {
    position: absolute;
    bottom: -1px; /* Evita fendas pixeladas */
    left: 0;
    width: 100%;
    height: 80px;
    overflow: hidden;
    line-height: 0;
    z-index: 8;
    pointer-events: none;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* Sombra de Folhagens Projetada (Vento/Biofilia) */
.foliage-shadow-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    opacity: 0.10;
}

.foliage-shadow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background-image: radial-gradient(circle, #252917 25%, transparent 60%),
                      radial-gradient(circle, #252917 15%, transparent 50%);
    background-size: 400px 400px;
    background-position: 0 0, 200px 200px;
    filter: blur(55px);
    animation: foliage-wind 24s infinite ease-in-out alternate;
}

@keyframes foliage-wind {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(40px, 20px) rotate(2deg) scale(1.05);
    }
    100% {
        transform: translate(-20px, 30px) rotate(-1deg) scale(0.98);
    }
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-bg-alt {
    background-color: var(--color-bg-light);
}

.text-center {
    text-align: center;
}

/* Tipografia e Títulos Editoriais */
h1, h2, h3, h4 {
    font-family: var(--font-headings);
    color: var(--color-text-main);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Cabeçalho de Seção Estilo Revista */
.section-header-editorial {
    max-width: 700px;
    margin-bottom: 60px;
}

.section-header-editorial.text-center {
    margin-left: auto;
    margin-right: auto;
}

.header-pre-title {
    display: inline-block;
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-brand);
    margin-bottom: 12px;
}

.section-header-editorial p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

/* Botões do Catálogo */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-cta);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(25, 146, 14, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 146, 14, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-main);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    background-color: var(--color-bg-light);
    border-color: var(--color-text-main);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
}

.btn-instagram {
    background-color: #E1306C;
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(225, 48, 108, 0.15);
}

.btn-instagram:hover {
    background-color: #C13584;
    transform: translateY(-2px);
}

/* ==========================================
   1. CABEÇALHO COMPACTO E MODERNO
   ========================================== */
.header {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(41, 99, 27, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
}

.header.shrink {
    height: 70px;
    background-color: var(--color-white);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(41, 99, 27, 0.1);
}

/* Efeito de brilho elegante para chamar atenção ao CTA */
.header .btn-primary {
    position: relative;
    overflow: hidden;
}

.header .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 25%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: shine-animation 4s infinite ease-in-out;
}

@keyframes shine-animation {
    0% { left: -50%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--color-brand);
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-brand);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Menu de Navegação Horizontal */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 24px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-brand);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-brand);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Menu Hamburger */
.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    z-index: 1010;
}

.menu-btn span {
    width: 100%;
    height: 2.5px;
    background-color: var(--color-text-main);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Hambúrguer Ativo */
.menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

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

/* ==========================================
   2. HERO EDITORIAL SHOWROOM
   ========================================== */
.hero-showroom {
    background: linear-gradient(135deg, #162E12 0%, #28581D 100%);
    padding: 180px 0 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 5;
}

.spot-hero-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(25, 146, 14, 0.25) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.spot-hero-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(211, 248, 226, 0.15) 0%, transparent 70%);
    bottom: -150px;
    left: -50px;
}

.shape-hero {
    top: 15%;
    left: 5%;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(rgba(211, 248, 226, 0.25) 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    opacity: 0.85;
}

.hero-content-editorial .hero-upper-tag {
    display: inline-block;
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-brand-light);
    background-color: rgba(211, 248, 226, 0.15);
    border: 1px solid rgba(211, 248, 226, 0.2);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.hero-content-editorial h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    color: var(--color-white);
}

.hero-content-editorial .hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 35px;
}

.hero-actions-showroom {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-showroom .btn-secondary {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
}

.hero-showroom .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--color-white);
    color: var(--color-white);
}

/* Lado da Imagem Hero e Cards Flutuantes */
.hero-image-editorial {
    position: relative;
    width: 100%;
}

.editorial-img-container {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16 / 13;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-editorial-img {
    width: 100%;
    height: 100%;
    object-position: center;
}

.floating-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: calc(100% + 40px);
    max-width: 440px;
    z-index: 10;
}

.floating-card {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition-normal);
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    background-color: rgba(255, 255, 255, 0.95);
}

.floating-card .fcard-number {
    font-family: var(--font-headings);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-brand);
    line-height: 1;
}

.floating-card .fcard-icon {
    font-size: 1.5rem;
    color: var(--color-brand);
    line-height: 1;
}

.floating-card .fcard-txt {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-main);
}

/* ==========================================
   3. FAIXA DE AUTORIDADE PREMIUM
   ========================================== */
.authority-bar {
    background-color: var(--color-auth-bg);
    padding: 30px 0;
    border-top: 1px solid rgba(41, 99, 27, 0.08);
    border-bottom: 1px solid rgba(41, 99, 27, 0.08);
    position: relative;
    z-index: 10;
}

.authority-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: stretch;
}

.auth-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: 0 4px 15px rgba(41, 99, 27, 0.03);
    border: 1px solid rgba(41, 99, 27, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-normal);
}

.auth-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(41, 99, 27, 0.08);
    border-color: rgba(41, 99, 27, 0.15);
}

.auth-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--color-brand-light);
    color: var(--color-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-icon-wrapper .icon-svg {
    width: 18px;
    height: 18px;
}

.auth-item {
    font-size: 0.88rem;
    color: var(--color-text-main);
    font-weight: 500;
    line-height: 1.3;
}

.auth-item strong {
    font-weight: 700;
    color: var(--color-brand);
}

.section-bento {
    background-color: var(--color-bento-bg);
}

.shape-bento {
    bottom: -5%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(41, 99, 27, 0.14) 0%, transparent 70%);
    border-radius: 50%;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 28px; /* Espaçamento editorial refinado */
}

.bento-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition-normal);
    cursor: pointer;
    border: 1px solid rgba(41, 99, 27, 0.03);
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(41, 99, 27, 0.08);
    border-color: rgba(41, 99, 27, 0.1);
}

.bento-bg-img {
    width: 100%;
    height: 100%;
    object-position: center;
    transition: var(--transition-slow);
}

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

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(37, 41, 23, 0.2) 0%, rgba(37, 41, 23, 0.5) 50%, rgba(37, 41, 23, 0.9) 100%);
    transition: var(--transition-normal);
}

.bento-card:hover .bento-overlay {
    background: linear-gradient(180deg, rgba(41, 99, 27, 0.25) 0%, rgba(41, 99, 27, 0.6) 55%, rgba(26, 48, 21, 0.95) 100%);
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.bento-content h3 {
    color: var(--color-white);
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.bento-content h4 {
    color: var(--color-brand-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.bento-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    line-height: 1.4;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--transition-normal) ease, opacity var(--transition-normal) ease;
}

.bento-card:hover .bento-content p {
    max-height: 80px;
    opacity: 1;
    margin-bottom: 20px;
}

.bento-btn {
    align-self: flex-start;
    color: var(--color-brand-light);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 2px;
}

.bento-btn::after {
    content: '';
    transition: var(--transition-fast);
}

.bento-card:hover .bento-btn {
    color: var(--color-white);
}

.bento-card:hover .bento-btn::after {
    padding-left: 5px;
}

/* Bento Grid Spans */
.bento-card-large {
    grid-column: span 2;
}

.bento-card-tall {
    grid-row: span 2;
}

/* Specific item configuration to balance showroom */
.bento-item-1 { grid-column: span 2; }
.bento-item-2 { grid-column: span 1; grid-row: span 2; }
.bento-item-3 { grid-column: span 1; }
.bento-item-5 { grid-column: span 1; }
.bento-item-6 { grid-column: span 2; }
.bento-item-4 { grid-column: span 1; grid-row: span 2; }

/* ==========================================
   5. SEÇÃO ESPECIAL DE GRAMAS COLORIDAS (VISUAL CRIATIVO)
   ========================================== */
.section-colored {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F8 50%, #FFF8F3 100%);
    position: relative;
    overflow: hidden;
}

.spot-magenta {
    top: 10%;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(214, 51, 132, 0.16) 0%, transparent 70%);
}

.spot-orange {
    bottom: 10%;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(253, 126, 20, 0.16) 0%, transparent 70%);
}

.shape-colored {
    top: 8%;
    right: 6%;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(rgba(214, 51, 132, 0.25) 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    opacity: 0.85;
}

.colored-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.color-show-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-normal);
}

.color-show-card.magenta {
    border-top: 4px solid var(--color-magenta);
    box-shadow: 0 10px 30px rgba(214, 51, 132, 0.04);
}
.color-show-card.magenta:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(214, 51, 132, 0.12);
}

.color-show-card.orange {
    border-top: 4px solid var(--color-orange);
    box-shadow: 0 10px 30px rgba(253, 126, 20, 0.04);
}
.color-show-card.orange:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(253, 126, 20, 0.12);
}

.color-show-card.green {
    border-top: 4px solid var(--color-brand);
    box-shadow: 0 10px 30px rgba(41, 99, 27, 0.04);
}
.color-show-card.green:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(41, 99, 27, 0.12);
}

.color-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.color-card-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.color-card-img-wrapper img {
    width: 100%;
    height: 100%;
    transition: var(--transition-slow);
}

.color-show-card:hover .color-card-img-wrapper img {
    transform: scale(1.06);
}

.color-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.color-card-body h3 {
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.color-card-body h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.color-show-card.magenta h4 { color: var(--color-magenta); }
.color-show-card.orange h4 { color: var(--color-orange); }
.color-show-card.green h4 { color: var(--color-brand); }

.color-card-body p {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.color-card-body .btn {
    align-self: flex-start;
    width: 100%;
}


/* proposal showroom */
.colored-proposal-showroom {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border-left: 6px solid var(--color-magenta);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow-soft);
}

.proposal-text h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.proposal-text p {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
}

.section-comparison {
    background-color: var(--color-comparison-bg);
}

.comparison-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.comparison-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid transparent;
    transition: var(--transition-normal);
}

.natural-card {
    background-color: #FFF9F9;
    border-color: rgba(229, 62, 62, 0.12);
}

.natural-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(229, 62, 62, 0.05);
}

.synthetic-card {
    background-color: #F5FCF6;
    border-color: rgba(25, 146, 14, 0.15);
    box-shadow: 0 15px 35px rgba(25, 146, 14, 0.04);
}

.synthetic-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(25, 146, 14, 0.1);
    border-color: var(--color-brand);
}

.card-title-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.card-title-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0;
}

.sub-alert {
    font-size: 0.75rem;
    font-weight: 700;
    color: #C53030;
    background-color: #FFF5F5;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.sub-success {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-brand-dark);
    background-color: var(--color-brand-light);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.comp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.comp-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-size: 0.95rem;
}

.comp-list li span {
    color: var(--color-text-secondary);
}

.comp-list li strong {
    color: var(--color-text-main);
}

.icon-cross {
    color: #E53E3E;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.icon-check {
    color: var(--color-cta);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

/* ==========================================
   7. COMO FUNCIONA O ORÇAMENTO
   ========================================== */
.budget-steps-section {
    background-color: var(--color-steps-bg);
    background-image: 
        linear-gradient(to right, rgba(41, 99, 27, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(41, 99, 27, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
}

.steps-flow-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 5;
}

.step-flow-card {
    background-color: var(--color-white);
    padding: 45px 35px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(41, 99, 27, 0.05);
    position: relative;
    transition: var(--transition-normal);
    z-index: 10;
}

.step-flow-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(41, 99, 27, 0.08);
    border-color: rgba(41, 99, 27, 0.12);
}

/* Linha de conexão entre os passos (Desktop) */
@media (min-width: 769px) {
    .step-flow-card:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -30px;
        transform: translateY(-50%);
        width: 30px;
        height: 2px;
        border-top: 2px dashed rgba(41, 99, 27, 0.2);
        z-index: 1;
    }
}

.step-number {
    font-family: var(--font-headings);
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-cta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 12px;
}

.step-flow-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-flow-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* ==========================================
   8. SOBRE A QUANTA GRAMA (EDITORIAL)
   ========================================== */
.section-about-editorial {
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.shape-about {
    top: 5%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(41, 99, 27, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.about-showroom-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.about-main-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-brand);
    line-height: 1.5;
    margin-bottom: 16px;
}

.about-sec-text {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 35px;
}

.about-features-showroom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-feat-item {
    background-color: var(--color-white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(41, 99, 27, 0.05);
    transition: var(--transition-normal);
}

.about-feat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(41, 99, 27, 0.06);
    border-color: rgba(41, 99, 27, 0.1);
}

.about-feat-item h3 {
    font-size: 1.05rem;
    color: var(--color-brand);
    margin-bottom: 6px;
}

.about-feat-item p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.about-media-showroom {
    position: relative;
    z-index: 5;
}

.about-media-showroom::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background-color: var(--color-brand-light);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
}

.showroom-media-wrapper {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    aspect-ratio: 4 / 5;
    border: 4px solid var(--color-white);
    position: relative;
    z-index: 10;
}

.about-showroom-img {
    width: 100%;
    height: 100%;
}

.section-types-interactive {
    background-color: var(--color-types-bg);
    position: relative;
    overflow: hidden;
}

.shape-types {
    top: -10%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(41, 99, 27, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.showroom-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.tab-nav-btn {
    padding: 12px 24px;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.tab-nav-btn:hover {
    border-color: var(--color-brand);
    color: var(--color-brand);
    transform: translateY(-2px);
}

#tab-btn-esportiva.active {
    background-color: var(--color-brand-dark);
    color: var(--color-white);
    border-color: var(--color-brand-dark);
    box-shadow: 0 6px 15px rgba(40, 88, 29, 0.25);
}

#tab-btn-jardim.active {
    background-color: var(--color-cta);
    color: var(--color-white);
    border-color: var(--color-cta);
    box-shadow: 0 6px 15px rgba(25, 146, 14, 0.25);
}

#tab-btn-colorida.active {
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-orange) 100%);
    color: var(--color-white);
    border-color: var(--color-magenta);
    box-shadow: 0 6px 15px rgba(214, 51, 132, 0.25);
}

#tab-btn-academia.active {
    background-color: var(--color-text-secondary);
    color: var(--color-white);
    border-color: var(--color-text-secondary);
    box-shadow: 0 6px 15px rgba(95, 101, 85, 0.25);
}

.showroom-tabs-content {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    padding: 50px;
    border: 1px solid rgba(0,0,0,0.01);
}

.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity var(--transition-normal) ease;
    position: relative;
    overflow: hidden;
}

.tab-pane.active {
    display: block;
    opacity: 1;
}

.tab-pane-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Silhuetas Geométricas de Linhas de Quadra (Sports/Fitness) */
.sports-line {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* Quadra de Futebol / Esportiva (Aba Esportiva) */
.field-circle {
    bottom: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    border: 2px solid rgba(41, 99, 27, 0.08);
    border-radius: 50%;
}

.field-circle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -40px;
    right: -40px;
    height: 2px;
    background-color: rgba(41, 99, 27, 0.08);
    transform: translateY(-50%) rotate(-45deg);
}

.field-corner {
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-right: 2px solid rgba(41, 99, 27, 0.08);
    border-bottom: 2px solid rgba(41, 99, 27, 0.08);
    border-bottom-right-radius: 100%;
}

/* Pista Funcional / CrossFit (Aba Academia) */
.field-line-left {
    left: 15px;
    top: 0;
    bottom: 0;
    width: 30px;
    border-right: 2px solid rgba(95, 101, 85, 0.08);
    background-image: linear-gradient(to bottom, rgba(95, 101, 85, 0.08) 2px, transparent 2px);
    background-size: 100% 40px;
}

.field-line-right {
    right: 15px;
    top: 0;
    bottom: 0;
    width: 30px;
    border-left: 2px solid rgba(95, 101, 85, 0.08);
    background-image: linear-gradient(to bottom, rgba(95, 101, 85, 0.08) 2px, transparent 2px);
    background-size: 100% 40px;
}

.tab-img-side {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-soft);
}

.tab-pane-img {
    width: 100%;
    height: 100%;
}

.tab-content-side h3 {
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.tab-content-side h4 {
    color: var(--color-brand);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.tab-content-side p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.tab-specs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

.tab-specs-list li {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    position: relative;
    padding-left: 18px;
}

.tab-specs-list li::before {
    content: 'â– ';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-brand);
    font-size: 0.75rem;
}

.section-gallery-portfolio {
    background-color: var(--color-gallery-bg);
    position: relative;
    z-index: 5;
}

.gallery-filters-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.filter-btn {
    padding: 10px 22px;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.filter-btn:hover {
    background-color: var(--color-brand-light);
    color: var(--color-brand);
    border-color: rgba(41, 99, 27, 0.2);
    transform: translateY(-1px);
}

.filter-btn.active {
    background-color: var(--color-brand);
    color: var(--color-white);
    border-color: var(--color-brand);
    box-shadow: 0 4px 12px rgba(41, 99, 27, 0.2);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: transform var(--transition-normal) ease, opacity var(--transition-normal) ease;
}

.portfolio-item.hidden {
    display: none;
    opacity: 0;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    transition: var(--transition-slow);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(26, 48, 21, 0.9) 0%, rgba(41, 99, 27, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.zoom-btn {
    font-size: 1.25rem;
    color: var(--color-white);
    align-self: flex-start;
    margin-bottom: auto;
    background-color: rgba(255, 255, 255, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.portfolio-caption {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-white);
    transform: translateY(12px);
    transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-caption {
    transform: translateY(0);
}

/* ==========================================
   11. DEPOIMENTOS DE CLIENTES (CARDS MODERNOS)
   ========================================== */
#depoimentos {
    background-color: var(--color-testimonials-bg);
    position: relative;
}

.showroom-feedbacks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 5;
}

.showroom-feedback-card {
    background-color: var(--color-white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(41, 99, 27, 0.02);
    border: 1px solid rgba(41, 99, 27, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}


.showroom-feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(41, 99, 27, 0.08);
    border-color: rgba(41, 99, 27, 0.15);
}

.feedback-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.stars-list {
    display: flex;
    gap: 4px;
}

.g-review-logo {
    width: 28px;
    height: 28px;
}

.fb-text {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--color-text-main);
    line-height: 1.6;
    margin-bottom: 24px;
}

.fb-author-showroom h3 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.fb-author-showroom span {
    font-size: 0.72rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.section-faq-modern {
    background-color: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.shape-faq {
    top: -5%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(41, 99, 27, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-container-showroom {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border-color: rgba(41, 99, 27, 0.1);
}

.faq-header-btn {
    width: 100%;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 600;
}

.faq-icon-toggle {
    color: var(--color-brand);
    transition: var(--transition-normal);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease;
}

.faq-body-content {
    padding: 0 30px 22px 30px;
    color: var(--color-text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* FAQ Active Styles */
.faq-item.active {
    box-shadow: 0 12px 30px rgba(41, 99, 27, 0.06);
    border-color: rgba(41, 99, 27, 0.2);
}

.faq-item.active .faq-icon-toggle {
    transform: rotate(180deg);
    color: var(--color-cta);
}

/* ==========================================
   13. SEÇÃO CTA FINAL (PREMIUM ESCURO)
   ========================================== */
.section-final-cta {
    background: linear-gradient(135deg, #152A11 0%, #28581D 100%);
    color: var(--color-white);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.spot-cta {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(25, 146, 14, 0.22) 0%, transparent 70%);
    z-index: 1;
}

.shape-cta {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.85;
    z-index: 2;
}

.final-cta-showroom-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.final-cta-showroom-wrapper h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.final-cta-showroom-wrapper p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Animação pulsante no botão do CTA final */
.section-final-cta .btn-primary {
    animation: final-cta-pulse 2s infinite ease-in-out;
}

@keyframes final-cta-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(25, 146, 14, 0.6);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(25, 146, 14, 0);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(25, 146, 14, 0);
        transform: scale(1);
    }
}

/* ==========================================
   14. CONTATO E LOCALIZAÇÃO (LADO A LADO)
   ========================================== */
.section-contact-location {
    background-color: var(--color-contact-bg);
    position: relative;
}

.contact-location-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.showroom-contact-card h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.subtitle-card {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 35px;
}

.details-box {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(41, 99, 27, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.details-box h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.details-box h4 {
    color: var(--color-brand);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.details-box p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.contact-buttons-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.showroom-map-wrapper {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 6px solid var(--color-white);
    height: 420px;
    transition: var(--transition-normal);
}

.showroom-map-wrapper:hover {
    box-shadow: 0 15px 35px rgba(41, 99, 27, 0.08);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================
   15. RODAPÉ SHOWROOM E BOTÃO FLUTUANTE
   ========================================== */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-white);
    padding: 90px 0 40px 0;
    border-top: 4px solid var(--color-brand);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand h3 {
    color: var(--color-white);
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 320px;
}

.footer-links-title {
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-brand-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

.footer-link-item a:hover {
    color: var(--color-brand-light);
    padding-left: 4px;
}

.footer-contact-details {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-contact-details strong {
    color: var(--color-white);
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.footer-social-btn:hover {
    background-color: var(--color-brand);
}

.footer-social-btn .icon-svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    padding-top: 30px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p:first-child {
    margin-bottom: 6px;
}

/* Botão Flutuante do WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    background-color: #128C7E !important;
    transform: scale(1.08);
}

/* ==========================================
   ANIMAÇÃ•ES E KEYFRAMES
   ========================================== */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Classes para Scroll Reveal Nativos */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   ÃCONES SVG AUXILIARES
   ========================================== */
.icon-svg {
    display: inline-block;
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    vertical-align: middle;
    transition: var(--transition-fast);
}

.icon-svg.icon-filled {
    fill: currentColor;
    stroke: none;
}

.btn .icon-svg {
    width: 18px;
    height: 18px;
}

/* ==========================================
   RESPONSIVIDADE E MEDIA QUERIES
   ========================================== */

/* Telas Grandes / Notebooks Médios */
@media (max-width: 1200px) {
    h2 { font-size: 2.25rem; }
    h1 { font-size: 3rem; }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 230px;
    }
    .bento-card-large { grid-column: span 2; }
    .bento-card-tall { grid-row: span 2; }

    /* Reajuste de spans Bento para 2 colunas */
    .bento-item-1 { grid-column: span 2; }
    .bento-item-2 { grid-column: span 1; grid-row: span 2; }
    .bento-item-3 { grid-column: span 1; }
    .bento-item-5 { grid-column: span 1; }
    .bento-item-6 { grid-column: span 2; }
    .bento-item-4 { grid-column: span 1; grid-row: span 2; }

    .colored-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .showroom-feedbacks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .authority-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets (Médio e Horizontal) */
@media (max-width: 992px) {
    .section { padding: 80px 0; }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-image-editorial {
        max-width: 550px;
        margin: 0 auto;
    }
    .floating-cards-grid {
        bottom: -30px;
        left: 20px;
        width: 90%;
    }

    .about-showroom-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-media-showroom {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .tab-pane-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .tab-img-side {
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }

    .contact-location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .showroom-map-wrapper {
        height: 350px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .authority-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Celulares / Tablets Mobile */
@media (max-width: 768px) {
    /* Menu Mobile */
    .menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 25px;
        transition: var(--transition-normal);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions .btn-sm span {
        display: none; /* Deixar apenas ícone no mobile do header */
    }
    .nav-actions .btn-sm {
        padding: 10px;
        border-radius: 50%;
    }

    .hero-showroom {
        padding: 120px 0 70px 0;
    }
    .hero-content-editorial h1 {
        font-size: 2.75rem;
    }

    .authority-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Conexão de passos na vertical (Mobile) */
    .step-flow-card:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: -24px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 24px;
        border-left: 2px dashed rgba(41, 99, 27, 0.2);
        border-top: none;
        z-index: 1;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .bento-card-large, .bento-card-tall, .bento-item-1, .bento-item-2, .bento-item-3, .bento-item-4, .bento-item-5, .bento-item-6 {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 4 / 3;
    }

    .bento-content p {
        max-height: none;
        opacity: 1;
        display: block;
        margin-bottom: 12px;
    }
    .bento-card:hover .bento-bg-img {
        transform: none;
    }

    .comparison-cards-wrapper {
        grid-template-columns: 1fr;
    }

    .steps-flow-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .showroom-tabs-content {
        padding: 30px;
    }

    .colored-showcase-grid {
        grid-template-columns: 1fr;
    }

    .colored-proposal-showroom {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

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

    .showroom-feedbacks-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    
    .hero-content-editorial h1 {
        font-size: 2.25rem;
    }
    
    .floating-cards-grid {
        position: static;
        width: 100%;
        max-width: none;
        margin-top: 30px;
    }

    .hero-actions-showroom {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions-showroom .btn {
        width: 100%;
    }
    .authority-wrapper {
        grid-template-columns: 1fr;
    }
}
