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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #111111;
  color: #ffffff;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title p {
  color: #e53935;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
}

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

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.nav-container {
  min-height: 85px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.logo img {
  width: auto;
  height: 90px;
  object-fit: contain;
  
}

.logo-text h2 {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.1;
}

.logo-text p {
  font-size: 0.88rem;
  color: #cfcfcf;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  color: #f3f3f3;
  font-weight: 600;
  transition: 0.3s;
}

.nav a:hover,
.nav a.active {
  color: #e53935;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-btn {
  background: #e53935;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.lang-btn:hover {
  background: #c62828;
}

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  background: url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.45));
}

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

.hero-text {
  max-width: 700px;
}

.tagline {
  color: #e53935;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero h1 span {
  color: #e53935;
}

.hero-description {
  font-size: 1.1rem;
  color: #e4e4e4;
  max-width: 620px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-primary {
  background: #e53935;
  color: #fff;
}

.btn-primary:hover {
  background: #c62828;
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #111;
}

/* ABOUT */
.about {
  background: #161616;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 35px;
  align-items: start;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  color: #d7d7d7;
  margin-bottom: 16px;
}

.about-card {
  background: #1e1e1e;
  border: 1px solid rgba(229, 57, 53, 0.2);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.about-card h3 {
  margin-bottom: 18px;
  color: #e53935;
}

.about-card ul {
  list-style: none;
}

.about-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #e8e8e8;
}

/* SERVICES */
.services-preview {
  background: #111111;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: #191919;
  padding: 28px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 57, 53, 0.35);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.service-card p {
  color: #d4d4d4;
}

.center-button {
  text-align: center;
  margin-top: 35px;
}

/* REVIEWS */
.reviews {
  background: #161616;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
}

.review-card {
  background: #1e1e1e;
  padding: 24px;
  border-radius: 18px;
  margin-bottom: 18px;
  border-left: 4px solid #e53935;
}

.review-card p {
  color: #ededed;
  margin-bottom: 12px;
}

.review-card h4 {
  color: #bdbdbd;
  font-size: 0.95rem;
}

.google-review-box {
  background: #1e1e1e;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(229, 57, 53, 0.18);
}

.google-review-box h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.google-review-box p {
  color: #d7d7d7;
  margin-bottom: 20px;
}

.review-btn {
  margin-bottom: 25px;
}

.qr-box {
  background: #151515;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.qr-box img {
  width: 180px;
  margin: 15px auto;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
}

.qr-box small {
  color: #bfbfbf;
}

/* CONTACT */
.contact {
  background: #111111;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.contact-card {
  background: #1b1b1b;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
}

.contact-card h3 {
  margin-bottom: 12px;
  color: #e53935;
}

.contact-card p {
  color: #d8d8d8;
}

/* FOOTER */
.footer {
  background: #0c0c0c;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer h3 {
  margin-bottom: 8px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  background: #25d366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #20ba5a;
}

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

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

  .about-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-container {
    flex-direction: column;
    padding: 15px 0;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: 75vh;
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }
}

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

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .logo {
    flex-direction: column;
    text-align: center;
  }
}.services-hero {
  background: url('images/services-hero.jpg') center/cover no-repeat;
}

.services-intro {
  background: #161616;
}

.intro-box {
  max-width: 950px;
  margin: 0 auto;
  background: #1d1d1d;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
}

.intro-box p {
  color: #d7d7d7;
  margin-bottom: 14px;
}

.detailed-services {
  background: #111111;
}

.detailed-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.detail-card {
  background: #1a1a1a;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.3s;
}

.detail-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 57, 53, 0.3);
}

.detail-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: #ffffff;
}

.detail-card p {
  color: #d6d6d6;
  margin-bottom: 16px;
}

.detail-card ul {
  padding-left: 20px;
}

.detail-card ul li {
  color: #ececec;
  margin-bottom: 10px;
}

.why-choose-us {
  background: #161616;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  background: #1e1e1e;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #e53935;
}

.why-card p {
  color: #dddddd;
}

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

