/* ===== RESET & VARIABLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #FF8C42;
  --primary-light: #FFB366;
  --primary-dark: #E67A2E;
  --secondary: #1a1a1a;
  --secondary-light: #2d2d2d;
  --text: #f5f5f5;
  --text-dark: #cccccc;
  --bg: #0a0a0a;
  --accent: #FFD700;
  
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

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

/* ===== CURSOR CUSTOMIZADO ===== */
.cursor, .cursor-follower {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.15s ease;
}

.cursor {
  background: var(--primary);
  transform: translate(-50%, -50%);
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-light);
  background: transparent;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

body:hover .cursor {
  transform: translate(-50%, -50%) scale(1.5);
}

a:hover ~ .cursor,
button:hover ~ .cursor {
  transform: translate(-50%, -50%) scale(2);
  background: var(--accent);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 140, 66, 0.1);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(10, 10, 10, 0.95);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-link {
  position: relative;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.cta-nav {
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 25px;
  font-weight: 600;
}

.cta-nav::after {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 3px;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 140, 66, 0.15), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.1), transparent 50%),
    linear-gradient(135deg, var(--secondary) 0%, var(--bg) 100%);
  z-index: -1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,140,66,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.hero-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-subtitle::before,
.hero-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px;
  height: 1px;
  background: var(--primary);
}

.hero-subtitle::before {
  right: calc(100% + 20px);
}

.hero-subtitle::after {
  left: calc(100% + 20px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-accent {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-dark);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--bg);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--bg);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 3rem 0;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--accent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ===== SECTION STYLES ===== */
.section-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 8rem 2rem;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 5rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 600px;
}

.about-image-wrapper {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.3), rgba(255, 215, 0, 0.2));
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.about-image-wrapper:hover::before {
  opacity: 1;
}

.about-img-1 {
  width: 65%;
  height: 75%;
  top: 0;
  left: 0;
  z-index: 2;
}

.about-img-2 {
  width: 55%;
  height: 65%;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-image-wrapper:hover img {
  transform: scale(1.1);
}

.image-frame {
  position: absolute;
  inset: -10px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  z-index: -1;
}

.about-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.2;
}

.about-text {
  padding: 2rem 0;
}

.text-reveal p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.about-intro {
  font-size: 1.2rem !important;
  color: var(--text) !important;
}

.highlight {
  color: var(--primary);
  font-weight: 600;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.about-mission {
  font-style: italic;
  font-size: 1.1rem !important;
  color: var(--primary-light) !important;
  padding: 1.5rem;
  border-left: 3px solid var(--primary);
  background: rgba(255, 140, 66, 0.05);
  border-radius: 0 10px 10px 0;
  margin-top: 2rem !important;
}

.about-qualities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.quality-item {
  padding: 2rem;
  background: rgba(255, 140, 66, 0.05);
  border: 1px solid rgba(255, 140, 66, 0.2);
  border-radius: 15px;
  transition: var(--transition);
  text-align: center;
}

.quality-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  background: rgba(255, 140, 66, 0.1);
}

.quality-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.quality-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-light);
}

.quality-item p {
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--bg) 100%);
  position: relative;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.service-card {
  padding: 3rem;
  background: rgba(255, 140, 66, 0.03);
  border: 1px solid rgba(255, 140, 66, 0.2);
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  background: rgba(255, 140, 66, 0.08);
  box-shadow: 0 20px 60px rgba(255, 140, 66, 0.2);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.service-description {
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 140, 66, 0.1);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.service-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition);
}

.service-btn:hover {
  background: var(--primary);
  color: var(--bg);
  transform: translateX(5px);
}

/* ===== GALLERY SECTION ===== */
.gallery {
  padding: 8rem 2rem;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 2rem;
  background: transparent;
  border: 2px solid rgba(255, 140, 66, 0.3);
  color: var(--text-dark);
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg);
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: 1/2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.8), rgba(255, 215, 0, 0.6));
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

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

.gallery-icon {
  width: 60px;
  height: 60px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  transform: scale(0);
  transition: var(--transition);
}

