/* ============================================================
   BELLA ESTÉTICA — Demo
   Estilo: Editorial + Booking Híbrido (rosé premium)
   ============================================================ */

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

:root {
    --bg:         #fdfbf9;
    --bg-alt:     #faf0ee;
    --bg-dark:    #3d2020;
    --border:     #ecdfda;
    --text:       #2a1f1d;
    --text-soft:  #7a6a65;
    --text-dim:   #a89a94;
    --primary:    #d4837f;
    --primary-2:  #b8696a;
    --accent:     #c9a86a;
    --wa:         #25d366;
    --radius:     12px;
    --t:          .4s cubic-bezier(.4,0,.2,1);
    --t-slow:     .8s cubic-bezier(.22,1,.36,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    letter-spacing: -.01em;
    line-height: 1.15;
    color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 3rem); }
h3 { font-size: 1.4rem; }

em {
    font-style: italic;
    color: var(--primary);
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; position: relative; }

/* ==== TOPBAR ==== */
.topbar {
    background: var(--bg-dark);
    color: var(--bg);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}
.topbar-track {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
}
.topbar-track span {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    color: rgba(253,251,249,.85);
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ==== BUTTONS ==== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: all var(--t);
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 50px;
    position: relative;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-2);
    border-color: var(--primary-2);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 131, 127, .35);
}
.btn-outline {
    background: transparent;
    border-color: var(--text);
    color: var(--text);
}
.btn-outline:hover {
    background: var(--text);
    color: var(--bg);
    transform: translateY(-2px);
}
.btn-whatsapp {
    background: var(--wa);
    color: #fff;
    border-color: var(--wa);
}
.btn-whatsapp:hover {
    background: #1eb955;
    border-color: #1eb955;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, .35);
}
.btn-lg { padding: 17px 36px; font-size: 13px; }
.btn-sm { padding: 11px 22px; font-size: 11px; }

/* ==== HEADER ==== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 22px 0;
    background: rgba(253, 251, 249, .92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--t);
}
.header.scrolled {
    padding: 14px 0;
    background: rgba(253, 251, 249, .98);
    border-bottom-color: var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    flex-shrink: 0;
}
.logo-script {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 600;
    line-height: .8;
}
.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .35em;
    color: var(--text);
    margin-top: 2px;
}

.nav {
    display: flex;
    gap: 32px;
    margin-left: auto;
}
.nav a {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: .12em;
    transition: color var(--t);
    position: relative;
    padding: 6px 0;
}
.nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--primary);
    transition: width var(--t);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.header-cta { padding: 11px 24px; font-size: 11px; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}
.menu-toggle span {
    width: 26px; height: 2px;
    background: var(--text);
    transition: all var(--t);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==== HERO EDITORIAL ==== */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background: var(--bg);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.hero-text { max-width: 560px; }

.hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.05;
    margin-bottom: 28px;
    font-weight: 400;
}
.hero-title em {
    color: var(--primary);
    font-style: italic;
    font-weight: 500;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-soft);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 4px;
}
.trust-item strong i {
    font-size: .9rem;
    color: var(--accent);
}
.trust-item span {
    font-size: 11px;
    color: var(--text-soft);
    letter-spacing: .05em;
}
.trust-divider {
    width: 1px;
    height: 30px;
    background: var(--border);
}

/* Imagem do hero */
.hero-image {
    position: relative;
}
.hero-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 200px 200px 12px 12px;
    position: relative;
    z-index: 1;
}
.hero-image-frame {
    position: absolute;
    inset: 20px -20px -20px 20px;
    border: 1px solid var(--primary);
    border-radius: 200px 200px 12px 12px;
    z-index: 0;
}
.hero-image-badge {
    position: absolute;
    top: 40px; right: -20px;
    background: var(--bg);
    color: var(--text);
    padding: 12px 22px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    z-index: 2;
}

/* ==== MARQUEE SERVIÇOS ==== */
.marquee {
    background: var(--bg-alt);
    padding: 30px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.marquee-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: marquee 35s linear infinite;
    align-items: center;
}
.marquee-track span {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text);
    font-style: italic;
    font-weight: 400;
    flex-shrink: 0;
}
.marquee-track .dot {
    font-size: 1rem !important;
    color: var(--primary) !important;
    font-style: normal !important;
}

