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

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

:root {
    /* Colors */
    --primary: #32312f;
    --secondary: #f4ece3;
    --black: #0E0E0E;
    --gray: #2A2A2A;
    --white: #FFFFFF;
    --bg-main: #fdfbf8;
    --bg-alt: #f4ece3;
    --surface: #FFFFFF;
    --surface-soft: rgba(255, 255, 255, 0.85);
    --text-primary: #32312f;
    --text-secondary: rgba(50, 49, 47, 0.85);
    --overlay: rgba(50, 49, 47, 0.7);

    /* Typography */
    --font-main: 'Poppins', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 20px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-main) 60%, #EAE3DA 100%);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(50, 49, 47, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(50, 49, 47, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

i[class^="fa"],
i[class*=" fa-"] {
    color: var(--white);
    transition: color 0.3s ease;
}

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

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

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

/* ================================================
   UTILITY CLASSES
   ================================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
    z-index: 1;
}

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

.row {
    display: flex;
    gap: 60px;
    align-items: center;
}

.row.reverse {
    flex-direction: row-reverse;
}

.col-text,
.col-image {
    flex: 1;
}

.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    color: var(--text-primary);
    z-index: 1;
}

.section-criativo,
.section-profissional,
.section-servicos,
.section-galeria,
.section-contato {
    background: var(--surface);
}

/* Creative Section */
.criativo-content {
    max-width: 1000px;
    margin: 0 auto;
}

.creative-icon-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.creative-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.creative-icon-item[data-delay="0"] { animation-delay: 0s; }
.creative-icon-item[data-delay="0.1"] { animation-delay: 0.1s; }
.creative-icon-item[data-delay="0.2"] { animation-delay: 0.2s; }
.creative-icon-item[data-delay="0.3"] { animation-delay: 0.3s; }

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #464541 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(50, 49, 47, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(244, 236, 227, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.creative-icon-item:hover .icon-circle {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 25px 50px rgba(50, 49, 47, 0.3);
}

.creative-icon-item:hover .icon-circle::before {
    opacity: 1;
}

.icon-circle i {
    font-size: 40px;
    color: var(--white);
    z-index: 1;
}

.creative-icon-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.criativo-text-content {
    margin-bottom: 50px;
}

.criativo-text-content .section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 30px;
}

.criativo-text-content .section-text {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.creative-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(50, 49, 47, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(50, 49, 47, 0.1);
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(50, 49, 47, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(50, 49, 47, 0.1);
}

.feature-pill i {
    font-size: 18px;
    color: var(--primary);
}

.feature-pill span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

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

.section-escolher,
.section-depoimentos,
.section-faq {
    background: var(--bg-alt);
}

/* Seção Ambientes com Parallax */
.section-ambientes {
    position: relative;
    padding: 100px 0;
    min-height: 600px;
    overflow: visible !important;

    /* Parallax Background Effect */
    background-image: url('images/bg-session2.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;

    /* Texto branco */
    color: var(--white);
}

.section-ambientes .section-title,
.section-ambientes .section-text {
    color: var(--white);
}

.section-ambientes::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(14, 14, 14, 0.6) 0%, rgba(14, 14, 14, 0.3) 100%);
    z-index: 0;
    pointer-events: none;
}

.section-ambientes > .container {
    position: relative;
    z-index: 2;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
}

.section-subtitle {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.section-text {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 0.01em;
}

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

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #464541 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(50, 49, 47, 0.3);
    background-size: 200% 200%;
    background-position: 0% 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background-position: 100% 50%;
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(50, 49, 47, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid transparent;
    overflow: hidden;
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* Section CTA */
.section-cta {
    margin-top: 60px;
    padding-top: 40px;
}

.section-cta .btn {
    min-width: 200px;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(50, 49, 47, 0.25);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(50, 49, 47, 0.15), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.btn-secondary:hover::after {
    transform: translateX(0);
}

/* ================================================
   NAVIGATION
   ================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(244, 236, 227, 0.92);
    backdrop-filter: blur(18px);
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(50, 49, 47, 0.08);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 8px 32px rgba(14, 14, 14, 0.12);
}

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

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

.logo-img {
    height: 80px;
    width: auto;
    transition: var(--transition-smooth);
}

.navbar .logo-img {
    height: 80px;
}

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

.logo-footer .logo-img {
    width: 100%;
    height: auto;
    max-width: 450px;
}

/* Fallback para texto (se necessário) */
.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
    color: var(--text-primary);
}

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

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

.nav-link.cta-nav {
    background: var(--primary);
    padding: 8px 20px;
    border-radius: 25px;
    color: var(--white);
}

.nav-link.cta-nav::after {
    display: none;
}

.nav-link.cta-nav:hover {
    background: #464541;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

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

.hero {
    height: 100vh;
    min-height: 720px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 200px 40px 160px;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    filter: saturate(1.05) brightness(0.92);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(14, 14, 14, 0.2) 0%, rgba(14, 14, 14, 0.7) 100%);
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(50, 49, 47, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1100px;
    width: 100%;
}

.hero-title {
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 25px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.3s;
    color: var(--white);
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 300;
    color: var(--secondary);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.6s;
}

.hero-description {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.9s;
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 1s forwards 1.2s;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes scrollDown {
    0% { top: 8px; opacity: 1; }
    100% { top: 28px; opacity: 0; }
}

/* ================================================
   PARALLAX BACKGROUNDS
   ================================================ */

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(135deg, rgba(50, 49, 47, 0.05) 0%, rgba(244, 236, 227, 0.05) 100%);
    z-index: 0;
}

.parallax-media {
    will-change: transform;
}

/* ================================================
   CARDS
   ================================================ */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(50, 49, 47, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 236, 227, 0.5) 0%, transparent 100%);
    opacity: 0;
    border-radius: 20px;
    transition: var(--transition-smooth);
    z-index: -1;
}

.card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(244, 236, 227, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(50, 49, 47, 0.18);
    background: rgba(255, 255, 255, 0.85);
}

.card:hover::before {
    opacity: 0.15;
}

.card:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #464541);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 8px 20px rgba(50, 49, 47, 0.2);
}

.card-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--secondary), transparent);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.card:hover .card-icon {
    transform: rotateY(360deg) scale(1.05);
    box-shadow: 0 12px 30px rgba(50, 49, 47, 0.3);
}

