/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - NATY ALVES BEAUTY CENTER
   ========================================================================== */

:root {
    --color-primary: #111111;
    --color-primary-light: #1a1a1a;
    --color-primary-dark: #0a0a0a;
    --color-gold: #C9A86A;
    --color-gold-hover: #bda061;
    --color-gold-light: #e0d0af;
    --color-white: #FFFFFF;
    --color-light-gray: #F5F5F5;
    --color-muted: #888888;
    --color-border: rgba(201, 168, 106, 0.2);
    
    --font-titles: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 15px rgba(201, 168, 106, 0.15);
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.main-wrapper {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

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

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

ul {
    list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-primary-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-hover);
}

/* ==========================================================================
   LAYOUT & UTILITIES
   ========================================================================== */

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

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.mt-16 { margin-top: 4rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-6 { margin-top: 1.5rem; }
.w-full { width: 100%; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.items-center { align-items: center; }
.text-white { color: var(--color-white); }
.text-gold { color: var(--color-gold); }
.text-muted { color: var(--color-muted); }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.max-w-2xl { max-w: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.bg-light-gray { background-color: var(--color-light-gray); }
.bg-dark { background-color: var(--color-primary); }
.bg-darker { background-color: var(--color-primary-dark); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    padding: 0.85rem 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    max-width: 100%;
    box-sizing: border-box;
}

.btn-gold {
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    background: transparent;
}

.btn-gold:hover {
    background: var(--color-gold);
    color: var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.btn-gold-filled {
    color: var(--color-primary-dark);
    background: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.btn-gold-filled:hover {
    background: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-gold-outline {
    color: var(--color-white);
    border: 1px solid var(--color-white);
    background: transparent;
}

.btn-gold-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-service-cta svg {
    transition: var(--transition-fast);
}

.btn-service-cta:hover svg {
    transform: translateX(5px);
}

/* =svg icon utilities */
.icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* ==========================================================================
   TYPOGRAPHY & TITLE STYLES
   ========================================================================== */

.section-title-wrapper {
    margin-bottom: 4rem;
}

.section-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-titles);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.3;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--color-gold);
    margin: 1.25rem auto 0;
}

.text-left .section-title::after {
    margin: 1.25rem 0 0;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */

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

.header.scrolled {
    background: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 106, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.header.scrolled .header-container {
    height: 70px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-letters {
    font-family: var(--font-titles);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 0.1rem 0.5rem;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--color-white);
}

/* Navigation Links */
.nav-menu {
    display: none;
}

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

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-header {
    display: none;
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-fast);
}

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

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

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

/* Desktop navbar display */
@media (min-width: 1080px) {
    .nav-menu {
        display: block;
    }
    .btn-header {
        display: inline-flex;
    }
    .mobile-toggle {
        display: none;
    }
}

@media (min-width: 1080px) and (max-width: 1250px) {
    .nav-list {
        gap: 0.75rem;
    }
    .nav-link {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    .header-actions {
        gap: 0.75rem;
    }
    .btn-header {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    .logo-letters {
        font-size: 1.4rem;
        padding: 0.1rem 0.4rem;
    }
    .logo-text {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-primary-dark);
    z-index: 999;
    padding: 100px 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    visibility: hidden;
    transform: translateX(100%);
}

.mobile-nav-overlay.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.mobile-nav-link {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    padding: 0.5rem 0;
}

.mobile-nav-link:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    height: 100vh;
    min-height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--color-white);
    padding-top: 80px;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero-tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    display: inline-block;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-titles);
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 480px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--color-white);
    animation: scrollScroll 2s infinite ease-in-out;
}

@keyframes scrollScroll {
    0% { transform: translateY(-100%); }
    80%, 100% { transform: translateY(300%); }
}

/* ==========================================================================
   DIFERENCIAIS SECTION
   ========================================================================== */

.diferenciais-section {
    background-color: var(--color-white);
}

.diferencial-card {
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: left;
}

.diferencial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 106, 0.3);
    box-shadow: var(--shadow-premium);
}

.diferencial-card:hover::before {
    transform: scaleX(1);
}

.card-icon-wrapper {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.card-title {
    font-family: var(--font-titles);
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.card-description {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* ==========================================================================
   SOBRE NATY ALVES
   ========================================================================== */

.sobre-image-container {
    display: flex;
    justify-content: center;
}

.premium-image-frame {
    position: relative;
    padding: 1rem;
}

.premium-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border-top: 2px solid var(--color-gold);
    border-left: 2px solid var(--color-gold);
    z-index: 0;
}

.premium-image-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border-bottom: 2px solid var(--color-gold);
    border-right: 2px solid var(--color-gold);
    z-index: 0;
}

.sobre-image {
    position: relative;
    z-index: 1;
    filter: grayscale(15%);
    box-shadow: var(--shadow-premium);
    width: 100%;
    max-width: 450px;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.sobre-content {
    padding-left: 0;
}

@media (min-width: 992px) {
    .sobre-content {
        padding-left: 2rem;
    }
}

.sobre-mvv {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mvv-item {
    border-left: 2px solid var(--color-gold);
    padding-left: 1.25rem;
}

.mvv-title {
    font-family: var(--font-titles);
    font-size: 1.15rem;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.mvv-text {
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* Stats Counter Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 2rem;
}

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

.stat-number {
    display: block;
    font-family: var(--font-titles);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-gold);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-muted);
    margin-top: 0.25rem;
    display: block;
}

@media (min-width: 768px) {
    .stat-number { font-size: 2.5rem; }
}

/* ==========================================================================
   SERVIÇOS SECTION
   ========================================================================== */

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--color-light-gray);
    color: var(--color-muted);
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(201, 168, 106, 0.25);
}

.service-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-category-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(17, 17, 17, 0.85);
    color: var(--color-gold);
    padding: 0.35rem 0.85rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.service-card-info {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-name {
    font-family: var(--font-titles);
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-light-gray);
}

.service-price {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* ==========================================================================
   RESULTADOS (BEFORE & AFTER SLIDER)
   ========================================================================== */

.before-after-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    min-width: 0;
    box-sizing: border-box;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 2px solid var(--color-gold);
    box-sizing: border-box;
    touch-action: pan-y;
}

.image-after, .image-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.image-before {
    width: 50%;
    border-right: 2px solid var(--color-gold);
    z-index: 10;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--color-gold);
    z-index: 20;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--color-primary-dark);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    pointer-events: none;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    width: 100%;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.label-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--color-muted);
    white-space: normal;
    word-wrap: break-word;
    max-width: 48%;
}

