/* ==========================================================================
   Natália Alves Studio | Especialista em Mechas & Correção de Cor
   CSS Premium - Estilo de Luxo, Glassmorphism e Alta Conversão
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Reset & Base System Variables
   -------------------------------------------------------------------------- */
:root {
    /* Theme Color Tokens - Luxury Black & Warm Gold */
    --bg-dark-base: #0b090a;       /* Elegant deep onyx black */
    --bg-dark-card: #141012;       /* Rich card background with warm plum undertones */
    --bg-dark-accent: #1c1619;     /* Section header/highlight background */
    --bg-light-accent: #261f22;    /* Glowing details and active highlights */
    
    --color-text-primary: #faf6f8;  /* Soft warm off-white */
    --color-text-secondary: #dacccf;/* Muted rose-silver */
    --color-text-muted: #8c787b;    /* Elegant clinical dark pink-grey */
    
    /* Luxury Accents representing Hair Highlights */
    --accent-gold: #dfb66d;        /* Signature shiny gold */
    --accent-gold-light: #eed5a7;  /* Soft warm blonde highlights */
    --accent-bronze: #ae8648;      /* Deep luxurious bronze */
    --accent-champagne: #f3ebd8;   /* Light champagne highlights */
    --accent-emerald: #10b981;     /* WhatsApp green for high conversion */
    --accent-emerald-light: #34d399;
    
    /* Gradients */
    --grad-gold: linear-gradient(135deg, #ae8648 0%, #dfb66d 50%, #eed5a7 100%);
    --grad-gold-light: linear-gradient(135deg, #dfb66d 0%, #f3ebd8 100%);
    --grad-dark-glass: linear-gradient(135deg, rgba(20, 16, 18, 0.8) 0%, rgba(11, 9, 10, 0.9) 100%);
    --grad-green: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --grad-dark-base: linear-gradient(180deg, #0b090a 0%, #141012 100%);

    /* UI Details */
    --border-glass: 1px solid rgba(223, 182, 109, 0.15);
    --border-glass-hover: 1px solid rgba(223, 182, 109, 0.35);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 25px rgba(223, 182, 109, 0.25);
    --shadow-green-glow: 0 0 25px rgba(16, 185, 129, 0.35);
    
    /* Layout & Animation */
    --container-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark-base);
    color: var(--color-text-primary);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-dark-base);
    color: var(--color-text-primary);
}

/* Typography Customization */
h1, h2, h3, h4, .brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

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

button {
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
    transition: var(--transition-smooth);
}

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

/* --------------------------------------------------------------------------
   2. Reusable Layout Utilities & Common Components
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-primary {
    background: var(--grad-gold-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--accent-gold);
    display: inline-block;
    margin-bottom: 0.75rem;
    position: relative;
    text-transform: uppercase;
}

.section-tag::after {
    content: '';
    display: block;
    width: 35px;
    height: 1px;
    background: var(--accent-gold);
    margin: 0.5rem auto 0;
}

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

.tag-gold::after {
    background: var(--accent-gold-light);
}

.section-title {
    font-size: 2.85rem;
    margin-bottom: 1.25rem;
    color: var(--color-text-primary);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.max-width-600 {
    max-width: 600px;
}

/* --------------------------------------------------------------------------
   3. Buttons & Interactive Links
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    gap: 0.75rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad-green);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2.5px);
    box-shadow: var(--shadow-green-glow);
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
    opacity: 0;
}

.btn-glow:hover::after {
    animation: shine 1.6s infinite;
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--grad-gold);
    border-color: transparent;
    color: #ffffff;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2.5px);
}

.btn-text {
    color: var(--accent-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: var(--accent-gold-light);
    transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   4. Header & Navigation System
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 9, 10, 0.75);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

.header.scrolled {
    background: rgba(11, 9, 10, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    padding: 0.25rem 0;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-symbol {
    width: 44px;
    height: 44px;
    position: relative;
}

.svg-logo {
    width: 100%;
    height: 100%;
}

.circle-bg {
    fill: none;
    stroke: rgba(223, 182, 109, 0.2);
    stroke-width: 3.5px;
}

.path-symbol {
    fill: none;
    stroke: var(--accent-gold);
    stroke-width: 4.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: rotateLogo 20s linear infinite;
    transform-origin: 50% 50%;
}

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

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1;
}

.brand-sub {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-top: 0.2rem;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.85rem;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--grad-gold);
    transition: var(--transition-smooth);
}

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

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--grad-green);
    color: #ffffff;
    padding: 0.7rem 1.65rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.25);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green-glow);
}

/* Hamburger Mobile Button */
.menu-toggle {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-smooth);
}