.gallery-item:hover .gallery-icon {
  transform: scale(1);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--bg) 100%);
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.testimonial-card {
  padding: 3rem;
  background: rgba(255, 140, 66, 0.05);
  border: 1px solid rgba(255, 140, 66, 0.2);
  border-radius: 20px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  background: rgba(255, 140, 66, 0.1);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.testimonial-author span {
  color: var(--primary);
  font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 8rem 2rem;
  position: relative;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-info {
  padding: 2rem 0;
}

.contact-description {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 140, 66, 0.05);
  border: 1px solid rgba(255, 140, 66, 0.2);
  border-radius: 15px;
  transition: var(--transition);
}

.contact-method:hover {
  transform: translateX(10px);
  border-color: var(--primary);
  background: rgba(255, 140, 66, 0.1);
}

.method-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
}

.method-info {
  display: flex;
  flex-direction: column;
}

.method-label {
  font-size: 0.85rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.method-value {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 600;
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
}

.contact-form-wrapper {
  padding: 3rem;
  background: rgba(255, 140, 66, 0.03);
  border: 1px solid rgba(255, 140, 66, 0.2);
  border-radius: 20px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-light);
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 140, 66, 0.05);
  border: 2px solid rgba(255, 140, 66, 0.2);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 140, 66, 0.1);
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
  pointer-events: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:valid + label {
  top: -0.7rem;
  left: 0.7rem;
  font-size: 0.8rem;
  color: var(--primary);
  background: var(--bg);
  padding: 0 0.5rem;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--bg);
  cursor: pointer;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  padding: 4rem 2rem 2rem;
  background: var(--secondary);
  border-top: 1px solid rgba(255, 140, 66, 0.2);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: var(--text-dark);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.footer-column h4 {
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.footer-column a {
  display: block;
  padding: 0.5rem 0;
  color: var(--text-dark);
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 140, 66, 0.1);
  text-align: center;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.dev-link {
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition);
}

.dev-link:hover {
  color: var(--primary-light);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 140, 66, 0.2);
  border: 2px solid var(--primary);
  color: var(--text);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.lightbox-close {
  top: 2rem;
  right: 2rem;
}

.lightbox-prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text);
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-images {
    height: 500px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero {
    padding: 6rem 1rem 2rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .about-images {
    height: 400px;
  }
  
  body {
    cursor: auto;
  }
  
  .cursor,
  .cursor-follower {
    display: none;
  }
}

.item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-number::after {
  content: '+';
}

/* ===== LANGUAGE SWITCHER ===== */
.language-switcher {
  position: fixed;
  top: 100px;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 140, 66, 0.2);
}

.lang-btn {
  width: 45px;
  height: 45px;
  border: 2px solid rgba(255, 140, 66, 0.3);
  background: transparent;
  color: var(--text-dark);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: var(--primary);
  color: var(--bg);
  transform: scale(1.1);
}

/* ===== ÍCONES FONT AWESOME ===== */
.quality-icon i,
.service-icon i {
  font-size: 2.5rem;
  color: var(--primary);
}

.method-icon i {
  font-size: 1.8rem;
  color: var(--bg);
}

.testimonial-stars i {
  font-size: 1.2rem;
  margin: 0 2px;
}

/* ===== CORREÇÕES FORMULÁRIO ===== */
.form-group input:placeholder-shown + label,
.form-group textarea:placeholder-shown + label {
  top: 1rem;
  left: 1rem;
  font-size: 1rem;
  color: var(--text-dark);
  background: transparent;
  padding: 0;
}

.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group input:focus + label,
.form-group textarea:focus + label {
  top: -0.7rem;
  left: 0.7rem;
  font-size: 0.8rem;
  color: var(--primary);
  background: var(--bg);
  padding: 0 0.5rem;
}

.form-group select + label {
  top: -0.7rem;
  left: 0.7rem;
  font-size: 0.8rem;
  color: var(--primary);
  background: var(--bg);
  padding: 0 0.5rem;
}

