/* ========================================
   LP Pulpito Premium — Dark Luxury v2
   Bodoni Moda + Jost · 4 sections only
   ======================================== */

:root {
    --deep:         #070709;
    --bg-card:      #0e0e12;

    --gold:         #BF9B30;
    --gold-light:   #d4b244;
    --gold-dim:     rgba(191, 155, 48, 0.35);
    --gold-border:  rgba(191, 155, 48, 0.18);

    --ivory:        #F5EDD8;
    --text-muted:   rgba(245, 237, 216, 0.58);
    --text-soft:    rgba(245, 237, 216, 0.80);

    --font-display: 'Bodoni Moda', Georgia, serif;
    --font-body:    'Jost', system-ui, sans-serif;

    --trans:        all 0.3s ease;
    --trans-slow:   all 0.6s ease;

    --shadow-gold:  0 8px 32px rgba(191, 155, 48, 0.22);
    --shadow-dark:  0 20px 60px rgba(0, 0, 0, 0.55);
}

/* ========================================
   Reset & Base
   ======================================== */

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

html {
    scroll-behavior: smooth;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ivory);
    background: var(--deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body { max-width: 100%; }

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: var(--trans); }
ul  { list-style: none; }

/* ========================================
   Utility
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Navbar
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: rgba(7, 7, 9, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--gold-border);
    padding: 13px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 54px;
    transition: height 0.4s ease;
}

.navbar.scrolled .logo img {
    height: 44px;
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 620px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #000;
}

/* Background image with Ken Burns animation */
.hero-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('../assets/hero-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Directional very subtle overlay for text readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        110deg,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.85) 45%,
        rgba(0, 0, 0, 0.40) 70%,
        transparent 95%
    );
}

/* Cinematic grain texture */
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 100px;
    max-width: 720px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Eyebrow */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-eyebrow > span:not(.eyebrow-dot) {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

.eyebrow-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
    opacity: 0.65;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 700;
    line-height: 1.0;
    color: var(--ivory);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title em {
    font-style: italic;
    display: block;
    /* Gradient gold-to-ivory — luxury effect */
    color: var(--gold); /* fallback */
    background: linear-gradient(135deg, #BF9B30 0%, #d4b244 35%, #F5EDD8 72%, #c9a042 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.hero-desc {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 36px;
    letter-spacing: 0.5px;
}

/* CTA wrapper */
.hero-cta {
    margin-bottom: 18px;
}

/* Note below CTA */
.hero-note {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 36px;
    letter-spacing: 0.4px;
}

/* ========================================
   Buttons
   ======================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: #e6684a;
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 8px;
    border: 2px solid #e6684a;
    cursor: pointer;
    transition: var(--trans);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: #d4573a;
    border-color: #d4573a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(230, 104, 74, 0.38);
    color: #fff;
}

.btn-primary i { font-size: 18px; flex-shrink: 0; }

.btn-orcamento {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: #148dd9;
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 8px;
    border: 2px solid #148dd9;
    cursor: pointer;
    transition: var(--trans);
    white-space: nowrap;
    margin-bottom: 24px;
}

.btn-orcamento:hover {
    background: #0d7abf;
    border-color: #0d7abf;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(20, 141, 217, 0.38);
    color: #fff;
}

.btn-orcamento i { font-size: 18px; flex-shrink: 0; }

/* Ripple on buttons */
.btn-primary,
.btn-orcamento {
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    transform: scale(0);
    animation: rippleAnim 0.55s ease-out;
    pointer-events: none;
}

@keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
}

/* ========================================
   Hero Stats Badges
   ======================================== */

.hero-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(7, 7, 9, 0.60);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.stat-badge:hover {
    border-color: var(--gold-dim);
    background: rgba(191, 155, 48, 0.08);
}

.stat-icon {
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.stat-icon .material-symbols-outlined {
    font-size: 22px;
    font-variation-settings: 'FILL' 1;
}

.stat-info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.stat-info strong {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--ivory);
}

.stat-info span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 300;
}

/* ========================================
   Scroll Indicator
   ======================================== */

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    right: 48px;
    z-index: 3;
    animation: indicatorBounce 2.5s ease-in-out infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 1.5px solid rgba(191, 155, 48, 0.55);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.8s ease-in-out infinite;
}

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

@keyframes scrollWheel {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* Ken Burns */
@keyframes kenburns {
    0%   { transform: scale(1) translate(0, 0); }
    50%  { transform: scale(1.10) translate(-1%, -1.5%); }
    100% { transform: scale(1) translate(0, 0); }
}

/* ========================================
   Reviews Wrapper (Elfsight)
   ======================================== */

.reviews-wrapper {
    background: #ffffff;
    padding: 72px 0 56px;
    min-height: 200px;
    color: #1a1a1a;
}

/* ========================================
   Orçamento Section
   ======================================== */

.orcamento-section {
    background: var(--bg-card);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.orcamento-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 65% 50%, rgba(191, 155, 48, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.orcamento-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    min-width: 0;
}

/* Image */
.orcamento-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    min-width: 0;
    box-shadow: var(--shadow-dark);
}

.orcamento-img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.2);
    transform-origin: center center;
    transition: transform 0.6s ease;
}

.orcamento-img-wrap:hover .orcamento-img {
    transform: scale(1.23);
}

/* Content */
.orcamento-content {
    min-width: 0;
}

.orcamento-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--ivory);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.orcamento-title em {
    font-style: italic;
    color: var(--gold);
}

.orcamento-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Checklist */
.orcamento-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 4px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-soft);
}

.check-item i {
    color: var(--gold);
    font-size: 15px;
    flex-shrink: 0;
}

/* Phone box */
.orcamento-phone-box {
    margin-top: 28px;
    padding: 20px 24px;
    background: rgba(7, 7, 9, 0.5);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.phone-label {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.phone-number {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--gold-light);
}

.phone-number i { font-size: 20px; }

.phone-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 300;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: #000;
    padding: 60px 0 40px;
    border-top: 1px solid var(--gold-border);
}

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

.footer-logo {
    height: 52px;
    margin: 0 auto 16px;
}

.footer-company {
    font-size: 13px;
    font-weight: 300;
    color: rgba(245, 237, 216, 0.38);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 14px;
    color: rgba(245, 237, 216, 0.55);
    margin-bottom: 22px;
}

.footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 13px;
}

.footer-contact-item a:hover,
.footer-links a:hover { color: var(--gold); }

.footer-sep {
    color: rgba(245, 237, 216, 0.22);
}

.footer-links {
    font-size: 13px;
}

.footer-rule {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 0 auto 22px;
    max-width: 480px;
}

.footer-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.footer-trust img {
    height: 28px;
    opacity: 0.72;
    transition: opacity 0.3s ease;
}

.footer-trust img:hover { opacity: 1; }

.footer-copyright {
    font-size: 12px;
    font-weight: 300;
    color: rgba(245, 237, 216, 0.28);
}

/* ========================================
   Back to Top
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    border: none;
    border-radius: 6px;
    color: var(--deep);
    font-size: 17px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}