.hamburger::before, .hamburger::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    position: absolute;
    left: 0;
    transition: var(--transition-smooth);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* --------------------------------------------------------------------------
   5. Hero Section (First Impression)
   -------------------------------------------------------------------------- */
.hero-section {
    padding-top: 170px;
    padding-bottom: 75px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 650px;
    height: 650px;
    background: rgba(223, 182, 109, 0.08);
    border-radius: 50%;
    filter: blur(130px);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -15%;
    width: 550px;
    height: 550px;
    background: rgba(174, 134, 72, 0.04);
    border-radius: 50%;
    filter: blur(110px);
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.35rem;
    background: rgba(223, 182, 109, 0.09);
    border: 1px solid rgba(223, 182, 109, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold-light);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.85rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.75rem;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.hero-trust-indicators {
    display: flex;
    gap: 2.25rem;
}

.trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-top: 0.2rem;
}

.trust-badge h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.trust-badge p {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

/* Profile Picture layout with double border */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame-gold {
    position: relative;
    width: 100%;
    max-width: 430px;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    overflow: visible;
}

.image-frame-gold::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 1.5px solid var(--accent-gold);
    border-radius: 24px;
    z-index: -1;
    transition: var(--transition-smooth);
}

.image-frame-gold:hover::before {
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    border-color: var(--accent-gold-light);
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    object-fit: cover;
}

.floating-quote-card {
    position: absolute;
    bottom: -25px;
    left: -35px;
    right: 35px;
    background: var(--grad-dark-glass);
    backdrop-filter: blur(12px);
    border: var(--border-glass);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: var(--shadow-premium);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.quote-icon {
    font-size: 1.25rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.quote-text {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--color-text-secondary);
    line-height: 1.45;
    margin-bottom: 0.5rem;
}

.quote-author {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    text-transform: uppercase;
}

/* Curve Divider Styling */
.section-divider-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.curve-svg {
    width: 100%;
    height: 60px;
}

/* --------------------------------------------------------------------------
   6. Trust Elements Section
   -------------------------------------------------------------------------- */
.trust-bar-section {
    background-color: var(--bg-dark-card);
    padding: 7rem 0;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.01);
}

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

.trust-card {
    background: rgba(20, 16, 18, 0.45);
    border: 1px solid rgba(255,255,255,0.02);
    border-radius: 18px;
    padding: 2.5rem 1.75rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.trust-card:hover {
    background: rgba(223, 182, 109, 0.05);
    border-color: rgba(223, 182, 109, 0.25);
    transform: translateY(-6px);
}

.trust-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(223, 182, 109, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-gold);
    font-size: 1.55rem;
    transition: var(--transition-smooth);
}

.trust-card:hover .trust-icon-box {
    background: var(--grad-gold);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.trust-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
}

.trust-card p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.55;
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   7. Transformation Timeline Section (Interactive Case Study)
   -------------------------------------------------------------------------- */
.transformation-section {
    padding: 8rem 0;
    background-color: var(--bg-dark-base);
    position: relative;
}

.timeline-container {
    max-width: 1040px;
    margin: 0 auto;
}

.timeline-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 3.5rem;
    background: rgba(20, 16, 18, 0.55);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.timeline-tabs .tab-btn {
    padding: 1.1rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
}

.timeline-tabs .step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(223, 182, 109, 0.15);
    color: var(--accent-gold-light);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.timeline-tabs .tab-btn.active {
    background: var(--grad-gold);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.timeline-tabs .tab-btn.active .step-num {
    background: #ffffff;
    color: var(--accent-bronze);
}

.timeline-tabs .tab-btn:hover:not(.active) {
    color: var(--accent-gold);
    background: rgba(223, 182, 109, 0.08);
}

.timeline-content-wrapper {
    position: relative;
    min-height: 480px;
}

.timeline-slide {
    display: none;
    animation: fadeInTab 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.timeline-slide.active {
    display: block;
}

.timeline-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4.5rem;
    align-items: center;
}

.timeline-image-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-image-frame {
    position: relative;
    width: 100%;
    max-width: 390px;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.timeline-image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    pointer-events: none;
}

.timeline-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-image-frame:hover .timeline-img {
    transform: scale(1.05);
}

.img-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(11, 9, 10, 0.7);
    backdrop-filter: blur(10px);
    border: var(--border-glass);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold-light);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.timeline-text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-badge {
    background: rgba(223, 182, 109, 0.08);
    border: 1px solid rgba(223, 182, 109, 0.25);
    border-radius: 50px;
    color: var(--accent-gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1.15rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-text-side h3 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
}

.step-tagline {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
}

.step-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.step-features li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-primary);
}