/* ==== MANIFESTO ==== */
.manifesto {
    padding: 130px 0;
    text-align: center;
    background: var(--bg);
}
.manifesto-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    line-height: 1.5;
    color: var(--text);
    font-weight: 400;
    max-width: 780px;
    margin: 0 auto 30px;
}
.manifesto-text em {
    color: var(--primary);
    font-style: italic;
    font-weight: 500;
}
.manifesto-sign {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    color: var(--text-soft);
}

/* ==== SECTION HEAD ==== */
.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 70px;
}
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--text-soft); font-size: 1.02rem; }

/* ==== SERVIÇOS ==== */
.services-section { background: var(--bg-alt); }
.services-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
}
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.service-block.reverse {
    direction: rtl;
}
.service-block.reverse > * {
    direction: ltr;
}
.service-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.service-block:hover .service-image img {
    transform: scale(1.04);
}
.service-content { position: relative; }
.service-num {
    position: absolute;
    top: -20px; left: -20px;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-style: italic;
    font-weight: 400;
    color: var(--primary);
    opacity: .25;
    line-height: 1;
    pointer-events: none;
}
.service-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 500;
}
.service-content p {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}
.service-includes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.service-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 14px;
}
.service-includes i {
    color: var(--primary);
    font-size: 11px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 131, 127, .12);
    border-radius: 50%;
    flex-shrink: 0;
}
.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.service-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text);
}

/* ==== GALERIA ==== */
.gallery-section { background: var(--bg); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 14px;
}
.gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-grid .gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
    height: 100%;
    cursor: zoom-in;
    border-radius: 8px;
    background: var(--bg-alt);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(61,32,32,.75) 100%);
    opacity: 0;
    transition: opacity var(--t);
    pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-label {
    position: absolute;
    bottom: 24px; left: 24px;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--t) .1s;
    pointer-events: none;
}
.gallery-item:hover .gallery-label {
    opacity: 1;
    transform: translateY(0);
}

/* ==== SOBRE A FUNDADORA ==== */
.about-section { background: var(--bg-alt); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    align-items: center;
}
.about-image { position: relative; }
.about-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 12px 12px 200px 200px;
    position: relative;
    z-index: 1;
}
.about-frame {
    position: absolute;
    top: -18px; left: -18px;
    right: 18px; bottom: 18px;
    border: 1px solid var(--primary);
    border-radius: 12px 12px 200px 200px;
    z-index: 0;
}
.about-badge {
    position: absolute;
    bottom: 30px; right: -20px;
    width: 100px;
    height: 100px;
    background: var(--bg);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}
.about-badge span:first-child {
    font-size: 12px;
    color: var(--primary);
    line-height: 1;
}
.about-badge strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text);
    line-height: 1;
    font-weight: 500;
}
.about-badge span:last-child {
    font-size: 10px;
    color: var(--text-soft);
    letter-spacing: .15em;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 2px;
}

.about-content h2 { margin-bottom: 26px; }
.about-content p {
    color: var(--text-soft);
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.85;
}
.about-content p strong {
    color: var(--text);
    font-weight: 600;
}

.about-signature {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 32px 0 36px;
    padding-left: 20px;
    border-left: 2px solid var(--primary);
}
.signature-script {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--text);
    font-weight: 600;
    line-height: 1;
}
.signature-role {
    font-size: 11px;
    color: var(--text-soft);
    letter-spacing: .15em;
    text-transform: uppercase;
}

/* ==== PROFISSIONAIS ==== */
.team-section { background: var(--bg); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.team-card { text-align: center; }
.team-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 22px;
    aspect-ratio: 3/4;
    border-radius: 12px;
    background: var(--bg-alt);
}
.team-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.team-card:hover .team-img img { transform: scale(1.06); }
.team-social {
    position: absolute;
    bottom: 20px; left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all var(--t);
}
.team-card:hover .team-social {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.team-social a {
    width: 42px; height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253,251,249,.95);
    color: var(--text);
    border-radius: 50%;
    font-size: 15px;
    transition: all var(--t);
    backdrop-filter: blur(10px);
}
.team-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}
.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
    font-weight: 500;
}
.team-role {
    color: var(--primary);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
}

