/* ============================================================
   LEANDRINHO DETAIL — Premium Auto Detailing
   Theme: Black + Gold
   ============================================================ */

/* ---- Variables ---- */
:root {
    --gold:        #FFD700;
    --gold-dark:   #B8860B;
    --gold-light:  #FFE566;
    --bg:          #0a0a0a;
    --bg-2:        #0f0f0f;
    --bg-card:     #121212;
    --bg-card-2:   #181818;
    --border:      rgba(255, 215, 0, 0.12);
    --text:        #ffffff;
    --text-muted:  #999999;
    --text-light:  #cccccc;
    --radius:      12px;
    --radius-lg:   20px;
    --shadow:      0 4px 30px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 24px rgba(255, 215, 0, 0.2);
    --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-head:   'Playfair Display', serif;
    --font-body:   'Inter', sans-serif;
    --max-w:       1200px;
    --section-pad: 100px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

/* ---- Utilities ---- */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: var(--section-pad) 0; }
.text-gold {
    background: linear-gradient(135deg, var(--gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section__title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}
.section__subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}
.section__header {
    text-align: center;
    margin-bottom: 64px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.btn--primary {
    background: linear-gradient(135deg, var(--gold), #FFA500);
    color: #000;
    border-color: transparent;
}
.btn--primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn--outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn--outline:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-2px);
}
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---- Animations ---- */
.fade-in, .fade-in-left, .fade-in-right {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
/* Clip horizontal animations so they don't cause scrollbar */
.fade-in-left  { transform: translateX(-24px) translateY(0); }
.fade-in-right { transform: translateX(24px) translateY(0); }
.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0);
}
/* Sections clip their children's overflow to prevent horizontal scroll */
section { overflow-x: clip; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: 2px;
    flex-shrink: 0;
}
/* Logo como imagem (quando o admin salvar uma logo) */
.nav__logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}
.logo-main { color: var(--text); }
.logo-sep  { color: var(--gold); font-size: 0.9rem; }
.logo-sub  { color: var(--gold); }
.nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.nav__link {
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: 6px;
    transition: var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--gold); }
.nav__link--admin {
    font-size: 0.78rem;
    color: var(--text-muted);
    opacity: 0.6;
}
.nav__link--admin:hover { opacity: 1; color: var(--gold); }
.nav__cta { margin-left: 8px; }
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    margin-left: auto;
}
.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.65) 60%,
        rgba(0,0,0,0.4) 100%
    );
}
.hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: rgba(255, 215, 0, 0.05);
    backdrop-filter: blur(10px);
}
.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero__title {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease forwards;
}
.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 520px;
    animation: fadeUp 0.8s 0.15s ease both;
}
.hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeUp 0.8s 0.3s ease both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    margin: 0 auto;
    animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 0;
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat { text-align: center; }
.stat__val {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat__star { color: var(--gold); font-size: 1.8rem; }
.stat__label {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about__img-wrap {
    position: relative;
}
.about__img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.about__img-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--gold), #FFA500);
    color: #000;
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-gold);
}
.about__img-badge strong {
    display: block;
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}
.about__img-badge small { font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; }
.about__img-badge2 {
    position: absolute;
    top: 20px;
    right: -16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 12px 16px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    box-shadow: var(--shadow);
}
.about__content p {
    color: var(--text-light);
    margin-bottom: 16px;
}
.about__checks {
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about__checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}
.about__checks li i { color: var(--gold); font-size: 1rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    background: var(--bg-2);
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}
.service-card:hover::before { opacity: 1; }
.service-card--featured {
    background: linear-gradient(135deg, #1a1500, var(--bg-card));
    border-color: rgba(255, 215, 0, 0.35);
}
.service-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--gold), #FFA500);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 50px;
}
.service-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-card__icon {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}
.service-card h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
}
.service-card__price {
    margin-bottom: 20px;
}
.price-from {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.price-val {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
}
.service-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
    margin-top: auto;
}
.service-card__btn:hover, .service-card--featured .service-card__btn {
    background: linear-gradient(135deg, var(--gold), #FFA500);
    border-color: transparent;
    color: #000;
}

/* ============================================================
   GALLERY / BEFORE & AFTER
   ============================================================ */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.ba-slider {
    position: relative;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
    aspect-ratio: 4/3;
}
.ba-before, .ba-after {
    position: absolute;
    inset: 0;
}
.ba-before img, .ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.ba-after {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.05s;
}
.ba-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 50px;
}
.ba-tag--after {
    left: auto;
    right: 10px;
    background: linear-gradient(135deg, var(--gold), #FFA500);
    color: #000;
}
.ba-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ba-line {
    width: 2px;
    flex: 1;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(255,215,0,0.5);
}
.ba-btn {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.9rem;
    box-shadow: 0 0 12px rgba(255,215,0,0.5);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.gallery-item__label {
    padding: 14px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-light);
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    text-align: center;
}
.gallery__cta { text-align: center; }

/* ============================================================
   FEATURES
   ============================================================ */
.features {
    background: var(--bg-2);
}
.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.feature {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}
.feature:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.feature__icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin: 0 auto 20px;
    transition: var(--transition);
}
.feature:hover .feature__icon {
    background: rgba(255, 215, 0, 0.18);
}
.feature h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.feature p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}
.testimonial:hover {
    border-color: rgba(255, 215, 0, 0.25);
    transform: translateY(-3px);
}
.testimonial__stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.testimonial p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial__avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    flex-shrink: 0;
}
.testimonial__author strong {
    display: block;
    font-size: 0.9rem;
}
.testimonial__author small {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.testimonials__cta { text-align: center; }

/* ============================================================
   BOOKING
   ============================================================ */
.booking {
    background: var(--bg-2);
}
.booking__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.booking__info p {
    color: var(--text-light);
    margin-bottom: 32px;
}
.booking__contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.booking__contact {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.booking__contact:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: var(--bg-card-2);
}
.booking__contact i {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}
.booking__contact strong { display: block; font-size: 0.88rem; }
.booking__contact span  { font-size: 0.82rem; color: var(--text-muted); }
.booking__form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.booking__form h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text);
}
.form__group {
    margin-bottom: 18px;
}
.form__group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}
.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text);
    font-size: 0.92rem;
    transition: var(--transition);
    appearance: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.08);
}
.form__group select { cursor: pointer; }
.form__group textarea { resize: vertical; }
.form__group input::placeholder,
.form__group textarea::placeholder { color: #555; }
.form__group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.7); }
.form__note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}
.location__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.location__info h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.location__address {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.location__address i { color: var(--gold); }
.location__hours h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.location__hours h4 i { color: var(--gold); }
.location__hours ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}
.location__hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--text-muted);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #050505;
    border-top: 1px solid var(--border);
    padding: 72px 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}
