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

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #050505;
  color: #f5f5f5;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  margin: 0 0 0.5rem;
  font-weight: 700;
}

/* Layout helpers */

section {
  padding: 4rem 1.5rem;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: #d0d0d0;
}

/* Header */

.header {
  background: radial-gradient(circle at top left, #a00000, #050505 45%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.header-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 1.5rem 0.5rem;
  align-items: center;
}

.logo-area {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid #ff2020;
}

.logo-text h1 {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-text p {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: #f0f0f0;
}

.tagline-small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffb347;
}

.header-contact {
  text-align: right;
  font-size: 0.8rem;
}

.header-info span {
  display: block;
  color: #f0f0f0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.btn-primary {
  background: linear-gradient(135deg, #ff3131, #ff7b39);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 49, 49, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(255, 49, 49, 0.6);
}

.btn-outline {
  border-color: #ffffff44;
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: #ffffff11;
}

/* Nav */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 1.5rem 1.2rem;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5,5,5,0.9), rgba(5,5,5,0.75));
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #f8f8f8;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
}

.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e0e0e0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff3131, #ffb347);
  transition: width 0.18s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  padding: 2.5rem 1.5rem 4rem;
  align-items: center;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.04), transparent 55%),
              radial-gradient(circle at 100% 0%, rgba(255, 49, 49, 0.13), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

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

.hero-content h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  color: #f0f0f0;
  max-width: 600px;
}

.hero-actions {
  margin: 1.8rem 0 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.75rem;
}

.hero-badges span {
  border-radius: 999px;
  border: 1px solid #ffffff22;
  padding: 0.35rem 0.9rem;
  background: rgba(0,0,0,0.4);
}

.hero-image {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.85);
}

.hero-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

/* About */

.about {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
}

.about-text h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.about-text p {
  color: #e1e1e1;
}

.about-list {
  margin-top: 1rem;
  color: #d0d0d0;
  padding-left: 0;
}

.about-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.5rem;
}

.about-list li::before {
  content: "•";
  position: absolute;
  left: 0.4rem;
  color: #ff7b39;
}

/* Card */

.card {
  background: radial-gradient(circle at top left, #292929, #111);
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
  border: 1px solid #ffffff12;
}

.card h3 {
  margin-bottom: 0.8rem;
}

.check-list li {
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1.6rem;
  color: #eaeaea;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #29e37c;
  font-size: 0.8rem;
  top: 0.2rem;
}

.card-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #cfcfcf;
}

/* Services */

.services {
  background: linear-gradient(180deg, #050505, #101010);
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.services-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  background: #141414;
  border-radius: 18px;
  padding: 1.6rem 1.4rem;
  text-align: left;
  border: 1px solid #ffffff15;
  box-shadow: 0 12px 30px rgba(0,0,0,0.8);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.service-card ul li {
  font-size: 0.9rem;
  color: #d5d5d5;
  margin-bottom: 0.4rem;
}

/* Why & Social */

.why {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: flex-start;
}

.why-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.social h3 {
  margin-bottom: 0.4rem;
}

.social p {
  font-size: 0.9rem;
  color: #d2d2d2;
  margin-bottom: 1rem;
}

.social-embeds {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.social-box {
  background: #131313;
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid #ffffff15;
}

.social-frame {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.6rem;
}

.social-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffb347;
}

/* Gallery */

.gallery {
  background: radial-gradient(circle at top, #1c1c1c, #050505);
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.gallery-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ffffff18;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.85);
  filter: brightness(1.05);
}

/* Video */

.video-section {
  text-align: center;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0,0,0,0.9);
  border: 1px solid #ffffff18;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
}

/* Contact */

.contact {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
  gap: 2rem;
}

.contact-info h2 {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.contact-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #e2e2e2;
}

.contact-form-wrapper {
  background: #141414;
  border-radius: 18px;
  padding: 1.5rem 1.4rem 1.8rem;
  border: 1px solid #ffffff18;
  box-shadow: 0 16px 40px rgba(0,0,0,0.85);
}

.form-group {
  margin-bottom: 0.85rem;
}

label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  color: #e4e4e4;
}

input, select, textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  border: 1px solid #3b3b3b;
  background: #0b0b0b;
  color: #f5f5f5;
  font-family: inherit;
  font-size: 0.9rem;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #ff7b39;
}

/* Map */

.map-section {
  text-align: center;
}

.map-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.9);
  border: 1px solid #ffffff18;
  aspect-ratio: 16 / 9;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */

.footer {
  text-align: center;
  padding: 1.8rem 1rem 2.5rem;
  font-size: 0.8rem;
  color: #b0b0b0;
  background: #050505;
  border-top: 1px solid #ffffff15;
}

.footer a {
  color: #ffb347;
}

/* Floating buttons */

.whatsapp-floating {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 40;
}

.wa-btn {
  background: #25d366;
  color: #fff;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 12px 25px rgba(0,0,0,0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wa-secondary {
  background: #128c7e;
}

.call-floating {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.2rem;
  padding: 0.6rem 1.6rem;
  background: #ff3131;
  color: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 15px 35px rgba(0,0,0,0.85);
  z-index: 35;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.9);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
}

/* Responsive */

@media (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 1.5rem;
  }

  .hero-image {
    order: -1;
  }

  .about,
  .services-grid,
  .why,
  .social-embeds,
  .contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .call-floating {
    display: none;
  }
}

@media (max-width: 720px) {
  .header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-contact {
    text-align: left;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    right: 1.5rem;
    top: 100%;
    margin-top: 0.4rem;
    background: #050505f2;
    border-radius: 14px;
    padding: 0.6rem 0.7rem;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 190px;
    border: 1px solid #ffffff22;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .whatsapp-floating {
    right: 0.6rem;
    bottom: 0.6rem;
  }
}

@media (max-width: 480px) {
  section {
    padding-inline: 1rem;
  }

  .hero-content h2 {
    font-size: 1.7rem;
  }

  .gallery-grid {
    grid-template-columns: minmax(0,1fr);
  }
}