/* ==== ANTES / DEPOIS ==== */
.beforeafter-section { background: var(--bg-alt); }
.ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}
.ba-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ba-slider {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 12px;
    cursor: ew-resize;
    user-select: none;
    background: var(--bg-dark);
    box-shadow: 0 20px 50px rgba(61,32,32,.15);
}
.ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.ba-after-wrap {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    pointer-events: none;
}
.ba-after-wrap .ba-after {
    width: 100vw;
    max-width: none;
    position: absolute;
    top: 0; left: 0;
    height: 100%;
}
.ba-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: #fff;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0,0,0,.3);
}
.ba-handle-line {
    position: absolute;
    top: 0; bottom: 0;
    width: 2px;
    background: #fff;
}
.ba-handle-btn {
    position: relative;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--primary);
    font-size: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
    z-index: 1;
}
.ba-label {
    position: absolute;
    top: 20px;
    padding: 6px 14px;
    background: rgba(61,32,32,.8);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    z-index: 2;
    pointer-events: none;
}
.ba-label-before { left: 20px; }
.ba-label-after { right: 20px; }
.ba-caption {
    text-align: center;
    font-size: 13px;
    color: var(--text-soft);
    font-style: italic;
    letter-spacing: .05em;
}

/* ==== DEPOIMENTOS ==== */
.testimonials-section { background: var(--bg); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial {
    background: var(--bg-alt);
    border-radius: 12px;
    padding: 40px 36px;
    transition: all var(--t);
    position: relative;
}
.testimonial:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(61,32,32,.08);
}
.testimonial .stars {
    color: var(--accent);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}
.testimonial p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 26px;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}
.testimonial footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}
.testimonial .avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    flex-shrink: 0;
}
.testimonial footer strong {
    display: block;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}
.testimonial footer span {
    font-size: 12px;
    color: var(--text-soft);
}

/* ==== FAQ ==== */
.faq-section { background: var(--bg-alt); }
.faq-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0;
    transition: all var(--t);
    overflow: hidden;
}
.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(212,131,127,.1);
}
.faq-item summary {
    padding: 24px 32px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    list-style: none;
    position: relative;
    transition: color var(--t);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
    transition: transform var(--t);
}
.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-item summary:hover { color: var(--primary); }
.faq-item p {
    padding: 0 32px 26px;
    color: var(--text-soft);
    line-height: 1.8;
    font-size: 14px;
}

/* ==== INFO ==== */
.info-section { background: var(--bg); }
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.info-card {
    background: var(--bg-alt);
    border-radius: 12px;
    padding: 42px 34px;
    transition: all var(--t);
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(61,32,32,.08);
}
.info-icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    color: var(--primary);
    border-radius: 50%;
    font-size: 18px;
    margin-bottom: 24px;
}
.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 22px;
    font-weight: 500;
}
.hours li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-soft);
}
.hours li:last-child { border-bottom: none; }
.hours li span:last-child {
    color: var(--text);
    font-weight: 600;
}
.hours .closed { color: var(--text-dim) !important; }

.address {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 24px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-info a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-soft);
    font-size: 14px;
    transition: color var(--t);
}
.contact-info a:hover { color: var(--primary); }
.contact-info i {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    color: var(--primary);
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}

/* ==== CTA FINAL ==== */
.cta-final {
    position: relative;
    padding: 120px 0;
    text-align: center;
    background: var(--bg-dark);
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212,131,127,.2) 0%, transparent 65%);
}
.cta-final-inner { position: relative; z-index: 1; }
.cta-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 24px;
}
.cta-final h2 {
    color: var(--bg);
    margin-bottom: 24px;
    font-weight: 400;
    font-size: clamp(1.8rem, 4vw, 3rem);
}
.cta-final h2 em {
    color: var(--primary);
    font-style: italic;
}
.cta-final p {
    color: rgba(253,251,249,.75);
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.cta-final p strong { color: var(--bg); font-weight: 600; }

/* ==== FOOTER ==== */
.footer {
    background: #2a1a1a;
    padding: 80px 0 0;
    color: rgba(253,251,249,.7);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 22px; }
.footer-brand .logo-script { color: var(--primary); }
.footer-brand .logo-text { color: rgba(253,251,249,.9); }
.footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 26px;
    max-width: 320px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.05);
    color: rgba(253,251,249,.7);
    border-radius: 50%;
    font-size: 14px;
    transition: all var(--t);
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}
.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--bg);
    margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
    color: rgba(253,251,249,.6);
    font-size: 13px;
    transition: all var(--t);
}
.footer-col a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 26px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom p {
    font-size: 12px;
    color: rgba(253,251,249,.4);
    letter-spacing: .05em;
}
.footer-bottom a {
    color: var(--primary);
    font-weight: 500;
}

