 :root {
     --black: #0a0a0a;
     --white: #fafaf8;
     --gray-light: #f0ede8;
     --gray-mid: #c8c4bc;
     --gray-dark: #4a4540;
     --gold: #c9a84c;
     --gold-light: #e8d5a3;
     --font-display: 'Cormorant Garamond', Georgia, serif;
     --font-body: 'DM Sans', sans-serif;
     --font-mono: 'Space Mono', monospace;
 }

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

 body {
     font-family: var(--font-body);
     background-color: var(--white);
     color: var(--black);
     overflow-x: hidden;
 }

 /* ===== SCROLLBAR ===== */
 ::-webkit-scrollbar {
     width: 4px;
 }

 ::-webkit-scrollbar-track {
     background: var(--white);
 }

 ::-webkit-scrollbar-thumb {
     background: var(--black);
 }

 /* ===== TYPOGRAPHY ===== */
 .display-heading {
     font-family: var(--font-display);
     font-weight: 300;
     letter-spacing: -0.02em;
     line-height: 0.95;
 }

 .mono-label {
     font-family: var(--font-mono);
     font-size: 0.7rem;
     letter-spacing: 0.15em;
     text-transform: uppercase;
 }

 /* ===== HEADER ===== */
 header {
     position: fixed;
     width: 100%;
     z-index: 100;
     top: 0;
     left: 0;
     mix-blend-mode: normal;
     transition: background 0.4s ease, backdrop-filter 0.4s ease;
 }

 header.scrolled {
     background: rgba(250, 250, 248, 0.95) !important;
     backdrop-filter: blur(20px);
     border-bottom: 1px solid rgba(0, 0, 0, 0.06);
     box-shadow: 0 2px 40px rgba(0, 0, 0, 0.04);
 }

 .header-inner {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 3rem;
     height: 80px;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .logo-mark {
     display: flex;
     align-items: baseline;
     gap: 2px;
     text-decoration: none;
 }

 .logo-rw {
     font-family: var(--font-display);
     font-size: 2rem;
     font-weight: 700;
     color: var(--black);
     line-height: 1;
     letter-spacing: -0.04em;
 }

 .logo-sub {
     font-family: var(--font-body);
     font-size: 0.75rem;
     font-weight: 300;
     color: var(--gray-dark);
     letter-spacing: 0.1em;
     text-transform: uppercase;
     margin-left: 6px;
 }

 .nav-links {
     display: flex;
     align-items: center;
     gap: 2.5rem;
     list-style: none;
 }

 .nav-links a {
     font-family: var(--font-body);
     font-size: 0.82rem;
     font-weight: 400;
     color: var(--gray-dark);
     text-decoration: none;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     position: relative;
     transition: color 0.3s;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -3px;
     left: 0;
     width: 0;
     height: 1px;
     background: var(--black);
     transition: width 0.3s ease;
 }

 .nav-links a:hover {
     color: var(--black);
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 /* Admin dropdown */
 #login-dropdown-container {
     position: relative;
 }

 .admin-trigger {
     display: flex;
     align-items: center;
     gap: 8px;
     font-family: var(--font-body);
     font-size: 0.82rem;
     font-weight: 400;
     color: var(--gray-dark);
     letter-spacing: 0.06em;
     text-transform: uppercase;
     background: none;
     border: none;
     cursor: pointer;
     transition: color 0.3s;
     padding: 0;
 }

 .admin-trigger:hover {
     color: var(--black);
 }

 .admin-trigger .admin-icon {
     width: 32px;
     height: 32px;
     border: 1px solid var(--gray-mid);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.75rem;
     transition: border-color 0.3s, background 0.3s;
 }

 .admin-trigger:hover .admin-icon {
     border-color: var(--black);
     background: var(--black);
     color: var(--white);
 }

 #login-dropdown {
     position: absolute;
     right: 0;
     top: calc(100% + 16px);
     width: 340px;
     background: var(--white);
     border: 1px solid rgba(0, 0, 0, 0.1);
     border-radius: 2px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
     opacity: 0;
     visibility: hidden;
     transform: translateY(-8px);
     transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
 }

 #login-dropdown.visible {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .dropdown-header {
     padding: 1.5rem 1.5rem 1rem;
     border-bottom: 1px solid rgba(0, 0, 0, 0.06);
 }

 .dropdown-header h3 {
     font-family: var(--font-display);
     font-size: 1.2rem;
     font-weight: 600;
     color: var(--black);
 }

 .dropdown-body {
     padding: 1.5rem;
 }

 .form-field {
     margin-bottom: 1rem;
 }

 .form-field label {
     display: block;
     font-family: var(--font-mono);
     font-size: 0.65rem;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--gray-dark);
     margin-bottom: 6px;
 }

 .form-field input {
     width: 100%;
     padding: 10px 14px;
     background: var(--gray-light);
     border: 1px solid transparent;
     border-radius: 2px;
     font-family: var(--font-body);
     font-size: 0.875rem;
     color: var(--black);
     transition: border-color 0.2s, background 0.2s;
     outline: none;
 }

 .form-field input:focus {
     border-color: var(--black);
     background: var(--white);
 }

 .btn-primary {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     padding: 12px 24px;
     background: var(--black);
     color: var(--white);
     font-family: var(--font-body);
     font-size: 0.82rem;
     font-weight: 500;
     letter-spacing: 0.05em;
     border: none;
     border-radius: 2px;
     cursor: pointer;
     transition: background 0.2s, transform 0.2s;
     text-decoration: none;
     width: 100%;
 }

 .btn-primary:hover {
     background: var(--gray-dark);
     transform: translateY(-1px);
 }

 /* ===== HERO ===== */
 #home {
     position: relative;
     min-height: 100vh;
     display: flex;
     align-items: center;
     overflow: hidden;
     background: var(--white);
 }

 .hero-bg-image {
     position: absolute;
     inset: 0;
     background: url('https://images.unsplash.com/photo-1511578314322-379afb476865?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
     opacity: 0.5;
 }

 .hero-bg-image::after {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, rgba(250, 250, 248, 0.6) 0%, transparent 100%);
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 3rem;
     padding-top: 80px;
     width: 100%;
 }

 .hero-eyebrow {
     font-family: var(--font-mono);
     font-size: 0.7rem;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: var(--gray-dark);
     margin-bottom: 2rem;
     display: flex;
     align-items: center;
     gap: 16px;
 }

 .hero-eyebrow::before {
     content: '';
     display: block;
     width: 40px;
     height: 1px;
     background: var(--gray-mid);
 }

 .hero-title {
     font-family: var(--font-display);
     font-size: clamp(4rem, 10vw, 10rem);
     font-weight: 300;
     line-height: 0.9;
     letter-spacing: -0.03em;
     color: var(--black);
     margin-bottom: 1rem;
 }

 .hero-title em {
     font-style: italic;
     color: transparent;
     -webkit-text-stroke: 1.5px var(--black);
 }

 .hero-subtitle {
     font-family: var(--font-display);
     font-size: clamp(1.2rem, 2.5vw, 1.8rem);
     font-weight: 300;
     font-style: italic;
     color: var(--gray-dark);
     margin-bottom: 3rem;
     max-width: 500px;
 }

 .hero-cta {
     display: inline-flex;
     align-items: center;
     gap: 16px;
     padding: 16px 40px;
     background: var(--black);
     color: var(--white);
     font-family: var(--font-body);
     font-size: 0.82rem;
     font-weight: 500;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     text-decoration: none;
     border-radius: 1px;
     transition: background 0.3s, gap 0.3s;
 }

 .hero-cta:hover {
     background: var(--gray-dark);
     gap: 24px;
 }

 .hero-cta i {
     font-size: 0.75rem;
 }

 .hero-scroll-hint {
     position: absolute;
     bottom: 3rem;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
     z-index: 2;
 }

 .hero-scroll-hint span {
     font-family: var(--font-mono);
     font-size: 0.6rem;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     color: var(--gray-mid);
 }

 .scroll-line {
     width: 1px;
     height: 40px;
     background: linear-gradient(to bottom, var(--gray-mid), transparent);
     animation: scrollPulse 2s ease-in-out infinite;
 }

 @keyframes scrollPulse {

     0%,
     100% {
         opacity: 0.4;
         transform: scaleY(1);
     }

     50% {
         opacity: 1;
         transform: scaleY(1.2);
     }
 }

 @media (max-width: 768px) {
     .hero-content {
         padding: 0 1.5rem;
         padding-top: 64px;
     }
 }

 /* ===== SECTION SHARED STYLES ===== */
 .section-header {
     margin-bottom: 5rem;
 }

 .section-label {
     font-family: var(--font-mono);
     font-size: 0.65rem;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: var(--gray-dark);
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 1.5rem;
 }

 .section-label::before {
     content: '';
     display: block;
     width: 24px;
     height: 1px;
     background: var(--black);
 }

 .section-title {
     font-family: var(--font-display);
     font-size: clamp(2.5rem, 5vw, 4.5rem);
     font-weight: 300;
     line-height: 1;
     letter-spacing: -0.02em;
     color: var(--black);
 }

 .section-title strong {
     font-weight: 700;
 }

 .section-title em {
     font-style: italic;
     font-weight: 300;
 }

 .section-divider {
     width: 60px;
     height: 1px;
     background: var(--black);
     margin-top: 1.5rem;
 }

 .section-description {
     font-size: 1rem;
     line-height: 1.7;
     color: var(--gray-dark);
     max-width: 480px;
     margin-top: 1.5rem;
 }

 /* ===== ABOUT SECTION ===== */
 #about {
     position: relative;
     padding: 8rem 0;
     overflow: hidden;
     background: var(--black);
     color: var(--white);
 }

 #about video {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 0.5;
     z-index: 0;
 }

 .about-inner {
     position: relative;
     z-index: 1;
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 3rem;
 }

 .about-header {
     margin-bottom: 6rem;
 }

 .about-section-label {
     font-family: var(--font-mono);
     font-size: 0.65rem;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: var(--gray-mid);
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 1.5rem;
 }

 .about-section-label::before {
     content: '';
     display: block;
     width: 24px;
     height: 1px;
     background: var(--gray-mid);
 }

 .about-title {
     font-family: var(--font-display);
     font-size: clamp(2.5rem, 5vw, 4.5rem);
     font-weight: 300;
     line-height: 1;
     letter-spacing: -0.02em;
     color: var(--white);
 }

 .about-title em {
     font-style: italic;
 }

 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     align-items: center;
     margin-bottom: 4rem;
 }

 .about-image-wrap {
     position: relative;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .about-image-frame {
     width: 100%;
     max-width: 380px;
     margin: 0 auto;
     position: relative;
     border-radius: 50%;
     overflow: hidden;
     aspect-ratio: 1 / 1;
     box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.3);
     border: 4px solid rgba(255, 255, 255, 0.2);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .about-image-frame:hover {
     transform: scale(1.02);
     box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.4);
     border-color: rgba(255, 255, 255, 0.4);
 }

 .about-image-frame img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     transition: transform 0.5s ease;
 }

 .about-image-frame:hover img {
     transform: scale(1.05);
 }

 .about-image-caption {
     margin-top: 1.25rem;
     text-align: center;
     font-size: 0.9rem;
     color: rgba(255, 255, 255, 0.8);
     font-style: italic;
     letter-spacing: 0.3px;
 }

 .about-story-label {
     display: inline-block;
     background: rgba(255, 255, 255, 0.15);
     padding: 0.25rem 1rem;
     border-radius: 30px;
     font-size: 0.8rem;
     font-weight: 600;
     color: #ffffff;
     margin-bottom: 1rem;
     backdrop-filter: blur(4px);
 }

 .about-story-title {
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 1.25rem;
     color: #ffffff;
     line-height: 1.3;
 }

 .about-story-text {
     color: rgba(255, 255, 255, 0.85);
     line-height: 1.6;
     margin-bottom: 1rem;
     font-size: 1rem;
 }

 .about-story-text strong {
     color: #ffffff;
     font-weight: 600;
 }

 .about-cta {
     display: inline-flex;
     align-items: center;
     gap: 0.75rem;
     background: #000000;
     color: white;
     font-weight: 600;
     padding: 0.85rem 2rem;
     border-radius: 50px;
     margin-top: 1rem;
     transition: all 0.3s ease;
     text-decoration: none;
     font-size: 0.95rem;
 }

 .about-cta:hover {
     background: #2c2c2c;
     transform: translateY(-2px);
     gap: 1rem;
 }

 /* Responsivo */
 @media (max-width: 768px) {
     .about-grid {
         grid-template-columns: 1fr;
         gap: 2rem;
     }

     .about-image-frame {
         max-width: 280px;
     }

     .about-story-title {
         font-size: 1.5rem;
     }

     .about-cta {
         width: 100%;
         justify-content: center;
     }
 }

 /* MVV Cards */
 .mvv-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1px;
     background: rgba(255, 255, 255, 0.08);
     border: 1px solid rgba(255, 255, 255, 0.08);
 }

 @media (max-width: 768px) {
     .mvv-grid {
         grid-template-columns: 1fr;
     }
 }

 .mvv-card {
     background: rgba(255, 255, 255, 0.03);
     padding: 2.5rem;
     transition: background 0.3s;
 }

 .mvv-card:hover {
     background: rgba(255, 255, 255, 0.07);
 }

 .mvv-icon {
     width: 40px;
     height: 40px;
     border: 1px solid rgba(255, 255, 255, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.5rem;
     font-size: 1rem;
     color: rgba(255, 255, 255, 0.7);
 }

 .mvv-title {
     font-family: var(--font-display);
     font-size: 1.3rem;
     font-weight: 600;
     color: var(--white);
     margin-bottom: 1rem;
     letter-spacing: 0.01em;
 }

 .mvv-text {
     font-size: 0.875rem;
     line-height: 1.7;
     color: rgba(255, 255, 255, 0.55);
 }

 .mvv-list {
     list-style: none;
 }

 .mvv-list li {
     font-size: 0.875rem;
     color: rgba(255, 255, 255, 0.55);
     padding: 0.4rem 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.06);
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .mvv-list li:last-child {
     border-bottom: none;
 }

 .mvv-list li i {
     font-size: 0.7rem;
     color: rgba(255, 255, 255, 0.35);
 }

 /* ===== SERVICES ===== */
 #services {
     padding: 8rem 0;
     background: var(--white);
 }

 .services-inner {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 3rem;
 }

 @media (max-width: 768px) {
     .services-inner {
         padding: 0 1.5rem;
     }

     #services {
         padding: 5rem 0;
     }
 }

 .services-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     margin-bottom: 4rem;
 }

 @media (max-width: 768px) {
     .services-header {
         flex-direction: column;
         align-items: flex-start;
         gap: 1.5rem;
     }
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1px;
     background: rgba(0, 0, 0, 0.06);
     border: 1px solid rgba(0, 0, 0, 0.06);
 }

 @media (max-width: 1024px) {
     .services-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 640px) {
     .services-grid {
         grid-template-columns: 1fr;
     }
 }

 .service-card {
     background: var(--white);
     padding: 2.5rem;
     position: relative;
     overflow: hidden;
     transition: background 0.3s;
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--black);
     transition: width 0.4s ease;
 }

 .service-card:hover {
     background: var(--gray-light);
 }

 .service-card:hover::before {
     width: 100%;
 }

 .service-number {
     font-family: var(--font-mono);
     font-size: 0.65rem;
     letter-spacing: 0.1em;
     color: var(--gray-mid);
     margin-bottom: 1.5rem;
 }

 .service-icon {
     font-size: 1.5rem;
     color: var(--black);
     margin-bottom: 1.2rem;
     display: block;
 }

 .service-title {
     font-family: var(--font-display);
     font-size: 1.3rem;
     font-weight: 600;
     color: var(--black);
     margin-bottom: 0.8rem;
     line-height: 1.2;
 }

 .service-desc {
     font-size: 0.875rem;
     line-height: 1.7;
     color: var(--gray-dark);
 }

 /* ===== PORTFOLIO ===== */
 #portfolio {
     padding: 8rem 0;
     background: var(--gray-light);
 }

 .portfolio-inner {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 3rem;
 }

 @media (max-width: 768px) {
     .portfolio-inner {
         padding: 0 1.5rem;
     }

     #portfolio {
         padding: 5rem 0;
     }
 }

 .portfolio-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1.5px;
     background: rgba(0, 0, 0, 0.08);
     margin-bottom: 3rem;
 }

 @media (max-width: 1024px) {
     .portfolio-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 640px) {
     .portfolio-grid {
         grid-template-columns: 1fr;
     }
 }

 .portfolio-item {
     position: relative;
     overflow: hidden;
     background: var(--gray-light);
     aspect-ratio: 4/3;
 }

 .portfolio-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     filter: grayscale(30%);
     transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
 }

 .portfolio-item:hover img {
     transform: scale(1.06);
     filter: grayscale(0%);
 }

 .portfolio-overlay {
     position: absolute;
     inset: 0;
     background: rgba(10, 10, 10, 0.85);
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 2rem;
     opacity: 0;
     transform: translateY(0);
     transition: opacity 0.4s ease;
 }

 .portfolio-item:hover .portfolio-overlay {
     opacity: 1;
 }

 .portfolio-overlay-label {
     font-family: var(--font-mono);
     font-size: 0.6rem;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     color: var(--gray-mid);
     margin-bottom: 0.5rem;
 }

 .portfolio-overlay-title {
     font-family: var(--font-display);
     font-size: 1.5rem;
     font-weight: 400;
     color: var(--white);
     line-height: 1.1;
     margin-bottom: 0.5rem;
 }

 .portfolio-overlay-desc {
     font-size: 0.8rem;
     color: rgba(255, 255, 255, 0.6);
 }

 .portfolio-cta-wrap {
     text-align: center;
 }

 .btn-outline {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     padding: 14px 36px;
     border: 1.5px solid var(--black);
     color: var(--black);
     font-family: var(--font-body);
     font-size: 0.82rem;
     font-weight: 500;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     text-decoration: none;
     border-radius: 1px;
     transition: background 0.3s, color 0.3s, gap 0.3s;
     cursor: pointer;
     background: transparent;
 }

 .btn-outline:hover {
     background: var(--black);
     color: var(--white);
     gap: 20px;
 }

 /* ===== TESTIMONIALS ===== */
 .testimonials-section {
     padding: 8rem 0;
     background: var(--white);
 }

 .testimonials-inner {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 3rem;
 }

 @media (max-width: 768px) {
     .testimonials-inner {
         padding: 0 1.5rem;
     }

     .testimonials-section {
         padding: 5rem 0;
     }
 }

 .testimonials-track-wrap {
     max-width: 800px;
     margin: 0 auto;
     overflow: hidden;
 }

 #testimonial-slider {
     display: flex;
     transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .testimonial-slide {
     min-width: 100%;
 }

 .testimonial-card {
     background: var(--gray-light);
     padding: 3.5rem;
     position: relative;
 }

 .testimonial-card::before {
     content: '\201C';
     position: absolute;
     top: 2rem;
     right: 2.5rem;
     font-family: var(--font-display);
     font-size: 6rem;
     line-height: 1;
     color: rgba(0, 0, 0, 0.06);
     pointer-events: none;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 2rem;
 }

 .testimonial-avatar {
     width: 52px;
     height: 52px;
     border-radius: 50%;
     object-fit: cover;
     filter: grayscale(20%);
 }

 .testimonial-author-name {
     font-family: var(--font-display);
     font-size: 1.1rem;
     font-weight: 600;
     color: var(--black);
 }

 .testimonial-author-role {
     font-size: 0.8rem;
     color: var(--gray-dark);
     margin-top: 2px;
 }

 .testimonial-text {
     font-family: var(--font-display);
     font-size: 1.15rem;
     font-weight: 300;
     font-style: italic;
     line-height: 1.7;
     color: var(--gray-dark);
 }

 .testimonial-stars {
     display: flex;
     gap: 4px;
     margin-top: 1.5rem;
     color: #c9a84c;
     font-size: 0.7rem;
 }

 .testimonial-dots {
     display: flex;
     justify-content: center;
     gap: 8px;
     margin-top: 2.5rem;
 }

 .testimonial-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: var(--gray-mid);
     border: none;
     cursor: pointer;
     transition: background 0.3s, transform 0.3s;
 }

 .testimonial-dot.active {
     background: var(--black);
     transform: scale(1.2);
 }

 /* ===== CONTACT / ORCAMENTO ===== */
 #orcamento {
     padding: 8rem 0;
     background: var(--gray-light);
 }

 .orcamento-inner {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 3rem;
 }

 @media (max-width: 768px) {
     .orcamento-inner {
         padding: 0 1.5rem;
     }

     #orcamento {
         padding: 5rem 0;
     }
 }

 .orcamento-layout {
     display: grid;
     grid-template-columns: 1fr 380px;
     gap: 5rem;
     align-items: start;
 }

 @media (max-width: 1024px) {
     .orcamento-layout {
         grid-template-columns: 1fr;
         gap: 3rem;
     }
 }

 /* Step Progress */
 .step-progress {
     display: flex;
     align-items: center;
     margin-bottom: 4rem;
 }

 .step {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 6px;
     position: relative;
 }

 .circle {
     width: 36px;
     height: 36px;
     border: 1.5px solid var(--gray-mid);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: var(--font-mono);
     font-size: 0.72rem;
     color: var(--gray-mid);
     background: var(--white);
     transition: all 0.3s;
 }

 .step.active .circle {
     border-color: var(--black);
     background: var(--black);
     color: var(--white);
 }

 .step .label {
     font-family: var(--font-mono);
     font-size: 0.6rem;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--gray-mid);
     white-space: nowrap;
     transition: color 0.3s;
 }

 .step.active .label {
     color: var(--black);
 }

 .connector {
     flex: 1;
     height: 1px;
     background: var(--gray-mid);
     margin: 0 12px;
     margin-bottom: 22px;
     transition: background 0.3s;
 }

 .connector.active {
     background: var(--black);
 }

 /* Form Styles */
 .step-content {
     display: none;
 }

 .step-content.active {
     display: block;
 }

 .step-title {
     font-family: var(--font-display);
     font-size: 1.8rem;
     font-weight: 300;
     font-style: italic;
     color: var(--black);
     margin-bottom: 2rem;
 }

 .form-grid-2 {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1.5rem;
 }

 @media (max-width: 640px) {
     .form-grid-2 {
         grid-template-columns: 1fr;
     }
 }

 .field-group {
     margin-bottom: 0;
 }

 .field-label {
     display: block;
     font-family: var(--font-mono);
     font-size: 0.62rem;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--gray-dark);
     margin-bottom: 6px;
 }

 .field-input,
 .field-select,
 .field-textarea {
     width: 100%;
     padding: 12px 16px;
     background: var(--white);
     border: 1px solid rgba(0, 0, 0, 0.1);
     border-radius: 2px;
     font-family: var(--font-body);
     font-size: 0.9rem;
     color: var(--black);
     transition: border-color 0.2s;
     outline: none;
     appearance: none;
 }

 .field-input:focus,
 .field-select:focus,
 .field-textarea:focus {
     border-color: var(--black);
     box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
 }

 .field-input.border-red-500,
 .field-select.border-red-500 {
     border-color: #ef4444;
 }

 .field-textarea {
     resize: none;
 }

 .field-select {
     cursor: pointer;
 }

 /* Phone row */
 .phone-row {
     display: flex;
     gap: 8px;
 }

 .phone-row select {
     width: 80px;
     flex-shrink: 0;
 }

 .phone-row input {
     flex: 1;
 }

 /* Toggle switch */
 .toggle-wrap {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-top: 10px;
     cursor: pointer;
 }

 .toggle-track {
     width: 38px;
     height: 20px;
     background: var(--gray-mid);
     border-radius: 100px;
     position: relative;
     transition: background 0.3s;
 }

 .toggle-thumb {
     position: absolute;
     top: 3px;
     left: 3px;
     width: 14px;
     height: 14px;
     background: var(--white);
     border-radius: 50%;
     transition: transform 0.3s;
 }

 input#whatsapp-checkbox:checked~.toggle-track {
     background: var(--black);
 }

 input#whatsapp-checkbox:checked~.toggle-track .toggle-thumb {
     transform: translateX(18px);
 }

 .toggle-label {
     font-size: 0.82rem;
     color: var(--gray-dark);
 }

 /* Range slider */
 .range-wrap {
     padding-top: 8px;
 }

 input[type="range"].range-slider {
     width: 100%;
     height: 2px;
     background: var(--gray-mid);
     outline: none;
     appearance: none;
     cursor: pointer;
 }

 input[type="range"].range-slider::-webkit-slider-thumb {
     appearance: none;
     width: 16px;
     height: 16px;
     background: var(--black);
     border-radius: 50%;
     cursor: pointer;
 }

 .range-labels {
     display: flex;
     justify-content: space-between;
     margin-top: 8px;
     font-size: 0.75rem;
     color: var(--gray-mid);
     font-family: var(--font-mono);
 }

 .range-value {
     text-align: center;
     font-family: var(--font-display);
     font-size: 1.3rem;
     font-weight: 600;
     color: var(--black);
     margin-top: 8px;
 }

 /* Upload Zone */
 .upload-zone {
     border: 1.5px dashed rgba(0, 0, 0, 0.2);
     border-radius: 4px;
     padding: 3rem 2rem;
     text-align: center;
     cursor: pointer;
     transition: border-color 0.3s, background 0.3s;
 }

 .upload-zone:hover,
 .upload-zone.dragover {
     border-color: var(--black);
     background: rgba(0, 0, 0, 0.02);
 }

 .upload-icon {
     font-size: 2rem;
     color: var(--black);
     margin-bottom: 1rem;
 }

 .upload-text {
     font-size: 0.9rem;
     color: var(--gray-dark);
     margin-bottom: 1rem;
 }

 .upload-hint {
     font-family: var(--font-mono);
     font-size: 0.62rem;
     letter-spacing: 0.1em;
     color: var(--gray-mid);
     text-transform: uppercase;
     margin-top: 0.5rem;
 }

 #preview-grid {
     display: none;
     grid-template-columns: repeat(3, 1fr);
     gap: 1rem;
     margin-top: 1.5rem;
 }

 #preview-grid.visible {
     display: grid;
 }

 .preview-item {
     position: relative;
     border-radius: 2px;
     overflow: hidden;
     background: var(--white);
     border: 1px solid rgba(0, 0, 0, 0.08);
     transition: transform 0.2s;
 }

 .preview-item:hover {
     transform: scale(1.02);
 }

 .preview-item img {
     width: 100%;
     height: 80px;
     object-fit: cover;
 }

 .file-icon {
     font-size: 2rem;
     color: var(--black);
     text-align: center;
     display: block;
     padding: 1.2rem 0;
 }

 .file-info {
     padding: 0.4rem 0.5rem;
     font-size: 0.7rem;
     color: var(--gray-dark);
     text-align: center;
 }

 .remove-btn {
     position: absolute;
     top: 4px;
     right: 4px;
     background: var(--black);
     color: var(--white);
     width: 18px;
     height: 18px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     font-size: 0.8rem;
     line-height: 1;
     transition: background 0.2s;
 }

 .remove-btn:hover {
     background: #555;
 }

 /* Review */
 .review-box {
     background: var(--white);
     border: 1px solid rgba(0, 0, 0, 0.08);
     padding: 2rem;
     margin-bottom: 1.5rem;
 }

 .review-section-title {
     font-family: var(--font-mono);
     font-size: 0.65rem;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--black);
     margin-bottom: 1rem;
     padding-bottom: 0.5rem;
     border-bottom: 1px solid rgba(0, 0, 0, 0.06);
 }

 .review-field {
     display: flex;
     gap: 8px;
     margin-bottom: 0.5rem;
     font-size: 0.875rem;
 }

 .review-field strong {
     color: var(--black);
     font-weight: 500;
     min-width: 120px;
 }

 .review-field span {
     color: var(--gray-dark);
 }

 /* Terms inline */
 .terms-inline {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-top: 0.5rem;
 }

 .terms-inline input[type="checkbox"] {
     width: 16px;
     height: 16px;
     cursor: pointer;
     accent-color: var(--black);
 }

 .terms-inline label {
     font-size: 0.85rem;
     color: var(--gray-dark);
 }

 .terms-inline a {
     color: var(--black);
     text-decoration: underline;
 }

 /* Form Nav Buttons */
 .form-nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 2.5rem;
     padding-top: 2rem;
     border-top: 1px solid rgba(0, 0, 0, 0.06);
 }

 .btn-prev,
 .btn-next,
 .btn-submit {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 12px 28px;
     font-family: var(--font-body);
     font-size: 0.82rem;
     font-weight: 500;
     letter-spacing: 0.06em;
     border-radius: 2px;
     cursor: pointer;
     transition: background 0.2s, color 0.2s, transform 0.2s;
     border: none;
 }

 .btn-prev {
     background: var(--gray-light);
     color: var(--gray-dark);
 }

 .btn-prev:hover {
     background: rgba(0, 0, 0, 0.1);
 }

 .btn-next {
     background: var(--black);
     color: var(--white);
     margin-left: auto;
 }

 .btn-next:hover {
     background: var(--gray-dark);
     transform: translateY(-1px);
 }

 .btn-submit {
     background: #16a34a;
     color: var(--white);
     margin-left: auto;
 }

 .btn-submit:hover {
     background: #15803d;
     transform: translateY(-1px);
 }

 .hidden {
     display: none !important;
 }

 /* Sidebar */
 .sidebar-card {
     background: var(--white);
     padding: 2.5rem;
     position: sticky;
     top: 6rem;
 }

 .sidebar-title {
     font-family: var(--font-display);
     font-size: 1.5rem;
     font-weight: 600;
     color: var(--black);
     margin-bottom: 2rem;
 }

 .sidebar-item {
     margin-bottom: 2rem;
 }

 .sidebar-item-icon {
     font-size: 1rem;
     color: var(--black);
     margin-bottom: 0.5rem;
 }

 .sidebar-item h4 {
     font-weight: 600;
     font-size: 0.9rem;
     color: var(--black);
     margin-bottom: 0.25rem;
 }

 .sidebar-item p {
     font-size: 0.82rem;
     color: var(--gray-dark);
     line-height: 1.5;
 }

 .sidebar-divider {
     height: 1px;
     background: rgba(0, 0, 0, 0.06);
     margin: 2rem 0;
 }

 .sidebar-contacts {
     list-style: none;
 }

 .sidebar-contacts li a {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 0.6rem 0;
     font-size: 0.875rem;
     color: var(--gray-dark);
     text-decoration: none;
     border-bottom: 1px solid rgba(0, 0, 0, 0.04);
     transition: color 0.2s, padding-left 0.2s;
 }

 .sidebar-contacts li a:hover {
     color: var(--black);
     padding-left: 4px;
 }

 .sidebar-contacts li a i {
     font-size: 0.9rem;
     width: 16px;
     text-align: center;
 }

 /* ===== FLOATING BUTTONS ===== */
 .whatsapp-btn {
     position: fixed;
     bottom: 2rem;
     right: 2rem;
     z-index: 50;
     width: 52px;
     height: 52px;
     background: #13a300;
     border: none;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.4rem;
     color: var(--white);
     cursor: pointer;
     box-shadow: 0 4px 20px rgba(19, 163, 0, 0.35);
     transition: transform 0.2s, box-shadow 0.2s;
 }

 .whatsapp-btn:hover {
     transform: scale(1.08);
     box-shadow: 0 6px 28px rgba(19, 163, 0, 0.45);
 }

 .whatsapp-chat {
     position: fixed;
     bottom: 6rem;
     right: 2rem;
     z-index: 50;
     width: 320px;
     background: var(--white);
     border: 1px solid rgba(0, 0, 0, 0.1);
     border-radius: 4px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
 }

 .whatsapp-chat.hidden {
     display: none;
 }

 .chat-header {
     background: var(--black);
     color: var(--white);
     padding: 1rem 1.2rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     border-radius: 4px 4px 0 0;
 }

 .chat-header h3 {
     font-size: 0.9rem;
     font-weight: 500;
 }

 .close-chat {
     background: none;
     border: none;
     color: var(--white);
     font-size: 1.3rem;
     cursor: pointer;
     line-height: 1;
     opacity: 0.7;
     transition: opacity 0.2s;
 }

 .close-chat:hover {
     opacity: 1;
 }

 .chat-body {
     padding: 1rem 1.2rem;
     min-height: 120px;
     max-height: 240px;
     overflow-y: auto;
 }

 .chat-footer {
     padding: 0.75rem 1.2rem;
     border-top: 1px solid rgba(0, 0, 0, 0.06);
     display: flex;
     gap: 8px;
 }

 #chat-input {
     flex: 1;
     padding: 8px 12px;
     border: 1px solid rgba(0, 0, 0, 0.1);
     border-radius: 2px;
     font-family: var(--font-body);
     font-size: 0.82rem;
     outline: none;
 }

 #chat-input:focus {
     border-color: var(--black);
 }

 .send-message {
     width: 36px;
     height: 36px;
     background: var(--black);
     border: none;
     border-radius: 2px;
     color: var(--white);
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background 0.2s;
 }

 .send-message:hover {
     background: var(--gray-dark);
 }

 .scroll-top-btn {
     position: fixed;
     bottom: 6rem;
     right: 5rem;
     z-index: 50;
     width: 40px;
     height: 40px;
     background: var(--black);
     border: none;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     font-size: 0.75rem;
     cursor: pointer;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.3s, transform 0.2s;
 }

 .scroll-top-btn.visible {
     opacity: 1;
     pointer-events: all;
 }

 .scroll-top-btn:hover {
     transform: translateY(-2px);
 }

 /* ===== FOOTER ===== */
 footer {
     background: var(--white);
     border-top: 1px solid rgba(0, 0, 0, 0.06);
     padding: 3rem 0;
 }

 .footer-inner {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 3rem;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 @media (max-width: 640px) {
     .footer-inner {
         flex-direction: column;
         gap: 1.5rem;
         text-align: center;
         padding: 0 1.5rem;
     }
 }

 .footer-copy {
     font-size: 0.8rem;
     color: var(--gray-mid);
 }

 .footer-tagline {
     font-family: var(--font-display);
     font-size: 0.85rem;
     font-style: italic;
     color: var(--gray-mid);
 }

 /* ===== TERMS POPUP ===== */
 .terms-popup-overlay {
     position: fixed;
     inset: 0;
     background: rgba(10, 10, 10, 0.85);
     backdrop-filter: blur(8px);
     display: none;
     justify-content: center;
     align-items: center;
     z-index: 9999;
     padding: 1.5rem;
 }

 .terms-popup-overlay.active {
     display: flex;
     animation: fadeIn 0.3s ease;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 .terms-popup {
     background: var(--white);
     max-width: 480px;
     width: 100%;
     box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
     animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
 }

 @keyframes slideUp {
     from {
         opacity: 0;
         transform: translateY(24px);
     }

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

 .terms-header {
     background: var(--black);
     color: var(--white);
     padding: 1.5rem 2rem;
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .terms-icon {
     font-size: 1.4rem;
     opacity: 0.8;
 }

 .terms-header h3 {
     font-family: var(--font-display);
     font-size: 1.4rem;
     font-weight: 400;
     flex: 1;
 }

 .terms-close {
     background: rgba(255, 255, 255, 0.15);
     border: none;
     color: var(--white);
     width: 32px;
     height: 32px;
     border-radius: 50%;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1rem;
     transition: background 0.2s, transform 0.2s;
 }

 .terms-close:hover {
     background: rgba(255, 255, 255, 0.25);
     transform: rotate(90deg);
 }

 .terms-body {
     padding: 2rem;
 }

 .terms-intro {
     font-size: 0.9rem;
     line-height: 1.6;
     color: var(--gray-dark);
     margin-bottom: 1.5rem;
 }

 .terms-features {
     background: var(--gray-light);
     padding: 1.25rem 1.5rem;
     margin-bottom: 1.5rem;
     border-left: 3px solid var(--black);
 }

 .feature-item {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 8px;
     font-size: 0.875rem;
     color: var(--gray-dark);
 }

 .feature-item:last-child {
     margin-bottom: 0;
 }

 .feature-item i {
     color: var(--black);
     font-size: 0.8rem;
 }

 .terms-agreement {
     margin-bottom: 1.5rem;
 }

 .terms-checkbox {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     cursor: pointer;
     font-size: 0.875rem;
     color: var(--gray-dark);
     line-height: 1.5;
 }

 .terms-checkbox input[type="checkbox"] {
     display: none;
 }

 .checkmark {
     width: 20px;
     height: 20px;
     border: 1.5px solid var(--gray-mid);
     border-radius: 2px;
     position: relative;
     flex-shrink: 0;
     margin-top: 2px;
     transition: all 0.2s;
 }

 .terms-checkbox input:checked+.checkmark {
     background: var(--black);
     border-color: var(--black);
 }

 .checkmark::after {
     content: '';
     position: absolute;
     display: none;
     left: 6px;
     top: 2px;
     width: 5px;
     height: 10px;
     border: solid var(--white);
     border-width: 0 1.5px 1.5px 0;
     transform: rotate(45deg);
 }

 .terms-checkbox input:checked+.checkmark::after {
     display: block;
 }

 .terms-link {
     color: var(--black);
     font-weight: 600;
     text-decoration: none;
 }

 .terms-link:hover {
     text-decoration: underline;
 }

 .terms-buttons {
     display: flex;
     gap: 1rem;
     margin-bottom: 1.5rem;
 }

 .btn-terms {
     flex: 1;
     padding: 12px;
     border-radius: 2px;
     font-family: var(--font-body);
     font-weight: 500;
     font-size: 0.875rem;
     cursor: pointer;
     transition: all 0.2s;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
 }

 .btn-essential {
     background: var(--gray-light);
     color: var(--gray-dark);
     border: 1px solid rgba(0, 0, 0, 0.1);
 }

 .btn-essential:hover {
     background: rgba(0, 0, 0, 0.08);
 }

 .btn-accept {
     background: var(--black);
     color: var(--white);
     border: none;
 }

 .btn-accept:hover:not(:disabled) {
     background: var(--gray-dark);
 }

 .btn-accept:disabled {
     opacity: 0.4;
     cursor: not-allowed;
 }

 .terms-footer {
     border-top: 1px solid rgba(0, 0, 0, 0.06);
     padding-top: 1.25rem;
     text-align: center;
 }

 .terms-contact {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 6px;
     color: var(--gray-dark);
     font-size: 0.82rem;
     margin-bottom: 4px;
 }

 .terms-contact a {
     color: var(--black);
     text-decoration: none;
 }

 .terms-contact a:hover {
     text-decoration: underline;
 }

 .terms-update {
     font-size: 0.72rem;
     color: var(--gray-mid);
     font-family: var(--font-mono);
     letter-spacing: 0.08em;
 }

 @media (max-width: 480px) {
     .terms-buttons {
         flex-direction: column;
     }
 }

 /* Overrides to maintain compat with Tailwind classes */
 .bg-primary {
     background-color: var(--black) !important;
 }

 .text-primary {
     color: var(--black) !important;
 }

 .hover\:bg-primary\/90:hover {
     background-color: rgba(0, 0, 0, 0.85) !important;
 }

 .bg-dark {
     background-color: var(--white) !important;
 }

 .bg-darker {
     background-color: var(--gray-light) !important;
 }

 .text-gray-300,
 .text-gray-400 {
     color: var(--gray-dark) !important;
 }

 .border-gray-700 {
     border-color: rgba(0, 0, 0, 0.1) !important;
 }

 .text-yellow-400 {
     color: #c9a84c !important;
 }

 /* Animações de entrada */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

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

 .animate-fade-in {
     animation: fadeInUp 0.8s ease both;
 }

 .delay-100 {
     animation-delay: 0.15s;
 }

 .delay-200 {
     animation-delay: 0.3s;
 }