@media (max-width: 800px) {
  .detailed-services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #ffffff;
  border-radius: 999px;
  transition: 0.3s;
  margin: 0 auto;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 820px) {
  .nav-container {
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 95px;
    padding: 12px 0;
  }

  .menu-toggle {
    display: flex;
    order: 3;
  }

  .header-actions {
    order: 2;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 14px 30px rgba(0,0,0,0.28);
    z-index: 1000;
  }

  .nav.show {
    display: flex;
  }

  .nav a {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .logo {
    flex-direction: row;
    text-align: left;
  }

  .logo img {
    height: 65px;
    width: auto;
  }

  .logo-text h2 {
    font-size: 1rem;
  }

  .logo-text p {
    font-size: 0.82rem;
  }
}

@media (max-width: 600px) {
  .nav-container {
    min-height: 88px;
  }

  .logo img {
    height: 58px;
  }

  .lang-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }
}
/* GALLERY HERO BACKGROUND */
.gallery-hero {
  background: url('images/gallery-bg.jpg') center center no-repeat;
  background-size: cover;
}

/* FIX POR SI OTRO HERO LO PISA */
.gallery-hero {
  background: url('images/gallery-bg.jpg') center center no-repeat !important;
  background-size: cover;
}

/* SITE FIXES */
.stars {
  color: #FFD700;
  font-size: 1.5rem;
  letter-spacing: 3px;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.45);
}

.gallery-hero {
  background: url('images/gallery-bg.jpg') center center / cover no-repeat !important;
}


/* SOCIAL SECTION */
.social-section {
  background: #111111;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.social-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  transition: 0.3s ease;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.08);
}

.fb { background: #1877f2; }
.ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.yt { background: #ff0000; }
.tt { background: #000000; border: 1px solid #333333; }

@media (max-width: 600px) {
  .social-icons {
    gap: 18px;
  }

  .social-icon {
    width: 62px;
    height: 62px;
    font-size: 25px;
  }
}
/* SOCIAL MEDIA ICONS */
.social-section {
  background: #161616;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.social-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  transition: 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.08);
}

.fb {
  background: #1877f2;
}

.ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.yt {
  background: #ff0000;
}

.tt {
  background: #000000;
  border: 1px solid #333333;
}

/* YOUTUBE PREVIEW CARDS */
.youtube-video {
  position: relative;
  width: 100%;
  height: 260px;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}

.youtube-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s ease;
}

.youtube-video:hover .youtube-thumb {
  transform: scale(1.05);
  filter: brightness(0.75);
}

.youtube-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.youtube-play i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(229, 57, 53, 0.95);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  padding-left: 4px;
}

.youtube-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 640px) {
  .youtube-video {
    height: 420px;
  }
}
/* PULSE ANIMATION */
.pulse {
  display: inline-block;
  animation: pulseEffect 1.8s infinite;
}

@keyframes pulseEffect {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.85;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* PREMIUM PULSE + GLOW */
.pulse-pro {
  display: inline-block;
  color: #e53935;
  font-weight: 800;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    text-shadow: 0 0 5px rgba(229, 57, 53, 0.4);
  }
  50% {
    transform: scale(1.08);
    text-shadow: 0 0 15px rgba(229, 57, 53, 0.9);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 5px rgba(229, 57, 53, 0.4);
  }
}
/* PRODUCTS PAGE */
.products-hero {
  min-height: 60vh;
  background: url('images/products-bg.jpg') center center / cover no-repeat;
}

.products-section {
  background: #111111;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #1b1b1b;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 57, 53, 0.35);
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: #ffffff;
  padding: 12px;
}

.product-info {
  padding: 18px;
}

.product-info h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.15rem;
}

.product-info p {
  color: #d4d4d4;
  margin-bottom: 16px;
  min-height: 54px;
}

.product-info .btn {
  width: 100%;
  text-align: center;
}

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

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

  .product-card img {
    height: 240px;
  }
}
.products-hero .hero-overlay {
  background: rgba(0,0,0,0.35) !important;
}

/* GALLERY GRID FIX */
.gallery-section-dark .media-grid,
.gallery-section-gray .media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1000px) {
  .gallery-section-dark .media-grid,
  .gallery-section-gray .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-section-dark .media-grid,
  .gallery-section-gray .media-grid {
    grid-template-columns: 1fr;
  }
}
.google-review-box {
  text-align: center;
}

.google-review-box p {
  text-align: center;
}

.review-btn {
  display: inline-block;
  margin-top: 15px;
}