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

/* Base */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #e6f1ff;
  background-color:  #0a192f;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}









header {
  background:  #0a192f;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #233554;
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: #e6f1ff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #64ffda;
}




.hero {
  height: 100vh;
  background: linear-gradient(rgba(10,25,47,0.7), rgba(10,25,47,0.7)),
              url('logo-blanco.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #e6f1ff;
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  max-width: 700px;
}

.hero-logo {
  width: 100%;
  max-width: 400px;
  height: auto;
}




.services {
  padding: 80px 0;
  background: #0a192f;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.service-card {
  background: #112240;
  border: 1px solid #233554;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 6px;
}

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

.collapse-btn {
  background: transparent;
  color: #64ffda;
  border: 1px solid #64ffda;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.collapse-btn:hover {
  background: rgba(100, 255, 218, 0.1);
}

.collapse-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.collapse-content.active {
  max-height: 500px;
  margin-top: 12px;
}

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

.service-features li {
  list-style: none;
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.service-features li:before {
  content: "✓";
  color: #25D366;
  font-weight: bold;
  position: absolute;
  left: 0;
}


.numbered-list {
  list-style-type: decimal;
  margin-left: 1.5rem;
  padding-left: 1rem;
}

.numbered-list li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}




.info-section {
  padding: 80px 0;
  background: #0a192f;
}


.center-logoicon {
  display: block;
  margin: 0 auto;
  max-width: 180px; /* o el tamaño que desees */
  height: auto;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 500;
}

.info-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.info-text p {
  margin-bottom: 15px;
  opacity: 0.9;
}

.comparison-box {
  background: #112240;
  border: 1px solid #233554;
  color: #e6f1ff;
}




.tarifas {
  padding: 80px 0;
  background: #000;
  text-align: center;
}

.tarifas-box {
  margin-top: 20px;
}

.tarifas-img {
  width: 100%;
  max-width: 400px;
  border-radius: 6px;
  margin-bottom: 15px;
}

.tarifas-note {
  font-size: 0.9rem;
  opacity: 0.8;
}




.contact {
  padding: 80px 0;
  background: #000;
  text-align: center;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  margin-bottom: 12px;
  font-size: 1rem;
}

.btn-whatsapp, .btn-call {
  display: inline-block;
  padding: 12px 20px;
  margin: 5px 0;
  border-radius: 6px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-whatsapp {
  background: #25D366;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
  background: #20b954;
}

.btn-call {
  background: #007bff;
}

.btn-call:hover {
  transform: scale(1.05);
  background: #0069d9;
}




footer {
  background: #0a192f;
  color: #8892b0;
  text-align: center;
  border-top: 1px solid #233554;
  font-size: 0.9rem;
}




@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-logo {
    max-width: 250px;
  }

  .info-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}




.btn-whatsapp,
.btn-telegram {
  display: inline-block;
  padding: 12px 20px;
  margin: 5px 0;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: transform 0.2s, opacity 0.2s;
}

.btn-whatsapp {
  background: #25D366; /* Verde WhatsApp */
}

.btn-telegram {
  background: #0088cc; /* Azul Telegram */
}

.btn-whatsapp:hover,
.btn-telegram:hover {
  transform: scale(1.05);
  opacity: 0.9;
}



/* Estilo circular para videos */
.video-frame {
  width: 260px;
  height: 260px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #25b0d3; /* verde WhatsApp para resaltar */
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-frame iframe,
.video-frame video,
.video-frame .tiktok-embed,
.video-frame .fb-video {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
