* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.section-tag {
  display: inline-block;
  color: #d8a34d;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  font-weight: 600;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.section-header p {
  color: #b8b8b8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.4s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #e3b25f, #c98a2f);
  color: #050505;
  box-shadow: 0 0 30px rgba(201, 138, 47, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(201, 138, 47, 0.5);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.loader {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
}

.loader img {
  width: 240px;
  animation: pulse 2s infinite;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.03);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.4s ease;
  padding: 20px 0;
}

.header.scrolled {
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 220px;
}

.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  color: #ffffff;
  font-size: 15px;
  transition: 0.3s ease;
  position: relative;
}

.nav a:hover {
  color: #d8a34d;
}

.header-btn {
  background: linear-gradient(135deg, #e3b25f, #c98a2f);
  color: #050505;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.4s ease;
}

.header-btn:hover {
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  background: #050505;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.hero-bg {
  position: relative;
  width: 100%;
  line-height: 0;
}

.hero-bg img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.hero-overlay {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image img {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.about-content h2 {
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.about-content p {
  color: #bdbdbd;
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 17px;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.about-points div {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px;
  border-radius: 22px;
}

.about-points strong {
  display: block;
  margin-bottom: 10px;
  color: #d8a34d;
  font-size: 20px;
}

.about-points span {
  color: #b8b8b8;
  line-height: 1.7;
}

.services-feature {
  margin-bottom: 70px;
}

.services-feature img {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 38px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(216, 163, 77, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
}

.service-card p {
  color: #bdbdbd;
  line-height: 1.8;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 42px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.process-card span {
  color: #d8a34d;
  font-size: 56px;
  font-weight: 800;
  display: block;
  margin-bottom: 18px;
}

.process-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
}

.process-card p {
  color: #bdbdbd;
  line-height: 1.8;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 42px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 90px;
  color: rgba(216, 163, 77, 0.08);
}

.stars {
  color: #d8a34d;
  margin-bottom: 24px;
  font-size: 20px;
}

.testimonial-card p {
  color: #d0d0d0;
  line-height: 1.9;
  margin-bottom: 24px;
}

.testimonial-card strong {
  color: #ffffff;
}

.cta-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #050505;
  padding: 0;
  margin: 0;
}

.cta-bg {
  position: relative;
  width: 100%;
  line-height: 0;
}

.cta-bg img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.cta-overlay {
  display: none;
}

.footer {
  background: #030303;
  padding-top: 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
}

.footer-brand img {
  width: 220px;
  margin-bottom: 24px;
}

.footer-brand p {
  color: #b8b8b8;
  line-height: 1.9;
}

.footer-info h3,
.footer-nav h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

.footer-info p,
.footer-nav a {
  color: #b8b8b8;
  margin-bottom: 14px;
  display: block;
  transition: 0.3s ease;
}

.footer-info a {
  color: #b8b8b8;
}

.footer-info a:hover,
.footer-nav a:hover {
  color: #d8a34d;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
  text-align: center;
}

.footer-bottom p {
  color: #9f9f9f;
  margin-bottom: 8px;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e3b25f, #c98a2f);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 0 40px rgba(201, 138, 47, 0.45);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float span {
  color: #050505;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(70px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* HERO WHATSAPP */

.hero-bg {
  position: relative;
}

.hero-whatsapp {
  position: absolute;
  width: 220px;
  height: 70px;

  right: 12%;
  bottom: 16%;

  z-index: 5;
  border-radius: 16px;
}

/* CTA WHATSAPP */

.cta-section {
  position: relative;
}

.cta-whatsapp {
  position: absolute;
  width: 240px;
  height: 75px;

  left: 9%;
  bottom: 18%;

  z-index: 5;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .hero {
    min-height: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .hero-bg {
    position: relative !important;
    line-height: 0 !important;
  }

  .hero-bg img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
  }

  .cta-section {
    min-height: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .cta-image,
  .cta-bg img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
  }
}