@media (max-width: 480px) {
    .label-tag {
        font-size: 0.65rem;
        letter-spacing: 1px;
        max-width: 48%;
    }
}

.gallery-showcase-info {
    padding-left: 0;
}

@media (min-width: 992px) {
    .gallery-showcase-info {
        padding-left: 2rem;
    }
}

.gallery-title {
    font-family: var(--font-titles);
    font-size: 1.85rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-bullet {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.bullet-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    border-radius: 50%;
}

.gallery-item-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay span {
    font-family: var(--font-titles);
    font-size: 1.2rem;
    color: var(--color-gold);
    letter-spacing: 1px;
}

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

.gallery-item-card:hover .gallery-overlay {
    opacity: 1;
}

/* ==========================================================================
   EQUIPE SECTION
   ========================================================================== */

.team-card {
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(201, 168, 106, 0.2);
}

.team-image-wrapper {
    overflow: hidden;
    aspect-ratio: 4/5;
    background-color: var(--color-light-gray);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: var(--transition-smooth);
}

.team-card:hover .team-image {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-info {
    padding: 1.75rem 1.5rem;
    text-align: center;
}

.team-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.team-name {
    font-family: var(--font-titles);
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* ==========================================================================
   DEPOIMENTOS (TESTIMONIALS) CAROUSEL
   ========================================================================== */

.testimonials-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonials-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 2rem;
    text-align: center;
    opacity: 0.3;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
}

.stars {
    color: var(--color-gold);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-family: var(--font-titles);
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .testimonial-text {
        font-size: 1.6rem;
    }
}

.testimonial-author {
    display: block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
}

.testimonial-city {
    display: block;
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-top: 0.25rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-muted);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background-color: var(--color-gold);
    transform: scale(1.3);
}

/* ==========================================================================
   BLOG SECTION
   ========================================================================== */

.blog-card {
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.blog-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(17, 17, 17, 0.9);
    color: var(--color-white);
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-info {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title {
    font-family: var(--font-titles);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-title a:hover {
    color: var(--color-gold);
}

.blog-summary {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.blog-readmore {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
}

.blog-readmore:hover {
    color: var(--color-primary);
}

/* ==========================================================================
   CONTATO & EMBED MAP SECTION
   ========================================================================== */

.contato-info {
    color: var(--color-white);
}

.contato-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.detail-icon {
    color: var(--color-gold);
    background: rgba(201, 168, 106, 0.1);
    border: 1px solid var(--color-border);
    width: 48px;
    height: 48px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
}

.detail-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-link:hover {
    color: var(--color-gold);
}

/* Contato Form */
.contato-form-container {
    background: var(--color-primary-light);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
}

.form-title {
    font-family: var(--font-titles);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.form-desc {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--color-primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-radius: 0;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.map-embed-container {
    border: 1px solid var(--color-border);
    padding: 0.5rem;
    background: var(--color-primary-light);
    line-height: 0;
}

/* ==========================================================================
   FOOTER & SOCIALS
   ========================================================================== */

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-muted);
    color: var(--color-muted);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.social-icon:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */

.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    position: relative;
}

.floating-whatsapp a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    left: 0;
    top: 0;
    opacity: 0.8;
    animation: whatsapp-pulse 2s infinite;
    pointer-events: none;
    box-sizing: border-box;
}

.floating-whatsapp a:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.15));
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        transform: scale(1.4);
        opacity: 0;
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   REVEAL & ENTRY ANIMATIONS
   ========================================================================== */

/* Init Hidden */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

/* Disable horizontal translations on all screens under 1024px to prevent horizontal overflow */
@media (max-width: 1024px) {
    .reveal-left,
    .reveal-right {
        transform: translateY(30px) !important;
    }
}

/* Enforce strict layout constraints inside resultados section on mobile */
@media (max-width: 767px) {
    .resultados-section {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .resultados-section .container {
        padding: 0 1rem !important;
    }
    .resultados-section .grid {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    .before-after-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 auto !important;
        overflow-x: hidden !important;
    }
    .slider-container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    /* Allow long button text to wrap on small screens */
    .resultados-section .btn {
        white-space: normal !important;
        word-wrap: break-word;
        padding: 0.85rem 1.25rem;
    }
    .gallery-showcase-info {
        min-width: 0 !important;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
}

/* Active State */
.reveal-active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Animacoes Hero */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1.2s forwards ease;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

.animate-slide-up-delayed {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s forwards cubic-bezier(0.25, 1, 0.5, 1);
    animation-delay: 0.3s;
}

.animate-fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1s forwards ease;
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   MAIN FOOTER STYLES
   ========================================================================== */

.main-footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 5rem 0 0;
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

@media (min-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-brand .logo {
    display: inline-flex;
    margin-bottom: 1.5rem;
}

.footer-brand .social-links {
    justify-content: flex-start;
}

.footer-about-text {
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-family: var(--font-titles);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--color-gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
}

.footer-links li a {
    color: var(--color-muted);
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-muted);
}

.footer-info-icon {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-contact-info li a {
    color: var(--color-muted);
    transition: var(--transition-fast);
}

.footer-contact-info li a:hover {
    color: var(--color-gold);
}

.footer-bottom-bar {
    background-color: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
}

.bottom-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .bottom-bar-container {
        flex-direction: row;
        text-align: left;
    }
}

.copyright-text {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin: 0;
}

.credits-text {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin: 0;
}

.credits-link {
    color: var(--color-gold);
    font-weight: 500;
    transition: var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.credits-link:hover {
    color: var(--color-gold-hover);
    border-bottom-color: var(--color-gold-hover);
}

/* ==========================================================================
   ANTI-COPY & IMAGE PROTECTION SYSTEM
   ========================================================================== */

/* Prevent text selection across the site */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection inside forms so users can input and edit normally */
input, textarea, select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Prevent image dragging and saving */
img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none; /* Prevents saving images via context menu or dragging */
}

/* Re-enable pointer events for interactive elements (buttons, links, inputs, sliders) */
a, button, input, textarea, select, .slider-handle {
    pointer-events: auto;
}

/* ==========================================================================
   BLOG MODAL
   ========================================================================== */
.blog-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow-y: auto;
}

.blog-modal-overlay.active {
    display: flex;
}

.blog-modal-card {
    background: var(--color-primary-light);
    border: 1px solid var(--color-border);
    width: 100%;
    max-width: 700px;
    box-shadow: var(--shadow-premium);
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalFadeIn 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--color-gold);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    pointer-events: auto;
}

.blog-modal-close:hover {
    color: var(--color-white);
    transform: scale(1.1);
}

.blog-modal-header {
    padding: 2.5rem 2.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-modal-date {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.blog-modal-title {
    font-family: var(--font-titles);
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-white);
}

.blog-modal-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-modal-body {
    padding: 2.5rem;
    overflow-y: auto;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
}

.blog-modal-body p {
    margin-bottom: 1.5rem;
}

.blog-modal-body p:last-child {
    margin-bottom: 0;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