/* ==== WHATSAPP FLUTUANTE ==== */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wa);
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0 12px 40px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: all var(--t);
}
.whatsapp-float:hover {
    transform: scale(1.08);
    background: #1eb955;
}

/* ==== REVEAL ==== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   LIGHTBOX   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(61,32,32,.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.open {
    opacity: 1;
    visibility: visible;
}
.lightbox-figure {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    transform: scale(.95);
    transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.lightbox.open .lightbox-figure { transform: scale(1); }
.lightbox-figure img {
    max-width: 100%;
    max-height: calc(100vh - 160px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lightbox-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
}
.lightbox-counter {
    color: rgba(253,251,249,.6);
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 12px;
    letter-spacing: .2em;
    font-weight: 500;
}
.lightbox-counter #lightboxCurrent {
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--t);
    z-index: 2;
}
.lightbox-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 46px; height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    border-radius: 50%;
    font-size: 17px;
    cursor: pointer;
    transition: all var(--t);
    z-index: 2;
}
.lightbox-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}
body.lightbox-open { overflow: hidden; }

/* ==== RESPONSIVO ==== */
@media (max-width: 1024px) {
    .section { padding: 90px 0; }
    .hero-inner { gap: 50px; }
    .about-grid { gap: 60px; }

    .service-block { gap: 50px; }
    .service-block.reverse { direction: ltr; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-grid .gallery-item:nth-child(1),
    .gallery-grid .gallery-item:nth-child(4) { grid-column: span 2; }

    .footer-grid { gap: 40px; }
}

@media (max-width: 860px) {
    .header-cta { display: none; }
    .menu-toggle { display: flex; }

    .nav {
        position: fixed;
        top: 0; right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 28px;
        margin: 0;
        transition: right var(--t);
        border-left: 1px solid var(--border);
        box-shadow: -20px 0 60px rgba(0,0,0,.08);
        z-index: 999;
    }
    .nav.open { right: 0; }
    .nav a { font-size: 16px; padding: 8px 0; color: var(--text); }

    .hero-inner { grid-template-columns: 1fr; gap: 50px; }
    .hero-image { max-width: 480px; margin: 0 auto; }

    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-image { max-width: 460px; margin: 0 auto; }

    .service-block { grid-template-columns: 1fr; gap: 32px; }
    .service-image { max-width: 500px; margin: 0 auto; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }

    .lightbox { padding: 50px 20px; }
    .lightbox-nav { width: 42px; height: 42px; font-size: 15px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; }
    .lightbox-figure img { max-height: calc(100vh - 140px); }
}

@media (max-width: 600px) {
    .section { padding: 70px 0; }
    .container { padding: 0 20px; }

    .hero { padding: 50px 0 60px; }
    .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); }
    .hero-sub { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: stretch; margin-bottom: 40px; }
    .hero-actions .btn { width: 100%; }
    .hero-trust { gap: 20px; justify-content: center; padding-top: 24px; }
    .trust-divider { display: none; }
    .trust-item strong { font-size: 1.5rem; }

    .manifesto { padding: 80px 0; }

    .services-list { gap: 70px; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    .gallery-grid .gallery-item:nth-child(1),
    .gallery-grid .gallery-item:nth-child(4) { grid-column: span 1; }

    .team-grid,
    .testimonials-grid,
    .info-grid,
    .ba-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; text-align: center; }

    .whatsapp-float { width: 52px; height: 52px; font-size: 24px; bottom: 18px; right: 18px; }
    .lightbox-caption { font-size: 1rem; }
}