/* ===== VARIABLES ===== */
:root {
    --bg-odd: #0A0A0C;
    --bg-even: #0F0D0A;
    --bg-card: #111114;
    --bg-card-alt: #141418;
    
    --gold: #C9A84C;
    --text-cream: #F0EAD6;
    --text-muted: #8A8478;
    --text-subtle: #6A6860;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    --padding-section: 100px 6%;
}

/* ===== RESET & GLOBAL RULES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-odd);
    color: var(--text-cream);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Scroll Fade Animation Class */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Noise overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)"/%3E%3C/svg%3E');
}

/* Background Alternating Global Marble Classes */
.bg-odd {
    background-color: var(--bg-odd);
    background-image:
      repeating-linear-gradient(
        105deg,
        transparent 0px,
        transparent 40px,
        rgba(201,168,76,0.15) 40px,
        rgba(201,168,76,0.15) 41px,
        transparent 41px,
        transparent 80px
      ),
      repeating-linear-gradient(
        15deg,
        transparent 0px,
        transparent 60px,
        rgba(201,168,76,0.10) 60px,
        rgba(201,168,76,0.10) 62px,
        transparent 62px,
        transparent 120px
      ),
      repeating-linear-gradient(
        55deg,
        transparent 0px,
        transparent 30px,
        rgba(180,130,40,0.08) 30px,
        rgba(180,130,40,0.08) 31px,
        transparent 31px,
        transparent 90px
      );
}

.bg-even {
    background-color: var(--bg-even);
    background-image:
      repeating-linear-gradient(
        105deg,
        transparent 0px,
        transparent 40px,
        rgba(201,168,76,0.15) 40px,
        rgba(201,168,76,0.15) 41px,
        transparent 41px,
        transparent 80px
      ),
      repeating-linear-gradient(
        15deg,
        transparent 0px,
        transparent 60px,
        rgba(201,168,76,0.10) 60px,
        rgba(201,168,76,0.10) 62px,
        transparent 62px,
        transparent 120px
      ),
      repeating-linear-gradient(
        55deg,
        transparent 0px,
        transparent 30px,
        rgba(180,130,40,0.08) 30px,
        rgba(180,130,40,0.08) 31px,
        transparent 31px,
        transparent 90px
      );
}

/* ===== TYPOGRAPHY ===== */
.section-tag {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-h2 {
    font-family: var(--font-heading);
    font-size: 56px;
    color: var(--text-cream);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 400;
}

.gold-italic {
    color: var(--gold);
    font-style: italic;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-nav {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 24px;
    font-size: 11px;
}
.btn-nav:hover {
    background: var(--gold);
    color: var(--bg-odd);
}

.btn-gold-fill {
    background: linear-gradient(135deg, #E2C167, #C9A84C);
    color: var(--bg-odd);
    border: 1px solid var(--gold);
    font-weight: 600;
}
.btn-gold-fill:hover {
    box-shadow: 0 0 20px rgba(201,168,76,0.3);
}

.btn-outline {
    border: 1px solid rgba(240,234,214,0.3);
    color: var(--text-cream);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* WhatsApp Divider Buttons */
.wa-divider {
    text-align: center;
    padding: 30px 0;
    position: relative;
    z-index: 10;
}
.btn-wa {
    background: var(--gold);
    color: #0A0A0C;
    font-weight: 700;
    padding: 14px 32px;
    font-size: 13px;
    font-family: var(--font-body);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}
.btn-wa:hover {
    filter: brightness(110%);
    box-shadow: 0 0 20px rgba(201,168,76,0.5);
    color: #0A0A0C; 
}


/* ===== SECTION 1: STICKY NAV ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 68px;
    background: rgba(10,10,12,0.97);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

.nav-container {
    width: 100%;
    padding: 0 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}
.logo-img {
    max-height: 48px;
    object-fit: contain;
    mix-blend-mode: screen;
}

.nav-links {
    display: flex;
    gap: 40px;
}
.nav-links a {
    color: #B8B0A0; /* As requested explicitly */
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.nav-links a:hover {
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--gold);
}


/* ===== SECTION 2: HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--padding-section);
    overflow: hidden;
}

/* Extra intense marble styling + Photographic layer for Hero */
.hero-marble {
    background-color: #1A0F05 !important;
    background-image:
      /* Strong Vignette */
      radial-gradient(circle at center, transparent 30%, rgba(10,10,12,0.95) 100%),
      /* Central Strong Glow */
      radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.15) 0%, transparent 70%),
      /* Pronounced Veins (2.5x opacity) */
      repeating-linear-gradient(105deg, transparent 0px, transparent 40px, rgba(201,168,76,0.375) 40px, rgba(201,168,76,0.375) 41px, transparent 41px, transparent 80px),
      repeating-linear-gradient(15deg, transparent 0px, transparent 60px, rgba(201,168,76,0.25) 60px, rgba(201,168,76,0.25) 62px, transparent 62px, transparent 120px),
      repeating-linear-gradient(55deg, transparent 0px, transparent 30px, rgba(180,130,40,0.20) 30px, rgba(180,130,40,0.20) 31px, transparent 31px, transparent 90px),
      /* Dark Gold Overlay to tint the raw photo */
      linear-gradient(rgba(26,15,5,0.7), rgba(10,10,12,0.9)),
      /* Real Photographic Background Image */
      url('https://images.unsplash.com/photo-1544025162-83151fa22bb0?auto=format&fit=crop&w=1920&q=80') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed;
}

.contact-marble {
    background-color: var(--bg-odd);
    background-image:
      radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.09) 0%, transparent 70%),
      repeating-linear-gradient(105deg, transparent 0px, transparent 40px, rgba(201,168,76,0.15) 40px, rgba(201,168,76,0.15) 41px, transparent 41px, transparent 80px),
      repeating-linear-gradient(15deg, transparent 0px, transparent 60px, rgba(201,168,76,0.10) 60px, rgba(201,168,76,0.10) 62px, transparent 62px, transparent 120px),
      repeating-linear-gradient(55deg, transparent 0px, transparent 30px, rgba(180,130,40,0.08) 30px, rgba(180,130,40,0.08) 31px, transparent 31px, transparent 90px) !important;
}