.step-features li i {
    font-size: 1rem;
}

/* Dots navigation indicator for mobile */
.timeline-dots-controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.timeline-dots-controls .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.timeline-dots-controls .dot.active {
    background: var(--accent-gold);
    transform: scale(1.25);
    box-shadow: 0 0 10px rgba(223, 182, 109, 0.4);
}

.timeline-cta-wrapper {
    margin-top: 4.5rem;
}

/* --------------------------------------------------------------------------
   8. Specialty Services Section
   -------------------------------------------------------------------------- */
.services-section {
    padding: 8rem 0;
    background-color: var(--bg-dark-accent);
}

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

.service-card {
    background: var(--bg-dark-card);
    border: var(--border-glass);
    border-radius: 20px;
    padding: 2.5rem 1.85rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold-light);
    box-shadow: var(--shadow-premium);
}

.service-icon {
    font-size: 2.25rem;
    color: var(--accent-gold);
    margin-bottom: 1.75rem;
}

.service-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.service-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.service-text {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
}

.service-tag-detail {
    margin-top: auto;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-gold);
    padding: 0.25rem 0.75rem;
    background: rgba(223, 182, 109, 0.08);
    border-radius: 4px;
}

/* --------------------------------------------------------------------------
   9. About Professional Section
   -------------------------------------------------------------------------- */
.about-section {
    padding: 8rem 0;
    background-color: var(--bg-dark-base);
}

.about-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

.about-visuals {
    display: flex;
    justify-content: center;
    position: relative;
}

.about-image-frame {
    position: relative;
    width: 100%;
    max-width: 410px;
    border-radius: 200px 200px 20px 20px; /* Custom luxury arc dome shape */
    box-shadow: var(--shadow-premium);
    overflow: visible;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--accent-gold);
    border-radius: 200px 200px 20px 20px;
    z-index: -1;
}

.about-main-img {
    width: 100%;
    height: auto;
    border-radius: 200px 200px 20px 20px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.06);
}

.experience-card {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--grad-dark-glass);
    border: var(--border-glass);
    box-shadow: var(--shadow-premium);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    max-width: 180px;
    text-align: center;
    animation: float 6s ease-in-out infinite 1.5s;
}

.exp-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    display: block;
    margin-bottom: 0.25rem;
}

.exp-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent-gold-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.about-text {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.pro-advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.advantage-item {
    display: flex;
    gap: 0.95rem;
}

.adv-icon {
    font-size: 1.25rem;
    color: var(--accent-gold);
    margin-top: 0.25rem;
}

.advantage-item h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.35rem;
}

.advantage-item p {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    font-weight: 300;
}