.card:hover .card-icon::before {
    opacity: 0.3;
}

.card-icon-large {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), #464541);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 10px 25px rgba(50, 49, 47, 0.2);
}

.card-icon-large::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--secondary), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.card:hover .card-icon-large {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 35px rgba(50, 49, 47, 0.3);
}

.card:hover .card-icon-large::before {
    opacity: 0.3;
}

.card-title {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.card-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ================================================
   MEDIA FRAMES
   ================================================ */

.media-frame {
    position: relative;
    width: 100%;
    min-height: 380px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(50, 49, 47, 0.12);
    background: linear-gradient(135deg, rgba(50, 49, 47, 0.08) 0%, rgba(244, 236, 227, 0.35) 100%);
    isolation: isolate;
}

.media-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 14, 14, 0.0) 20%, rgba(14, 14, 14, 0.25) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.6s ease;
    display: block;
}

.media-frame:hover::after {
    opacity: 1;
}

.media-frame:hover img {
    transform: scale(1.05);
    filter: saturate(1.05);
}

/* ================================================
   MINI GALLERY
   ================================================ */

.mini-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.gallery-thumb {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 0 !important;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* ================================================
   NÚMEROS SECTION
   ================================================ */

.section-numeros {
    position: relative;
    padding: 100px 0 100px;
    min-height: 600px;
    overflow: visible !important;

    /* Parallax Background Effect */
    background-image: url('images/bg-session1.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Parallax mobile - background animado via JS */
.mobile-parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-image: url('images/bg-session1.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

.mobile-parallax-bg-ambientes {
    background-image: url('images/bg-session2.png');
}

@media (max-width: 1024px) {
    .section-numeros {
        background-image: none !important;
        background-attachment: scroll;
        padding: 80px 0;
        min-height: 500px;
        overflow: hidden !important;
    }

    .section-ambientes {
        background-image: none !important;
        background-attachment: scroll;
        padding: 80px 0;
        min-height: 500px;
        overflow: hidden !important;
    }
}

.section-numeros::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(14, 14, 14, 0.65) 0%, rgba(14, 14, 14, 0.25) 100%);
    z-index: 0;
    pointer-events: none;
}

.section-numeros > .container {
    position: relative;
    z-index: 2;
}

.numero-destaque {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
    gap: 6px;
}

.numero-grande {
    font-size: clamp(64px, 11vw, 118px);
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}

.numero-plus {
    font-size: clamp(36px, 7vw, 80px);
    font-weight: 700;
    color: var(--secondary);
    margin-left: 4px;
}

.numero-label {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--white);
}

.section-numeros .section-text {
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin: 0 auto 28px;
}

.section-numeros .btn {
    margin-top: 18px;
}

/* ================================================
   TESTIMONIALS
   ================================================ */

.testimonials-carousel {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.testimonial-track {
    position: relative;
    min-height: 300px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s, transform 0.6s;
    pointer-events: none;
}

.testimonial-item.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
    pointer-events: auto;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(50, 49, 47, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(50, 49, 47, 0.08);
    transition: var(--transition-smooth);
}

.testimonial-content:hover {
    box-shadow: 0 30px 70px rgba(50, 49, 47, 0.12);
}

.quote-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
}

.testimonial-author span {
    font-size: 14px;
    color: rgba(14, 14, 14, 0.5);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(14, 14, 14, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active,
.dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* ================================================
   ESTATÍSTICAS SECTION
   ================================================ */

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(50, 49, 47, 0.1);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(50, 49, 47, 0.15);
    border-color: var(--primary);
}

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

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #464541);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
    color: var(--white);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(50, 49, 47, 0.2);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(50, 49, 47, 0.3);
}

.stat-number {
    font-size: clamp(48px, 8vw, 64px);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================================
   DIFERENCIAIS SECTION - CAROUSEL
   ================================================ */

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

.diferenciais-carousel {
    margin-top: 60px;
    padding: 20px 0;
}

.diferenciais-track {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.diferencial-card {
    flex: 1 1 250px;
    max-width: 350px;
    min-height: 380px;
}

/* ================================================
   FAQ
   ================================================ */

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

.faq-item {
    background: var(--surface);
    border: 1px solid rgba(50, 49, 47, 0.12);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 16px 36px rgba(50, 49, 47, 0.08);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #464541);
    font-size: 16px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ================================================
   CONTATO
   ================================================ */

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #464541);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.info-content p,
.info-content a {
    font-size: 16px;
    color: var(--text-secondary);
}

.info-content a:hover {
    color: var(--primary);
}

.contato-form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(50, 49, 47, 0.12);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(50, 49, 47, 0.08);
    transition: var(--transition-smooth);
}

.contato-form:hover {
    box-shadow: 0 30px 70px rgba(50, 49, 47, 0.12);
    border-color: rgba(50, 49, 47, 0.18);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(50, 49, 47, 0.15);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(50, 49, 47, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(14, 14, 14, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contato-form .btn {
    width: 100%;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    background: var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
    align-items: start;
}

.logo-footer .logo-img {
    filter: brightness(0) saturate(100%) invert(93%) sepia(9%) saturate(629%) hue-rotate(334deg) brightness(101%) contrast(94%);
}

.logo-footer .logo-text {
    color: var(--white);
}

.footer-slogan {
    margin-top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

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

.whatsapp-float,
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    z-index: 999;
    backdrop-filter: blur(10px);
}

.whatsapp-float {
    right: 30px;
    background: #25D366;
    color: var(--white);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.15);
    animation: none;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.scroll-to-top {
    right: 110px;
    background: var(--primary);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-to-top:hover {
    background: #464541;
    transform: translateY(-5px);
}

/* ================================================
   ANIMATIONS
   ================================================ */

.reveal-init {
    opacity: 0;
    transform: var(--reveal-initial, translateY(40px));
    will-change: opacity, transform;
}

.reveal-visible {
    opacity: 1 !important;
    transform: none !important;
}

/* Premium Cursor Enhancement */
.gallery-photo,
.btn,
.nav-link,
.faq-question,
.dot {
    cursor: pointer;
}

.gallery-photo:hover,
.btn:hover {
    cursor: pointer;
}

/* Smooth Image Loading */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* GLightbox Modal Fix - Simple & Clean */
.gslide-image img {
    max-height: 90vh !important;
    max-width: 90vw !important;
    object-fit: contain !important;
}

.gslide-description {
    background: rgba(50, 49, 47, 0.9) !important;
    backdrop-filter: blur(10px) !important;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .cards-grid,
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .navbar .logo-img {
        height: 60px;
    }

    .logo-footer .logo-img {
        max-width: 250px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #f4ece3 !important;
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 0;
        gap: 20px;
        transition: left 0.4s;
    }

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

    .nav-link {
        font-size: 18px;
    }

    .row {
        flex-direction: column;
        gap: 40px;
    }

    .row.reverse {
        flex-direction: column;
    }

    .hero {
        min-height: 620px;
        padding: 150px 20px 100px;
        align-items: flex-start;
    }

    .hero-media {
        background-size: cover;
        background-position: center center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        max-width: 100%;
    }

    .media-frame {
        min-height: 300px;
    }

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .whatsapp-float {
        right: 20px;
        bottom: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .scroll-to-top {
        right: 90px;
        bottom: 20px;
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .logo-footer .logo-img {
        max-width: 350px;
    }

    .mini-gallery,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-content {
        padding: 35px 25px;
    }

    .testimonial-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .navbar .logo-img {
        height: 50px;
    }

    .logo-footer .logo-img {
        max-width: 200px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-subtitle {
        font-size: 9px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 13px;
        width: 100%;
        max-width: 280px;
    }

    .card {
        padding: 28px 18px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-text {
        font-size: 15px;
    }

    .contato-form {
        padding: 25px 18px;
    }

    .numero-destaque {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }

    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero {
        min-height: 100vh;
        padding: 120px 18px 80px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .section-numeros {
        padding: 60px 18px;
        min-height: 450px;
    }

    .numero-grande {
        font-size: 64px;
    }

    .numero-plus {
        font-size: 50px;
    }

    .numero-label {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .testimonial-content {
        padding: 25px 18px;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 15px;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .scroll-to-top {
        right: 80px;
        bottom: 15px;
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .navbar {
        padding: 15px 0;
    }

    .section {
        padding: 50px 0;
    }

    .cards-grid {
        gap: 25px;
    }

    .gallery-grid {
        gap: 18px;
    }

    .footer-content {
        gap: 35px;
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-links ul,
    .footer-contact ul {
        align-items: center;
    }
}