.form-group select option:first-child {
  display: none;
}

/* ===== MELHORIAS RESPONSIVO MOBILE ===== */
@media (max-width: 768px) {
  .language-switcher {
    top: auto;
    bottom: 2rem;
    right: 1rem;
    flex-direction: row;
    padding: 0.4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }
  
  .lang-btn {
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
  }
  
  .about-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    height: auto;
    padding: 0;
  }
  
  .about-img-1,
  .about-img-2 {
    position: relative;
    width: 100%;
    height: 300px;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
  }
  
  .about-decoration {
    display: none;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .contact-methods {
    gap: 1rem;
  }
  
  .contact-method {
    padding: 1rem;
  }
  
  .method-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .method-info {
    font-size: 0.9rem;
  }
  
  .method-value {
    font-size: 1rem !important;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .about-text {
    padding: 1rem 0;
  }
  
  .about-qualities {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .quality-item {
    padding: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-header,
  .services-header,
  .gallery-header,
  .testimonials-header {
    margin-bottom: 3rem;
  }
  
  .about,
  .services,
  .gallery,
  .testimonials,
  .contact {
    padding: 4rem 1.5rem;
  }
  
  .footer {
    padding: 3rem 1.5rem 2rem;
  }
  
  .gallery-grid {
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {

  .language-switcher {
    bottom: 1.5rem;
    right: 0.5rem;
  }
  
  .lang-btn {
    width: 35px;
    height: 35px;
    font-size: 0.7rem;
  }

  .nav-container {
    padding: 0 1rem;
  }
  
  .logo {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 5rem 1rem 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-title {
    font-size: 1.5rem;
  }
  
  .contact-form h3 {
    font-size: 1.5rem;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 0.95rem;
  }
  
  .about-img-1,
  .about-img-2 {
    height: 250px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

/* ===== MELHORIAS VISUAIS PROFISSIONAIS ===== */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(255, 140, 66, 0.1), transparent);
  transition: var(--transition);
  pointer-events: none;
}

.service-card:hover::after {
  height: 100%;
}

.contact-method::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 0 10px 10px 0;
  opacity: 0;
  transition: var(--transition);
}

.contact-method {
  position: relative;
}

.contact-method:hover::before {
  opacity: 1;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  font-family: var(--font-display);
  color: var(--primary);
  opacity: 0.1;
  line-height: 1;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
}

.btn-primary svg,
.btn-primary i {
  transition: var(--transition);
}

.btn-primary:hover svg,
.btn-primary:hover i {
  transform: translateX(5px);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--primary);
  border-radius: 15px;
  opacity: 0;
  transform: scale(0.95);
  transition: var(--transition);
  pointer-events: none;
  z-index: 3;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: scale(1);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: -5px;
  background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary));
  background-size: 300% 300%;
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
  animation: gradientShift 3s ease infinite;
}

.about-image-wrapper:hover::after {
  opacity: 0.5;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Melhorias nos botões */
.service-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  border-radius: 25px;
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.service-btn {
  position: relative;
  overflow: hidden;
}

.service-btn:hover::before {
  opacity: 0.2;
}

/* Smooth scroll para mobile */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }
}

/* Accessibility improvements */
.btn:focus,
.filter-btn:focus,
.lang-btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.nav-link:focus,
.contact-method:focus {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

/* Print styles */
@media print {
  .navbar,
  .language-switcher,
  .hamburger,
  .scroll-indicator,
  .cursor,
  .cursor-follower {
    display: none !important;
  }
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(26, 26, 26, 0.65) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
  z-index: 1;
}

.hero-video-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 140, 66, 0.15), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.1), transparent 50%);
  z-index: 2;
}

.hero-video-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,140,66,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
  z-index: 3;
}

.hero-bg {
  z-index: 0;
}

.hero-content {
  z-index: 10;
  position: relative;
}

.scroll-indicator {
  z-index: 10;
}

.hero {
  padding-top: 10rem;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 8rem;
  }
}