.footer__logo {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.footer__brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 260px;
}
.footer__socials {
    display: flex;
    gap: 12px;
}
.footer__socials a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    transition: var(--transition);
}
.footer__socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255,215,0,0.05);
}
.footer__links h4, .footer__contact h4 {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.footer__links ul, .footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__links li a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition);
}
.footer__links li a:hover { color: var(--gold); padding-left: 4px; }
.footer__contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
}
.footer__contact li i { color: var(--gold); width: 16px; }
.footer__bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer__dev { display: flex; align-items: center; gap: 4px; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    overflow: visible;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-float__tooltip {
    position: absolute;
    right: 68px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 6px;
    opacity: 0;
    transform: translateX(8px);
    transition: var(--transition);
    pointer-events: none;
}
.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   BOOKING FLOAT BUTTON (acima do WhatsApp)
   ============================================================ */
.booking-float {
    position: fixed;
    bottom: 100px; /* 16px + 56px (WhatsApp) + 28px (gap) */
    right: 28px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background: #0f0f0f;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
    overflow: visible;
}
.booking-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.4);
    background: #1a1a00;
}
.booking-float__tooltip {
    position: absolute;
    right: 64px;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 6px;
    opacity: 0;
    transform: translateX(8px);
    transition: var(--transition);
    pointer-events: none;
}
.booking-float:hover .booking-float__tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   BOOKING OVERLAY (iframe que sobrepõe o site)
   ============================================================ */
.booking-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    background: #0a0a0a;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.booking-overlay.open {
    transform: translateY(0);
}
.booking-overlay__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: #111;
    border-bottom: 1px solid rgba(255,215,0,0.15);
    flex-shrink: 0;
    height: 52px;
}
.booking-overlay__bar span {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--gold);
}
.booking-overlay__close {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.booking-overlay__close:hover { background: rgba(255,215,0,0.15); color: var(--gold); border-color: var(--gold); }
.booking-overlay iframe {
    flex: 1;
    width: 100%;
    border: none;
}

/* Nav link Agendar */
.nav__link--agendar { color: var(--gold) !important; font-weight: 700 !important; }
.nav__link--agendar i { margin-right: 4px; }


/* back-to-top removido — dois botões flutuantes são suficientes */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .services__grid   { grid-template-columns: repeat(2, 1fr); }
    .features__grid   { grid-template-columns: repeat(2, 1fr); }
    .footer__grid     { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .about__grid      { gap: 40px; }
    .booking__grid    { gap: 40px; }
    .location__grid   { gap: 32px; }
}

@media (max-width: 900px) {
    :root { --section-pad: 70px; }
    .stats__grid        { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .gallery__grid      { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; margin-bottom: 48px; }
    .testimonials__grid { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; margin-bottom: 48px; }
    .about__grid        { grid-template-columns: 1fr; gap: 40px; }
    .about__img-wrap    { max-width: 100%; margin-inline: 0; }
    .about__img-badge2  { right: 0; }
    .booking__grid      { grid-template-columns: 1fr; gap: 40px; }
    .location__grid     { grid-template-columns: 1fr; }
    .features__grid     { grid-template-columns: repeat(2, 1fr); max-width: 600px; margin-inline: auto; }
}

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

    /* ---------- NAV MOBILE ---------- */
    .nav {
        gap: 0;
        justify-content: space-between;
    }
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 80vw);
        height: 100vh;
        background: var(--bg-card);
        border-left: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 32px;
        gap: 4px;
        transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
        z-index: 999;
        overflow-y: auto;
    }
    .nav__menu.open { right: 0; }
    .nav__link {
        padding: 12px 16px;
        font-size: 1rem;
        width: 100%;
        border-radius: 8px;
    }
    .nav__link:hover { background: rgba(255,215,0,0.06); }
    .nav__cta    { display: none; }
    .nav__toggle { display: flex; margin-left: auto; }

    /* ---------- GRIDS ---------- */
    .services__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
    }
    .features__grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        gap: 16px;
    }
    .hero__btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .hero__btns .btn { width: 100%; justify-content: center; }
    .footer__grid   { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* ---------- BOOKING FORM ---------- */
    .booking__form-wrap { padding: 28px 20px; }
    .booking__grid { gap: 32px; }

    /* ---------- ABOUT — full width mobile ---------- */
    .about__img-wrap {
        margin-left: -24px;
        margin-right: -24px;
        width: calc(100% + 48px);
        max-width: none;
    }
    .about__img-wrap img {
        height: 420px;
        border-radius: 0;
    }

    /* ---------- STATS ---------- */
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat__val   { font-size: clamp(1.8rem, 5vw, 2.4rem); }
}

