/* ==========================================================================
   Espaço Lumon - Kitring Inspired Design System
   ========================================================================== */

:root {
    /* Core Colors - DARK THEME */
    --primary-bg: #0D0D0D;      /* Deep black from palette */
    --secondary-bg: #1a1a1a;    /* Keep slightly lighter for cards */
    --primary-text: #F2F2F2;    /* Off-white from palette */
    --secondary-text: #dfdfdf;  /* Muted text */
    --accent-color: #A6710F;    /* Deep Gold from palette */
    --accent-light: #D9B448;    /* Lighter Gold from palette */
    --accent-lighter: #F2E18D;  /* Pale Gold from palette */
    --border-color: #333333;
    
    /* Typography */
    --font-heading: 'Abhaya Libre', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Cherish', cursive;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-text);
    background-color: var(--primary-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-text);
    font-weight: 600;
    line-height: 1.2;
}

h2, .section-title {
    font-size: 48px;
    margin-bottom: 20px;
}

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

ul {
    list-style: none;
}

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

/* Typography Utilities */
.text-center { text-align: center; }
.text-white { color: #ffffff !important; }
.text-white h1, .text-white h2, .text-white h3 { color: #ffffff; }
.bg-light { background-color: #1a1a1a; }
.bg-secondary { background-color: #0b0b0b; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; }

/* ==========================================================================
   Layout System
   ========================================================================== */

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.section {
    padding: 100px 0;
    position: relative;
}

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

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

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

/* ==========================================================================
   UI Elements
   ========================================================================== */

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color); /* #a6710f */
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #6b490a; /* Darker shade of #a6710f */
    color: #ffffff; /* Keep text white for contrast */
    border-color: #6b490a;
}

.btn-outline {
    border-color: var(--primary-text);
    color: var(--primary-text);
}

.btn-outline:hover {
    background-color: var(--primary-text);
    color: var(--primary-bg);
}

.text-white .btn-outline {
    border-color: #ffffff;
    color: #ffffff;
}

.text-white .btn-outline:hover {
    background-color: #ffffff;
    color: var(--secondary-bg);
}

.btn-large {
    padding: 20px 60px;
    font-size: 15px;
    font-weight: 600;
}

.btn i {
    margin-right: 8px;
    font-size: 18px;
}

/* Links */
.link-action {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-text);
    font-weight: 600;
    position: relative;
}

.link-action:hover {
    color: var(--accent-color);
}

/* Accent Typography */
.accent-text {
    font-family: 'Karla', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
}

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

/* Dividers */
.divider {
    height: 1px;
    width: 60px;
    background-color: var(--primary-text);
    margin: 0 auto;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
   


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 15px 0;
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

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

.logo {
    
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-list a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-text);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center; /* keep vertical center, but content will align left */
    position: relative;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../modelo-cabelo-espaco-lumon.webp');
    background-size: cover;
    background-position: center;
    z-index: 0; /* Base layer */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1; /* Overlay above bg */
}

.hero-content {
    max-width: 800px;
    text-align: left;
    margin: 0;         /* override auto margin */
    padding-left: 5%;  /* aligns with container edge */
    position: relative; /* Ensure content stays above */
    z-index: 2; /* Content topmost */
}

/* Specific styling for the reference image look */
.hero .headline {
    font-size: 50px; /* Reduced from 64px based on request */
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0px; /* Reset letter spacing for non-uppercase */
    margin-bottom: 15px; /* Reduced margin */
}

.hero .subheadline {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 50px;
    max-width: 600px;
    color: #e0e0e0;
}

.hero-cta {
    display: flex;
    flex-direction: column; /* changed back to column for button + microcopy */
    align-items: flex-start; /* align to the left */
    gap: 15px;
}

.hero .btn-primary {
    background-color: var(--accent-color); /* #a6710f */
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 20px 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero .btn-primary i {
    font-size: 11px;
    margin-right: 12px;
}

.hero .btn-primary:hover {
    background-color: #6b490a; /* Ensure the darker shade applies here too */
    color: #ffffff;
    border-color: #6b490a;
}

/* Vertical text on the right */
.hero-vertical-text {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 6px;
    color: #ffffff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-vertical-text::before,
.hero-vertical-text::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: rgba(255,255,255,0.3);
}

.micro-copy {
    font-size: 13px;
    color: var(--secondary-text);
    font-weight: 500;
    margin-top: 10px; /* Slight space below button */
}

/* ==========================================================================
   Brands Section (Marquee)
   ========================================================================== */

.brands-section {
    padding: 80px 0;
    background-color: var(--primary-bg);
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-bg) 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-bg) 0%, transparent 100%);
}

