/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}

/* Fondo principal */
.background {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('../assets/img/background.png');
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.background-blur {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 110, 255, 0.25);
  backdrop-filter: blur(12px);
  z-index: -1;
}

/* Encabezado */
.site-header {
  width: 100%;
  padding: 20px 40px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.header-right-column {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
}

.logo-sequence {
  background: white;
  padding: 18px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 120px;
  position: relative;
  overflow: hidden;
}

.logo-step {
  position: absolute;
  height: 60px;
  width: auto;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(0.95);
}

.logo-step.visible {
  opacity: 1;
  transform: scale(1);
}

/* Main content */
.content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  color: white;
  padding-top: 100px;
  background-color: rgba(0, 0, 0, 0.4);
}

.content h1 {
  font-size: 28px;
  color: #fff;
}

.content p {
  font-size: 18px;
  color: #ddd;
}

@media (min-width: 1024px) {
  .content {
    padding-top: 220px;
  }

  .content h1 {
    font-size: 48px;
  }

  .content p {
    font-size: 24px;
  }
}

/* Ubicación */
.location-banner {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

.texas-map {
  height: 50px;
  width: auto;
  margin-right: 12px;
}

.location-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

/* Horario */
.hours-banner {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  font-size: 0.9rem;
  color: #333;
}

.hours-banner i {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #333;
}

.hours-text {
  line-height: 1.2;
}

/* Teléfono */
.phone-banner {
  margin-top: 10px;
  background-color: #ffffff20;
  padding: 10px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.phone-link {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link i {
  font-size: 18px;
  color: #4CAF50;
}

.phone-text strong {
  color: #fff;
}

/* Botones sociales */
.social-fixed {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.social-btn i {
  font-size: 1.2rem;
}

.facebook {
  background-color: #1877f2;
}

.instagram {
  background-color: #e1306c;
}

.whatsapp {
  background-color: #25d366;
}

.social-btn:hover {
  transform: scale(1.05);
}

/* Sección de servicios */

.services-section {
  width: 100%;
  background-color: #f9f9f9;
  padding: 120px 30px; /* antes era 80px 20px */
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.feature-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.feature-card {
  background-color: white;
  border-radius: 16px;
  width: 260px;
  padding: 30px 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  color: #006eff;
  margin-bottom: 18px;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.feature-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* Responsivo */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 20px;
  }

  .header-left {
    justify-content: center;
  }

  .header-right-column {
    align-items: center;
  }

  .location-banner,
  .hours-banner {
    flex-direction: row;
    justify-content: center;
    text-align: left;
    width: 100%;
    max-width: 300px;
  }

  .logo-sequence {
    width: 100px;
    height: 90px;
  }

  .texas-map {
    height: 40px;
  }

  .social-fixed {
    bottom: 15px;
    left: 15px;
    gap: 8px;
  }

  .social-btn {
    font-size: 0.8rem;
    padding: 8px 14px;
  }

   .feature-cards {
    justify-content: center;
    gap: 16px;
    padding: 0 10px;
  }

  .feature-card {
    width: 140px;
    padding: 20px 10px;
    font-size: 0.85rem;
  }
    .feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .feature-title {
    font-size: 1rem;
  }
    .feature-desc {
    font-size: 0.8rem;
  }
}
  .content {
    padding-top: 55vh;
    align-items: flex-start;
  }


/* Fondo segunda sección */
.blank-page {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
}
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: white;
  animation: bounce 2s infinite;
  z-index: 20;
  text-decoration: none;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}
.stats-container {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 20px 30px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  min-width: 140px;
}

.stat-box i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #00BFFF;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.stat-number span {
  font-size: 1.2rem;
  vertical-align: top;
  margin-left: 2px;
}

.stat-label {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 6px;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-container {
    gap: 20px;
    margin-top: 30px;
  }

  .stat-box {
    min-width: 120px;
    padding: 16px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}
.example-gallery {
  margin-top: 80px;
}

.gallery-title {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 30px;
}

/* (Código existente arriba permanece igual...) */

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 280px;
  display: flex;
  flex-direction: column;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-footer {
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  background: #fafafa;
}

.footer-buttons {
  display: flex;
  gap: 12px;
}

.footer-buttons button {
  background: none;
  border: none;
  font-size: 1rem;
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.footer-buttons button:hover {
  color: #006eff;
}

.like-btn.liked i {
  color: red;
}

.like-btn.liked {
  font-weight: bold;
}

@media (max-width: 768px) {
  .gallery-grid {
    flex-direction: column;
    align-items: center;
  }

  .gallery-item {
    width: 100%;
    max-width: 100%;
  }
}

.comment-section {
  margin-top: 10px;
  background: #f4f4f4;
  border-radius: 8px;
  padding: 12px;
  text-align: left;
}

.comment-textarea {
  width: 100%;
  padding: 10px;
  min-height: 60px;
  resize: vertical;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.send-comment-btn {
  background-color: #006eff;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
}

.send-comment-btn:hover {
  background-color: #0051c4;
}
.video-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.reel {
  flex: 0 0 300px; /* ancho fijo para que entren más en la fila */
  height: 540px;
  scroll-snap-align: start;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: black;
  position: relative;
  overflow: hidden;
}

.reel iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 768px) {
  .reel {
    flex: 0 0 100%;
  }
}
.innovation-section {
  background: #ffffff;
  padding: 100px 30px;
  color: #000000;
  text-align: center;
}

.innovation-content {
  max-width: 1000px;
  margin: auto;
}

.innovation-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #111111;
}

.innovation-text {
  font-size: 1.1rem;
  color: #333333;
  margin-bottom: 50px;
  line-height: 1.6;
}

.innovation-highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.highlight-box {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 30px 20px;
  width: 220px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.highlight-box:hover {
  transform: scale(1.05);
}

.highlight-box i {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 10px;
}

.highlight-box p {
  color: #111111;
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .highlight-box {
    width: 100%;
  }
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.revolution-section {
  background: #fff;
  color: #000;
  padding: 100px 20px;
  text-align: center;
  overflow-x: hidden;
}

.revolution-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.revolution-subtitle {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 60px;
}

.timeline {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.timeline-step {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 30px;
  width: 230px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-8px);
}

.timeline-step i {
  font-size: 2.2rem;
  color: #006eff;
  margin-bottom: 14px;
}

.timeline-step h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #111;
}

.timeline-step p {
  font-size: 0.9rem;
  color: #555;
}

@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    gap: 30px;
  }

  .timeline-step {
    width: 100%;
    max-width: 90%;
    margin: auto;
  }
}
.site-footer {
  background-color: #111;
  color: #fff;
  padding: 80px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-brand h2 {
  font-size: 1.8rem;
  color: #006eff;
  margin-bottom: 10px;
}

.footer-brand p {
  max-width: 320px;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-contact p {
  margin: 6px 0;
  font-size: 0.95rem;
  color: #ccc;
}

.footer-contact i {
  margin-right: 8px;
  color: #00d2ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #888;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand p,
  .footer-contact,
  .footer-links ul {
    max-width: 100%;
  }
}
.welcome-box {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.welcome-box h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.welcome-box p {
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .welcome-box {
    padding: 30px 20px;
  }

  .welcome-box h1 {
    font-size: 2rem;
  }

  .welcome-box p {
    font-size: 1rem;
  }
}
.vip-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.vip-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background-color: #ffb300; /* color dorado */
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.vip-btn i {
  font-size: 1.2rem;
  color: white;
}

.vip-btn:hover {
  transform: scale(1.05);
  background-color: #ffc107;
}
.about-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.about-text {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  gap: 30px;
}

.highlight-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
  padding: 20px 30px;
  max-width: 220px;
  text-align: center;
}

.highlight-box i {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 10px;
}

.highlight-box p {
  font-weight: 600;
  color: #333;
}