@media (max-width: 480px) {
    :root { --section-pad: 52px; }

    .container { padding: 0 16px; }

    /* Stats */
    .stats__grid  { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat__val    { font-size: 1.8rem; }
    .stat__label  { font-size: 0.72rem; }

    /* Hero */
    .hero__title  { font-size: clamp(2rem, 8vw, 2.6rem); }
    .hero__subtitle { font-size: 0.95rem; }

    /* About — full width mantido + altura menor no mobile pequeno */
    .about__img-wrap {
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
    }
    .about__img-wrap img { height: 320px; }
    .about__img-badge    { bottom: -12px; left: 4px; padding: 14px 16px; }
    .about__img-badge2   { top: 12px; right: 4px; font-size: 0.72rem; padding: 8px 10px; }

    /* Nav logo smaller on mobile */
    .nav__logo { font-size: 1.1rem; }
    .nav__logo-img { height: 36px; }

    /* Section titles */
    .section__title   { font-size: 1.65rem; }
    .section__header  { margin-bottom: 40px; }

    /* Services — 1 coluna full width */
    .services__grid { max-width: 100%; }

    /* Features — 1 coluna no mobile pequeno */
    .features__grid { grid-template-columns: 1fr; max-width: 100%; }

    /* Booking */
    .booking__form-wrap { padding: 20px 14px; }
    .booking__grid      { gap: 24px; }
    .testimonials__cta .btn { width: 100%; justify-content: center; }

    /* Footer */
    .footer__grid { gap: 24px; }
    .footer__bottom { gap: 6px; }

    /* Floating buttons (mobile) */
    .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; font-size: 1.4rem; }
    .booking-float  { bottom: 80px; right: 16px; width: 46px; height: 46px; font-size: 1.1rem; }

    /* Booking page */
    .bk-steps           { gap: 0; }
    .bk-step-line       { max-width: 30px; }
    .bk-step__label     { font-size: 0.6rem; }
    .bk-services-grid   { grid-template-columns: 1fr 1fr; gap: 10px; }
    .bk-slots-grid      { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   CARIMBO DE DESCONTO — service cards (landing + booking)
   ============================================================ */

/* Carimbo circular no canto superior direito do card */
.service-card__desconto {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 58px;
    height: 58px;
    background: #e11d48;
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.5px;
    box-shadow: 0 3px 10px rgba(225,29,72,.5);
    z-index: 2;
    animation: badge-pulse 2.5s ease-in-out infinite;
}
.service-card__desconto small {
    font-size: .5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 1px;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 3px 10px rgba(225,29,72,.5); }
    50%       { transform: scale(1.07); box-shadow: 0 5px 18px rgba(225,29,72,.7); }
}

/* Preço riscado */
.price-riscado {
    text-decoration: line-through;
    opacity: .55;
    font-size: .78rem;
    color: var(--gold-dark);
}

/* Carimbo no booking.html */
.bk-desconto-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e11d48;
    color: #fff;
    font-size: .62rem;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(225,29,72,.5);
    animation: badge-pulse 2.5s ease-in-out infinite;
}
.bk-preco-de {
    display: block;
    text-decoration: line-through;
    opacity: .5;
    font-size: .7rem;
    margin-bottom: 1px;
}
.bk-preco-por {
    display: block;
    color: var(--gold);
    font-weight: 700;
    font-size: .95rem;
}

/* Temas — Dia das Mães */
.theme-diadasmaes .hero__title .text-gold { color: #f472b6; }
.theme-diadasmaes .btn--primary           { background: linear-gradient(135deg,#be185d,#ec4899); }

/* Temas — Dia dos Pais */
.theme-diadospais .hero__title .text-gold { color: #60a5fa; }
.theme-diadospais .btn--primary           { background: linear-gradient(135deg,#1d4ed8,#3b82f6); }