.contact-radial-glow, .hero-radial-glow {
    display: none; /* Now baked into the backgrounds */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-logo-large {
    max-width: 380px;
    width: 100%;
    object-fit: contain;
    mix-blend-mode: screen;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-badge {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 16px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 80px;
    color: var(--text-cream);
    line-height: 1.1;
    margin-bottom: 16px;
    font-weight: 300;
}
.hero-title-italic {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 44px;
    color: #C8BFA8;
    font-weight: 300;
    margin-bottom: 32px;
}

.hero-desc {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
}


/* ===== SECTION 3: STATS BAND ===== */
.stats-band {
    border-top: 1px solid rgba(201,168,76,0.12);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    padding: 44px 6%;
}

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

.stat-box {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(201,168,76,0.2);
}
.stat-box:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 44px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 10px;
    color: var(--text-subtle);
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* ===== SECTION 4: ABOUT / AUTHORITY ===== */
.about {
    padding: var(--padding-section);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-visual {
    position: relative;
    aspect-ratio: 1;
    border: 1px solid var(--gold);
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.25);
}

.visual-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    z-index: 2;
}
.badge-grade {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--gold);
    line-height: 1;
}
.badge-text {
    font-size: 10px;
    color: var(--text-subtle);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-desc p {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 1.7;
}

.pillar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.pillar-card {
    background: rgba(0,0,0,0.3);
    border-left: 3px solid var(--gold);
    padding: 20px;
}
.pillar-title {
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.pillar-desc {
    color: #7A7470;
    font-size: 12px;
    line-height: 1.5;
}


/* ===== SECTION 5: CATALOG ===== */
.catalog {
    padding: var(--padding-section);
    position: relative;
}

.catalog-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.catalog-desc {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.catalog-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.catalog-card {
    background: var(--bg-card);
    border: 1px solid rgba(201,168,76,0.1);
    padding: 36px 30px;
    position: relative;
    transition: all 0.4s ease;
}
.catalog-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.catalog-card:hover {
    background: #141418;
}
.catalog-card:hover::before {
    transform: scaleX(1);
}

.catalog-card-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 16px;
}

.catalog-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: #C8BFA8;
    font-size: 14px;
}
.gold-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}


/* ===== SECTION 6: WHY CHOOSE US ===== */
.why-us {
    padding: var(--padding-section);
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-card {
    background: rgba(201,168,76,0.025);
    border: 1px solid rgba(201,168,76,0.1); /* Gold subtle */
    padding: 32px 26px;
    position: relative;
    transition: transform 0.4s ease;
}
.why-card:hover {
    transform: translateY(-8px);
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 60px;
    color: rgba(201,168,76,0.07);
    line-height: 1;
    pointer-events: none;
}

.why-line {
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 20px;
}

.why-title {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-cream);
    margin-bottom: 12px;
}

.why-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ===== SECTION 7: PRODUCT EXPERIENCE ===== */
.experience {
    padding: var(--padding-section);
}

.exp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.exp-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.floating-card {
    background: var(--bg-card);
    border: 1px solid var(--gold);
    padding: 24px;
    animation: floatCard 6s infinite alternate ease-in-out;
}
@keyframes floatCard {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

.float-1 { animation-delay: 0s; }
.float-2 { animation-delay: -1.5s; margin-top: 40px; }
.float-3 { animation-delay: -3s; }
.float-4 { animation-delay: -4.5s; margin-top: 40px; }

.float-title {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 8px;
}

.float-desc {
    font-size: 12px;
    color: var(--text-subtle);
    line-height: 1.5;
}

.italic-quote {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--text-cream);
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 24px;
}

