/* ========================================
   ESTÚDIO JELIANE RIEDIGER - STYLES
   ======================================== */

/* ========== VARIABLES ========== */
:root {
    --color-bg: #0a0a0a;
    --color-bg-light: #141414;
    --color-bg-card: rgba(20, 20, 20, 0.7);
    --color-gold: #D4AF37;
    --color-gold-light: #FFD700;
    --color-gold-gradient: linear-gradient(135deg, #D4AF37, #FFD700);
    --color-pink: #E91E8C;
    --color-pink-light: #FF6BB5;
    --color-pink-gradient: linear-gradient(135deg, #E91E8C, #FF6BB5);
    --color-text: #F5F5F5;
    --color-text-muted: #A0A0A0;
    --color-border: rgba(212, 175, 55, 0.2);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;

    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(212, 175, 55, 0.15);
    --glass-blur: 12px;

    --section-padding: 6rem 0;
    --container-max: 1200px;
    --nav-height: 80px;
    --border-radius: 12px;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
}

/* ========== RESET ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

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

body.preloader-active {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

::selection {
    background: var(--color-gold);
    color: var(--color-bg);
}

/* ========== UTILITIES ========== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only--focusable:focus {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: auto;
    height: auto;
    padding: 1rem 2rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: var(--color-gold);
    color: var(--color-bg);
    font-weight: 600;
}

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

.section__title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
    position: relative;
}

.section__title.text-center::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-gold-gradient);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section__subtitle {
    color: var(--color-text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin-bottom: 3rem;
}

.section__subtitle.text-center {
    margin-left: auto;
    margin-right: auto;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--color-gold-gradient);
    color: var(--color-bg);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

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

.btn--outline:hover {
    background: var(--color-gold-gradient);
    color: var(--color-bg);
    border-color: transparent;
    transform: translateY(-2px);
}

/* ========== GLASS CARD ========== */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all var(--transition-base);
}

/* ========== SCROLL ANIMATIONS ========== */
[data-animate] {
    opacity: 0;
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="scale-in"] {
    transform: scale(0.9);
}

[data-animate].is-visible {
    opacity: 1;
    transform: none;
}

/* ========== REVEAL TEXT ========== */
.reveal-text .reveal-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal-text.is-revealed .reveal-char {
    opacity: 1;
    transform: translateY(0);
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

.preloader.preloader--hidden {
    transform: translateY(-100%);
}

.preloader__content {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader__logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    animation: preloaderGlow 2s ease-in-out infinite, preloaderScale 1s ease-out forwards;
    margin-bottom: 2rem;
}

@keyframes preloaderGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6), 0 0 80px rgba(212, 175, 55, 0.3);
    }
}

@keyframes preloaderScale {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.preloader__bar-container {
    width: 200px;
    height: 3px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 3px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.preloader__bar {
    width: 0%;
    height: 100%;
    background: var(--color-gold-gradient);
    border-radius: 3px;
    animation: preloaderBar 2s ease-in-out forwards;
}

@keyframes preloaderBar {
    0% { width: 0%; }
    50% { width: 60%; }
    100% { width: 100%; }
}

.preloader__text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ========== CUSTOM CURSOR ========== */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease, opacity 0.3s ease;
    mix-blend-mode: difference;
    opacity: 0;
}

.cursor.is-active {
    opacity: 1;
}

.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.cursor-follower.is-active {
    opacity: 0.5;
}

.cursor.is-hover {
    transform: scale(2);
}

.cursor-follower.is-hover {
    width: 50px;
    height: 50px;
    border-color: var(--color-pink);
    opacity: 0.8;
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--color-gold-gradient);
    z-index: 1001;
    transition: width 0.1s linear;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
    padding: 0.5rem 0;
}

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

.header__logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: transform var(--transition-base);
}

.header__logo:hover img {
    transform: scale(1.1);
}

.header__nav {
    display: none;
}

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

.header__nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    position: relative;
    transition: color var(--transition-base);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
}

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

.header__nav-link:hover::after,
.header__nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header__cta {
    display: none;
    font-size: 0.8rem;
    padding: 10px 24px;
}

.header__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.header__hamburger span {
    width: 28px;
    height: 2px;
    background: var(--color-gold);
    transition: all var(--transition-base);
    transform-origin: center;
}

.header__hamburger.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.header__nav.is-open {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    animation: slideInRight 0.4s ease;
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.header__nav.is-open .header__nav-list {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
}

.header__nav.is-open .header__nav-link {
    font-size: 1.1rem;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--color-bg);
}

.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
                radial-gradient(ellipse at 20% 80%, rgba(233, 30, 140, 0.05) 0%, transparent 50%);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem 0;
}

.hero__logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: heroFloat 4s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero__subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero__scroll-indicator {
    color: var(--color-gold);
    animation: heroScroll 2s ease-in-out infinite;
}

@keyframes heroScroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* ========== SOBRE ========== */
.sobre__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.sobre__image-wrapper {
    position: relative;
}

.sobre__image-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    position: relative;
}

.sobre__image-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--color-gold);
    border-radius: var(--border-radius);
    z-index: -1;
}

.sobre__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.5;
}

.sobre__content .section__title {
    margin-bottom: 0.5rem;
}

.sobre__content .section__subtitle {
    margin-bottom: 1.5rem;
}

.sobre__text {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.sobre__text strong {
    color: var(--color-gold);
}

.sobre__quote {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--color-gold);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
}