.marquee {
    display: flex;
    align-items: center;
    width: fit-content;
    animation: marquee-scroll 30s linear infinite;
}

.marquee .brand-text {
    font-family: var(--font-heading);
    font-size: 32px;
    font-style: italic;
    color: var(--secondary-text);
    margin: 0 40px;
    transition: var(--transition);
    white-space: nowrap;
}

.marquee .brand-text:hover {
    color: var(--accent-color);
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50%)); } /* Shifts exactly half the width to loop */
}

/* ==========================================================================
   Metrics Section
   ========================================================================== */

.metrics-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

.metric-box {
    padding: 20px;
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 60px;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-text);
}

/* ==========================================================================
   Solution Section
   ========================================================================== */

.solution-section .section-header {
    margin-bottom: 80px;
}

.solution-section .section-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.solution-section .section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

.card {
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    background-color: var(--secondary-bg);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: var(--accent-color);
}

.card-num {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--border-color);
    line-height: 1;
    margin-bottom: 20px;
    transition: var(--transition);
}

.card:hover .card-num {
    color: var(--accent-color);
}

.card-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.card-text {
    margin-bottom: 25px;
}

.card-benefit {
    font-size: 14px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.card-benefit strong {
    color: var(--primary-text);
}

.value-proposition {
    font-family: var(--font-heading);
    font-size: 28px;
    font-style: italic;
    color: var(--primary-text);
    max-width: 800px;
    margin: 0 auto;
    margin-top: 65px;
    margin-bottom: 20px;
    line-height: 1.1;
}

/* ==========================================================================
   Google Reviews Carousel
   ========================================================================== */

.testimonial-section {
    padding: 100px 0;
    background-color: var(--secondary-bg);
}

/* ==========================================================================
   Instagram Video Results Section
   ========================================================================== */

.video-results-section {
    padding: 100px 0;
}

.instagram-grid {
    margin-top: 50px;
    align-items: flex-start;
}

.ig-embed-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.ig-embed-wrapper iframe {
    /* Override Instagram's forced local styling to fit grid better */
    max-width: 100% !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-image {
    position: relative;
}

.about-image img {
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.img-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--accent-color);
    color: #ffffff;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1.2;
    padding: 20px;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.about-section .section-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.pillars {
    margin: 30px 0;
}

.pillars li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.pillars li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.accent-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 22px;
    color: var(--primary-text);
    border-left: 2px solid var(--accent-color);
    padding-left: 20px;
    margin: 30px 0;
}

.urgency-box {
    background-color: var(--secondary-bg);
    padding: 20px;
    border: 1px solid var(--border-color);
}

.urgency-box p {
    margin-bottom: 15px;
    font-size: 14px;
}

/* ==========================================================================
   Space Section
   ========================================================================== */

.space-section .section-title {
    font-size: 48px;
    margin-bottom: 60px;
}

.space-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
	margin-top: 50px;
}

.space-gallery img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: grayscale(20%);
    border-radius: 8px;
    transition: var(--transition);
}

.space-gallery img:hover {
    filter: grayscale(0%);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* ==========================================================================
   Procedures Section
   ========================================================================== */

.procedures-section {
    padding: 120px 0;
    position: relative;
    background-image: url('../fundo-mulher-cacheada.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    z-index: 1;
}

.procedures-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.85); /* Dark overlay */
    z-index: -1;
}

.procedures-section .section-header {
    margin-bottom: 60px;
}