.exp-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 32px;
    line-height: 1.7;
}


/* ===== SECTION 8: CONTACT / CTA ===== */
.contact {
    padding: var(--padding-section);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.expanding-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.ring {
    position: absolute;
    border: 1px solid rgba(201,168,76,0.05);
    border-radius: 50%;
    animation: ringExpand 8s infinite linear;
}
@keyframes ringExpand {
    0% { width: 100px; height: 100px; opacity: 1; }
    100% { width: 1000px; height: 1000px; opacity: 0; }
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 40px;
    opacity: 0.3;
}

.contact-info-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contact-label {
    color: var(--gold);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-family: var(--font-heading);
    color: #C8BFA8;
    font-size: 20px;
}


/* ===== SECTION NEW A: PROCESO ===== */
.process {
    padding: var(--padding-section);
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 25px; /* aligns with middle of circle */
    left: 10%;
    width: 80%;
    height: 1px;
    border-top: 1px dashed var(--gold);
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    background: transparent;
    text-align: center;
    flex: 1;
    padding: 0 15px;
}

.step-circle {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: #111114;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    margin: 0 auto 20px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-cream);
    margin-bottom: 12px;
}

.step-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}


/* ===== SECTION NEW B: GALERÍA ===== */
.gallery {
    padding: var(--padding-section);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.gallery-item {
    background: #111114;
    border: 1px solid rgba(201,168,76,0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 4px;
}
.gallery-item:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
}

.gallery-img-container {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.gallery-name {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding-bottom: 12px;
}

.gallery-detail {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.5;
}
.gallery-detail strong {
    color: var(--text-cream);
    font-weight: 500;
}


/* ===== SECTION NEW C: TESTIMONIOS ===== */
.testimonials {
    padding: var(--padding-section);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(201,168,76,0.025);
    border: 1px solid rgba(201,168,76,0.1);
    padding: 32px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-mark {
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 80px;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
}

.test-text {
    position: relative;
    z-index: 2;
    color: #C8BFA8;
    font-size: 15px;
    font-family: var(--font-heading);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
    margin-top: 20px;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(201,168,76,0.1);
    padding-top: 20px;
}

.test-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 14px;
    background: rgba(0,0,0,0.5);
}

.test-info {
    flex: 1;
}
.test-name {
    color: var(--text-cream);
    font-size: 14px;
    font-weight: 600;
}
.test-role {
    color: var(--text-subtle);
    font-size: 12px;
}
.test-stars {
    font-size: 12px;
}


/* ===== SECTION NEW D: FAQ ===== */
.faq {
    padding: var(--padding-section);
}

/* ===== SECTION NEW E: PEDIDOS ===== */
.pedidos {
    padding: var(--padding-section);
}

.pedidos-header {
    text-align: center;
    margin-bottom: 60px;
}

.pedidos-card {
    background: var(--bg-card);
    border: 1px solid var(--gold);
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
    border-radius: 4px;
    position: relative;
    z-index: 2;
}

.pedidos-detail-title {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 12px;
    margin-top: 24px;
}

.pedidos-detail-title:first-child {
    margin-top: 0;
}

.pedidos-detail-text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}
    padding: var(--padding-section);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(201,168,76,0.1);
}
.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 24px 0;
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    padding-bottom: 24px;
    padding-right: 40px;
}

/* state class active for logic */
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}


/* ===== SECTION 9: FOOTER ===== */
.footer {
    background: #060608;
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 28px 6%;
}

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

.footer-logo {
    display: flex;
    align-items: center;
}

.logo-img-footer {
    mix-blend-mode: screen;
}

.footer-center {
    color: #4A4840;
    font-size: 12px;
}

.footer-right {
    color: rgba(201,168,76,0.3);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-container, .exp-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .hero-right {
        align-items: center;
        text-align: center;
    }
    
    .hero-title { font-size: 60px; }
    .section-h2 { font-size: 40px; }
    
    .stats-container {
        flex-wrap: wrap;
        gap: 30px;
    }
    .stat-box {
        flex: 1 1 40%;
        border-right: none;
        border-bottom: 1px solid rgba(201,168,76,0.2);
        padding-bottom: 20px;
    }
    
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --padding-section: 60px 5%;
    }
    
    .hero-logo-large {
        max-width: 280px;
    }
    .hero-title { font-size: 48px; }
    .hero-subtitle { font-size: 32px; }
    
    .hero-actions, .contact-actions {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .contact-info-row {
        flex-direction: column;
        gap: 24px;
    }
    
    /* Timeline Mobile */
    .timeline-container {
        flex-direction: column;
        gap: 40px;
        padding-left: 25px;
    }
    .timeline-line {
        width: 1px;
        height: 100%;
        border-top: none;
        border-left: 1px dashed var(--gold);
        left: 50px;
        top: 0;
    }
    .timeline-step {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .step-circle {
        margin: 0 0 15px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