.sobre__stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.sobre__stat {
    text-align: center;
}

.sobre__stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.sobre__stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
}

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

/* ========== SERVIÇOS ========== */
.servicos {
    background: var(--color-bg-light);
}

.servicos__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.servicos__card {
    text-align: center;
    transform-style: preserve-3d;
    transition: all var(--transition-base);
}

.servicos__card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.servicos__card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
}

.servicos__card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-gold-light);
}

.servicos__card-text {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.servicos__card-link:hover {
    color: var(--color-pink-light);
    gap: 0.8rem;
}

/* ========== GALERIA ========== */
.galeria__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    auto-rows: 200px;
}

.galeria__item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
}

.galeria__item--tall {
    grid-row: span 2;
}

.galeria__item--wide {
    grid-column: span 2;
}

.galeria__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-slow);
}

.galeria__placeholder-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

.galeria__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.galeria__overlay span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: #fff;
    border: 2px solid #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.galeria__item:hover .galeria__placeholder {
    transform: scale(1.1);
}

.galeria__item:hover .galeria__overlay {
    opacity: 1;
}

/* ========== EQUIPE ========== */
.equipe {
    background: var(--color-bg-light);
}

.equipe__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.equipe__card {
    text-align: center;
    transition: all var(--transition-base);
}

/* Last card alone: center it spanning full width */
.equipe__card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 220px;
    justify-self: center;
}

.equipe__card:hover {
    transform: translateY(-5px);
}

.equipe__photo-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    padding: 3px;
    background: var(--color-gold-gradient);
    transition: background var(--transition-base);
}

.equipe__card:hover .equipe__photo-wrapper {
    background: var(--color-pink-gradient);
}

.equipe__photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold);
}

.equipe__name {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.equipe__role {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== DEPOIMENTOS ========== */
.depoimentos__carousel {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.depoimentos__track {
    display: flex;
    transition: transform 0.5s ease;
}

.depoimentos__slide {
    min-width: 100%;
    padding: 0 1rem;
}

.depoimentos__card {
    text-align: center;
    padding: 3rem 2rem;
}

.depoimentos__quote-icon {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.depoimentos__text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.depoimentos__stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.depoimentos__author {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-gold-light);
}

.depoimentos__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.depoimentos__arrow {
    background: none;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-gold);
    transition: all var(--transition-base);
}

.depoimentos__arrow:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

.depoimentos__dots {
    display: flex;
    gap: 0.5rem;
}

.depoimentos__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
}

.depoimentos__dot.is-active {
    background: var(--color-gold);
    transform: scale(1.2);
}

/* ========== CONTATO ========== */
.contato {
    background: var(--color-bg-light);
}

.contato__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

.contato__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contato__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
}

.contato__item-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

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

.contato__item-link {
    color: var(--color-gold);
    font-size: 0.9rem;
    transition: color var(--transition-base);
}

.contato__item-link:hover {
    color: var(--color-pink-light);
}

.contato__cta {
    margin-top: 1rem;
    width: fit-content;
}

.contato__map {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    min-height: 300px;
}

.contato__map iframe {
    display: block;
    filter: grayscale(80%) invert(92%) contrast(83%);
    border-radius: var(--border-radius);
}

/* ========== FOOTER ========== */
.footer {
    background: #111;
    padding: 4rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer__logo {
    border-radius: 50%;
    margin-bottom: 1rem;
}

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

.footer__title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-base);
}

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

.footer__social-links {
    display: flex;
    gap: 1rem;
}

.footer__social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    color: var(--color-text-muted);
    transition: all var(--transition-base);
}

.footer__social-links a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-3px);
}

.footer__divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.footer__copyright {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.footer__developer {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.7rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}

.footer__developer a {
    color: var(--color-gold);
    transition: color var(--transition-base);
}

.footer__developer a:hover {
    color: var(--color-pink-light);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.is-open {
    display: flex;
    opacity: 1;
}

.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: color var(--transition-base);
}

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

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    padding: 1rem;
    transition: color var(--transition-base);
}

.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }

.lightbox__prev:hover,
.lightbox__next:hover {
    color: var(--color-gold);
}

.lightbox__content {
    max-width: 90%;
    max-height: 90vh;
}

.lightbox__image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--border-radius);
}

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

/* Tablet */
@media (min-width: 768px) {
    .hero__ctas {
        flex-direction: row;
        justify-content: center;
    }

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

    .servicos__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .galeria__grid {
        grid-template-columns: repeat(3, 1fr);
        auto-rows: 220px;
    }

    .equipe__grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 700px;
    }

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

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

/* Desktop */
@media (min-width: 1024px) {
    .header__nav {
        display: block;
    }

    .header__cta {
        display: inline-flex;
    }

    .header__hamburger {
        display: none;
    }

    .equipe__grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1000px;
    }

    .equipe__card:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
    }

    .galeria__grid {
        grid-template-columns: repeat(4, 1fr);
        auto-rows: 250px;
    }

    .galeria__item--wide {
        grid-column: span 2;
    }
}

/* Wide */
@media (min-width: 1280px) {
    .container {
        padding: 0 1rem;
    }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }

    .cursor,
    .cursor-follower {
        display: none !important;
    }
}

/* Touch devices - hide custom cursor */
@media (hover: none) and (pointer: coarse) {
    .cursor,
    .cursor-follower {
        display: none !important;
    }
}