.procedures-section .section-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.procedures-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.proc-item {
    background: rgba(30, 30, 30, 0.4); /* Glassmorphism base */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle white border */
    border-radius: 12px;
    padding: 40px;
    transition: var(--transition);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.proc-item:hover {
    background: rgba(40, 40, 40, 0.5);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.proc-badge {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.proc-item h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.proc-desc {
    margin-bottom: 20px;
    font-size: 16px;
}

.proc-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.proc-meta span strong {
    color: var(--primary-text);
}

.proc-sublist {
    margin-top: 15px;
}

.proc-sublist li {
    margin-bottom: 8px;
    font-size: 15px;
    padding-left: 20px;
    position: relative;
}

.proc-sublist li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-background {
	background-color: #A6710F;
}

.faq-section {
    padding: 100px 0;
}

.faq-header .section-title {
    font-size: 42px;
    margin-bottom: 20px;
	color: #000000;
}

.faq-item {
    border-bottom: none;
	color: #000000;
}

.faq-item:first-child {
    border-top: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 25px 0;
    font-family: var(--font-heading);
	font-weight: 800;
    font-size: 22px;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: #000000;
}

.faq-question i {
    font-size: 16px;
    transition: transform 0.3s ease;
	color: #000000;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 25px;
    padding-right: 40px;
	color: #000000;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    padding: 120px 0;
    background-color: var(--primary-bg);
}

.cta-section .section-title {
    font-size: 56px;
    margin-bottom: 30px;
}

.cta-steps {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background: var(--secondary-bg);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.steps-list {
    margin-top: 20px;
    padding-left: 20px;
}

.steps-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    padding: 80px 0 20px;
}

.grid-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 15px;
    display: inline-block;
	align: center;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #888;
}

/* ==========================================================================
   texto embaixo de logo no rodapé
   ========================================================================== */
.slogan{
	font-size: 14px;
	font-style: italic;
	color: #A6710F;
}

/* ==========================================================================
   scrool to To - clique para subir
   ========================================================================== */
   /* 1. O contêiner do seu rodapé (ex: a tag <footer> ou classe da seção) precisa ter isso: */
footer {
    position: relative;
}

/* 2. O seu código atualizado: */
.scroll-to-top {
    position: absolute; /* Prende o botão dentro do rodapé */
    bottom: 30px;
    right: 30px; 
    background-color: #000; 
    color: #eaeaea; 
    padding: 12px 16px;
    border-radius: 8px; 
    text-decoration: none;
    z-index: 10; /* Pode ser menor agora, pois só precisa sobrepor os elementos do próprio rodapé */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
}

.scroll-to-top:hover {
    background-color: #111; 
}

/* ==========================================================================
   whatsapp flutuante
   ========================================================================== */
.whatsapp-flutuante {
  position: fixed;
  bottom: 125px;
  right: 25px;
  background-color: #25D366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  animation: pulsar 2s infinite;
  text-decoration: none;
}

@keyframes pulsar {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   Animations
   ========================================================================== */

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 992px) {
.grid-2, .grid-3, .grid-footer, .procedures-list {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .proc-item {
        padding: 30px 20px; /* Reduz um pouco o padding interno no celular */
    }
	
    .hero .headline { font-size: 46px; }
    .hero { min-height: 600px; }
    
    .hero-vertical-text { display: none; }
    
    .about-image { order: -1; }
    .img-badge {
        width: 100px;
        height: 100px;
        font-size: 16px;
        bottom: -15px;
        right: -15px;
    }
}

@media (max-width: 768px) {
    .d-none-mobile { display: none; }
    .mobile-toggle { display: block; }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-bg);
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
        display: none;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .section { padding: 60px 0; }
    
    .hero .headline { font-size: 38px; }
    .problem-section .section-title,
    .solution-section .section-title,
    .about-section .section-title,
    .procedures-section .section-title,
    .cta-section .section-title {
        font-size: 32px;
    }
	.procedures-list {
        padding: 0 10px; /* Dá uma folga extra nas laterais */
    }
    
    .proc-item h3 {
        font-size: 26px; /* Diminui um pouco o título para não quebrar tantas linhas */
    }
}
}
/* --- CORREÇÃO MOBILE DEFINITIVA --- */

/* 1. Impede o scroll horizontal em todo o site */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 992px) {
    /* 2. Força os serviços a ficarem um abaixo do outro */
    .procedures-list {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 20px !important;
        padding: 0 20px !important;
    }

    .proc-item {
        width: 100% !important;
        margin-bottom: 10px;
    }

    /* 3. Ajusta outras grelhas que podem estar a vazar */
    .grid-3, .instagram-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    /* 4. Corrige o selo "7 anos" que está a empurrar o site para a direita */
    .img-badge {
        right: 0 !important;
        bottom: -20px !important;
        width: 120px !important;
        height: 120px !important;
        font-size: 18px !important;
    }
}