* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    background-color: ;
    color: white;
    scroll-behavior: smooth;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1a1d2e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    z-index: 1000;
}
.logo {
    font-weight: 800;
    font-size: 1.5rem;
}
.logo img {
    height: 100px;
    display: block;
}

.logo span {
    color: white;
}
/* Logo + Slogan juntos */
.logo-slogan {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    display: block;
}

.slogan {
    font-size: 0.9rem;
    color: white;
    font-weight: 400;
    white-space: nowrap;
}

/* Responsive: ocultar slogan en móvil para que no ocupe mucho */
@media (max-width: 768px) {
    .slogan {
        display: none;
    }
}

.nav {
    display: flex;
    gap: 20px;
}
.nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.nav a:hover {
    color: #cccccc;
}
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero con degradado animado */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(135deg, #25263e, #1b1c2d, #25263e);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
}

/* Animación del fondo */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Texto flotante */
.floating-text {
    animation: float 6s ease-in-out infinite;
}
.floating-text.delay {
    animation-delay: 1.5s;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Títulos y párrafos */
.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

/* Botón animado */
.pulse {
    position: relative;
    overflow: hidden;
    animation: pulseAnim 2s infinite;
}
@keyframes pulseAnim {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.btn {
    display: inline-block;
    background: white;
    color: #25263e;
    padding: 10px 20px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}
.btn:hover {
    background: #cccccc;
}

/* Sections */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}
.section h2 {
    text-align: center;
    margin-bottom: 30px;
}
.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.demo-card {
    background: #1b1c2d;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}
.demo-card img {
    width: 100%;
    border-radius: 10px;
}
.demo-card a {
    display: block;
    margin-top: 10px;
    color: white;
    text-decoration: underline;
}
/* Sección Demo */
.demo-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.demo-section .section-title {
  font-size: 2.5rem;
  color: #1a1d2e ;
  margin-bottom: 10px;
}

.demo-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.demo-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.demo-logo {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

.demo-card h3 {
  color: #1b135b;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.demo-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.demo-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #1a1d2e;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.demo-btn:hover {
  background: #b7832d;
}


/* Paquetes */
.paquetes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.paquete {
    background: #1b1c2d;
    padding: 20px;
    border-radius: 10px;
}
.paquete h3 {
    margin-bottom: 10px;
}
.precio {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 15px;
}
.paquete ul {
    list-style: none;
    line-height: 1.6;
}
.paquetes-section {
  background: #1a1d2e; /* Fondo de toda la sección */
  color: #ffffff;       /* Texto de la sección fuera de las tarjetas */
  padding: 60px 20px;
  text-align: center;
}

.paquetes-section .section-title {
  font-size: 2.5rem;
  color: #ffffff; /* título de sección en blanco */
  margin-bottom: 40px;
}

.paquetes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Tarjetas blancas */
.paquete-card {
  background: #ffffff; /* fondo blanco */
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.paquete-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.paquete-title {
  font-size: 1.5rem;
  color: #1b135b; /* título en azul oscuro */
  margin-bottom: 10px;
}

.paquete-price {
  font-size: 1.3rem;
  color: #1b135b; /* precio en azul oscuro */
  font-weight: bold;
  margin-bottom: 15px;
}

.paquete-list {
  list-style: disc;
  padding-left: 20px;
  color: #1b135b; /* texto de lista en azul oscuro */
  font-size: 0.95rem;
  line-height: 1.6;
}

.paquete-list li {
  margin-bottom: 8px;
}
.paquete-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #d19a3c; /* dorado */
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.paquete-btn:hover {
  background: #b7832d;
  transform: translateY(-3px);
}

/* Opcional: diferenciar ligeramente la tarjeta personalizada */
.paquete-personalizado {
  border: 2px dashed #d19a3c;
}



/* Contacto */

.contacto-section {
  background: #1a1d2e;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.contacto-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contacto-section .contact-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.contact-info p {
  margin: 8px 0;
}

/* Botones de redes y formulario */
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  border-radius: 25px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.contact-btn .icon {
  width: 20px;
  height: 20px;
}

.contact-btn.facebook { background: #3b5998; }
.contact-btn.instagram { background: #d6249f; }
.contact-btn.form { background: #d19a3c; }

.contact-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* WhatsApp flotante */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-btn img {
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.whatsapp-popup {
  display: none;
  width: 280px;
  background: #25d366;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  position: absolute;
  bottom: 70px;
  right: 0;
  font-family: Arial, sans-serif;
}

.whatsapp-header {
  background: #128c7e;
  padding: 10px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.whatsapp-header span {
  font-weight: bold;
}

.whatsapp-header .close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.whatsapp-body {
  padding: 15px;
  text-align: center;
}

.whatsapp-link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: #075e54;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
}

.whatsapp-link:hover {
  background: #128c7e;
}


/* Footer */
.footer {
    background: #1b1c2d;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* WhatsApp */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        background: #25263e;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 20px;
    }
    .nav.show {
        display: flex;
    }
    .hamburger {
        display: block;
    }
}

.conocenos-section {
  background-color: #1a1d2e; /* Azul de fondo */
  color: #ffffff; /* Texto en blanco */
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 30px;
}

.carousel-container {
  margin-bottom: 50px;
}

.carousel-container h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  animation: scroll 20s linear infinite;
}

.carousel-track img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.carousel-track blockquote {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  font-style: italic;
  color: #333;
  min-width: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.carousel-track cite {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #1b135b;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.vision-mision {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.vision-mision .card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 300px;
  max-width: 400px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.vision-mision h3 {
  color: #1b135b;
  margin-bottom: 10px;
}

.vision-mision p {
  color: #555;
}