.about-cta-wrapper {
    margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   10. Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials-section {
    padding: 8rem 0;
    background-color: var(--bg-dark-card);
}

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

.testimonial-card {
    background: rgba(20, 16, 18, 0.45);
    border: var(--border-glass);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: rgba(223, 182, 109, 0.35);
    transform: translateY(-5px);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-gold);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.client-info h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.client-info span {
    font-size: 0.75rem;
    color: var(--accent-gold-light);
}

/* --------------------------------------------------------------------------
   11. Location & Contact Section (Custom map view mockup)
   -------------------------------------------------------------------------- */
.location-section {
    padding: 8rem 0;
    background-color: var(--bg-dark-base);
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.location-lead {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-item .icon-box {
    width: 48px;
    height: 48px;
    background: rgba(223, 182, 109, 0.08);
    border: var(--border-glass);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.35rem;
}

.contact-item p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    font-weight: 300;
    line-height: 1.45;
}

.location-cta-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.location-visual {
    display: flex;
    justify-content: center;
}

.map-wrapper {
    width: 100%;
    max-width: 480px;
    height: 380px;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    position: relative;
    border: var(--border-glass);
}

.map-mockup {
    width: 100%;
    height: 100%;
    background-color: #1a1618;
    background-image: 
        radial-gradient(rgba(223, 182, 109, 0.08) 1.5px, transparent 1.5px),
        radial-gradient(rgba(223, 182, 109, 0.08) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    position: relative;
}

/* Beautiful custom overlay representing streets of Jacareí */
.map-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 49%, rgba(255,255,255,0.015) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(255,255,255,0.015) 50%, transparent 51%);
    background-size: 80px 80px;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.map-overlay .pin {
    width: 44px;
    height: 44px;
    background: var(--grad-gold);
    color: #ffffff;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.map-overlay .pin i {
    transform: rotate(45deg);
}

.map-label {
    margin-top: 15px;
    background: rgba(11, 9, 10, 0.85);
    backdrop-filter: blur(10px);
    border: var(--border-glass-hover);
    padding: 0.65rem 1.25rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    animation: float 5s ease-in-out infinite;
}

.map-label h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.map-label p {
    font-size: 0.7rem;
    color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   12. Footer Section
   -------------------------------------------------------------------------- */
.footer {
    background-color: #080607;
    padding: 5rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    gap: 5rem;
    padding-bottom: 4rem;
}

.footer-brand .logo-area {
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 320px;
    font-weight: 300;
}

.footer-links h4, .footer-instagram h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links ul a {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.footer-links ul a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-instagram p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.insta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(223, 182, 109, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold-light);
}

.insta-btn:hover {
    background: var(--grad-gold);
    color: #ffffff;
    border-color: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.02);
    padding: 2rem 0;
}

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

.bottom-container p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   13. Animations
   -------------------------------------------------------------------------- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes shine {
    100% { left: 125%; }
}

@keyframes rotateLogo {
    100% { transform: rotate(360deg); }
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------------------------------------------------------
   14. Pixel-Perfect Responsive Design (Mobile First Media-Queries)
   -------------------------------------------------------------------------- */

/* Responsive up to Desktop Small (max 1200px) */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    .hero-title {
        font-size: 3.25rem;
    }
    .services-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        gap: 3rem;
    }
}

/* Responsive up to Tablets (max 991px) */
@media screen and (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4.5rem;
        text-align: center;
    }
    .badge-accent {
        justify-content: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-trust-indicators {
        justify-content: center;
    }
    .hero-image-wrapper {
        order: -1; /* Image appears first in mobile hero */
        margin-bottom: 2rem;
    }
    .floating-quote-card {
        bottom: -20px;
        left: -15px;
        right: 15px;
    }
    .timeline-grid, .about-container, .location-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .about-visuals {
        order: -1;
        margin-bottom: 2rem;
    }
    .about-content {
        align-items: center;
        text-align: center;
    }
    .about-lead {
        margin-bottom: 1.25rem;
    }
    .about-cta-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .pro-advantage-grid {
        width: 100%;
        text-align: left;
    }
    .location-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .contact-details {
        align-items: center;
        text-align: center;
    }
    .contact-item {
        flex-direction: column;
        align-items: center;
    }
    .location-cta-group {
        justify-content: center;
    }
    .map-wrapper {
        height: 320px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-desc {
        max-width: 100%;
    }
    .bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .timeline-tabs {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 20px;
    }
    .timeline-tabs .tab-btn {
        padding: 0.85rem 0.5rem;
        font-size: 0.8rem;
    }
    .timeline-tabs .step-num {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
}

/* Mobile Devices Menu and Navigation (max 768px) */
@media screen and (max-width: 768px) {
    /* Mobile Menu Drawer style */
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(11, 9, 10, 0.98);
        backdrop-filter: blur(20px);
        z-index: 1000;
        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.6);
        transition: var(--transition-smooth);
        padding: 100px 2rem 2rem;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        width: 100%;
    }
    .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
        width: 100%;
    }
    .nav-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    /* Layout adjustments */
    .section-title {
        font-size: 2.25rem;
    }
    .hero-title {
        font-size: 2.75rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .services-grid, .testimonials-grid, .trust-grid {
        grid-template-columns: 1fr;
    }
    .timeline-text-side h3 {
        font-size: 1.75rem;
    }
    .step-tagline {
        font-size: 0.95rem;
    }
    .step-desc {
        font-size: 0.85rem;
    }
    .timeline-image-frame {
        max-width: 100%;
    }
    .pro-advantage-grid {
        grid-template-columns: 1fr;
    }
}

/* Extra Small Phones (max 480px) */
@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2.35rem;
    }
    .hero-cta-group, .location-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .hero-cta-group .btn, .location-cta-group .btn {
        width: 100%;
    }
    .hero-trust-indicators {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
    }
    .timeline-tabs {
        grid-template-columns: 1fr;
        border-radius: 12px;
        padding: 0.25rem;
    }
    .timeline-tabs .tab-btn {
        justify-content: flex-start;
        padding: 0.75rem 1rem;
    }
    .image-frame-gold::before {
        top: -8px;
        left: -8px;
        right: 8px;
        bottom: 8px;
    }
    .floating-quote-card {
        padding: 1.15rem;
        left: -10px;
        right: 10px;
    }
}
