@charset "utf-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(145deg, #001F3F 0%, #000F1F 100%);
  font-family: 'Inter', sans-serif;
  color: #FFFFFF;
  line-height: 1.5;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../avif/8.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

body>* {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
.orbitron,
.logo-brand,
.nav-link,
.btn,
.section-title,
.card-title,
.footer-title,
.modal-title {
  font-family: 'Orbitron', monospace;
  letter-spacing: 0.5px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER FULL WIDTH con logo y nombre centrado ========== */
.hero-header {
  width: 100%;
  background: linear-gradient(135deg, #00162B 0%, #00102A 100%);
  padding: 2rem 1rem 1.8rem;
  text-align: center;
  border-bottom: 3px solid #FFD966;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.bandera-header {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 250px;
  height: auto;
  border-radius: 6px;
  opacity: 0.7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.logo-full {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.logo-icon {
  width: 120px;
  height: 120px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFD966;
  box-shadow: 0 0 20px rgba(255, 217, 0, 0.4);
  margin-bottom: 0.5rem;
  overflow: hidden;
  background: #0A2F44;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-header h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFDF80;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.hero-header p {
  font-size: 0.75rem;
  color: #FFE6B3;
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* ========== NAVBAR CLÁSICA ========== */
.navbar-classic {
  background: #000F1F;
  border-bottom: 1px solid rgba(255, 217, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem;
}

/* Logo pequeño solo para móviles en navbar (opcional) */
.nav-logo-sm {
  display: none;
  font-weight: bold;
  font-family: 'Orbitron', monospace;
  color: #FFD966;
  font-size: 1rem;
}

/* Menú clásico desktop */
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: #F5F5F5;
  font-weight: 600;
  font-family: 'Orbitron', monospace;
  transition: 0.2s;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #FFD966;
  border-bottom: 2px solid #FFD966;
}

/* Botón hamburguesa (oculto en desktop) */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #FFD966;
  background: none;
  border: none;
}

/* ========== BOTONES FLOTANTES ========== */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1100;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FFD966;
  color: #001F3F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  border: none;
  font-weight: bold;
}

.float-btn:hover {
  transform: scale(1.05);
  background: #FFC107;
}

.float-btn.jobs {
  background: #E6B800;
}

/* Tooltip para los botones */
.float-btn span.tooltip {
  position: absolute;
  right: 70px;
  background: #001F3F;
  color: #FFD966;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: bold;
  white-space: nowrap;
  font-family: 'Orbitron', monospace;
  opacity: 1;
  transition: 0.2s;
  pointer-events: none;
}

.float-btn:hover span.tooltip {
  opacity: 1;
}

/* ── Botón flotante WhatsApp (lado izquierdo) ── */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  left: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 1100;
  text-decoration: none;
}

.whatsapp-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn span.tooltip {
  position: absolute;
  left: 70px;
  background: #001F3F;
  color: #FFD966;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: bold;
  white-space: nowrap;
  font-family: 'Orbitron', monospace;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.whatsapp-btn:hover span.tooltip {
  opacity: 1;
}

/* ========== MODALES (ocultos hasta botón) ========== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s;
  padding: 12px;
}

.modal-overlay.active {
  visibility: visible;
  opacity: 1;
}

.modal-content {
  background: #0A1F2F;
  max-width: 420px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 24px;
  border: 1px solid #FFD966;
  padding: 20px 18px 16px;
  position: relative;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
}

.modal-content h3 {
  font-size: 1.1rem;
  color: #FFE2A4;
  margin-bottom: 14px;
  text-align: center;
  padding-right: 24px;
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
  color: #FFD966;
  line-height: 1;
}

/* Grid de 2 columnas para campos cortos */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 217, 0, 0.2);
  background: #0D2A3D;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
}

.modal-content input::placeholder,
.modal-content textarea::placeholder {
  color: #7a9ab5;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
  outline: none;
  border-color: #FFD966;
}

.modal-content select option {
  background: #0D2A3D;
}

.modal-content label {
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
  color: #FFE0A3;
  font-size: 0.75rem;
}

.modal-content .btn-solid {
  background: #FFD966;
  border: none;
  color: #001F3F;
  padding: 10px;
  font-weight: bold;
  border-radius: 40px;
  width: 100%;
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s;
}

.modal-content .btn-solid:hover {
  background: #FFC107;
}

.modal-content .btn-solid:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.alert-message {
  margin-top: 8px;
  font-size: 0.8rem;
  text-align: center;
  border-radius: 20px;
  padding: 6px 10px;
  min-height: 28px;
}

/* Secciones generales */
section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 217, 0, 0.2);
  scroll-margin-top: 92px;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 48px;
  color: #FFE5A3;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #FFD966;
  margin: 12px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  display: block;
  text-decoration: none;
  color: #fff;
  background: rgba(10, 47, 68, 0.75);
  backdrop-filter: blur(4px);
  border-radius: 28px;
  padding: 32px 20px;
  text-align: center;
  border: 1px solid rgba(255, 217, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  overflow: hidden;
}

.service-card p {
  color: #ddd;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 217, 0, 0.08), transparent);
  transition: left 0.5s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #FFD966;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  background: rgba(15, 55, 78, 0.85);
}

.service-card:hover i {
  transform: scale(1.15);
  text-shadow: 0 0 20px rgba(255, 217, 0, 0.5);
}

.service-card:hover h3 {
  color: #fff;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 30px;
  align-items: stretch;
  margin-top: 24px;
}

.contacto-info,
.contacto-slider {
  width: 100%;
  background: rgba(10, 47, 68, 0.75);
  border-radius: 32px;
  padding: 32px;
  border: 1px solid rgba(255, 217, 0, 0.2);
}

.contacto-info {
  min-width: 0;
}

.contacto-slider {
  border-left: 1px solid rgba(255, 217, 0, 0.3);
  padding-left: 42px;
  max-width: 100%;
  box-sizing: border-box;
}

.contacto-card p {
  margin-bottom: 18px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.contacto-slider {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contacto-slider .clientes-slider-wrap {
  margin-top: 0;
}

.clientes-title {
  margin-bottom: 18px;
  text-align: left;
}

.service-card i {
  font-size: 48px;
  color: #FFD966;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #FFF2CC;
}

.info-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px 0;
}

.info-block {
  background: rgba(0, 32, 64, 0.7);
  border-radius: 28px;
  padding: 28px;
  flex: 1;
  border-left: 5px solid #FFD966;
}

.valores-text {
  background: #001F33;
  border-radius: 28px;
  padding: 24px;
  text-align: center;
  border: 1px solid #FFD966;
}

footer {
  background: #000B14;
  text-align: center;
  padding: 40px 20px;
  border-top: 2px solid #FFD96630;
}

/* ========== RESPONSIVE MÓVIL ========== */
@media (max-width: 768px) {
  .hero-header h1 {
    font-size: 1.1rem;
  }

  .hero-header p {
    font-size: 0.65rem;
  }

  .logo-icon {
    width: 75px;
    height: 75px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
  }

  .bandera-header {
    width: 60px;
    right: 30px;
  }

  .nav-logo-sm {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: #000F1F;
    width: 80%;
    max-width: 280px;
    height: calc(100vh - 70px);
    padding: 2rem 1.5rem;
    gap: 1.8rem;
    transition: left 0.3s ease;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu a {
    font-size: 1.1rem;
    display: block;
  }

  .navbar-classic {
    position: sticky;
    top: 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .contacto-info,
  .contacto-slider {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .contacto-slider,
  .clientes-track-outer {
    overflow-x: hidden;
  }

  .contacto-slider {
    border-left: none;
    padding: 32px 0 0;
  }

  .clientes-track {
    width: auto;
  }

  .floating-buttons {
    bottom: 20px;
    right: 15px;
    gap: 12px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .whatsapp-btn {
    bottom: 20px;
    left: 15px;
    width: 50px;
    height: 50px;
  }
}

@media (min-width: 769px) {
  .hero-header {
    padding: 2.5rem 1rem;
  }

  .hero-header h1 {
    font-size: 2.2rem;
  }
}

/* ========== SLIDER CLIENTES ========== */
.clientes-slider-wrap {
  margin-top: 40px;
}

.clientes-title {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  color: #FFD966;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 24px;
  opacity: 0.85;
}

.clientes-track-outer {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  box-sizing: border-box;
}

/* fade en los bordes */
.clientes-track-outer::before,
.clientes-track-outer::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clientes-track-outer::before {
  left: 0;
  background: linear-gradient(to right, #001F3F, transparent);
}

.clientes-track-outer::after {
  right: 0;
  background: linear-gradient(to left, #001F3F, transparent);
}

.clientes-track {
  display: flex;
  gap: 32px;
  animation: slideClientes 18s linear infinite;
  width: max-content;
}

.clientes-track:hover {
  animation-play-state: paused;
}

.cliente-slide {
  flex-shrink: 0;
  width: 160px;
  height: 90px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 217, 0, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: background 0.2s;
  position: relative;
}

.slide-placeholder {
  position: absolute;
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  color: rgba(255, 217, 0, 0.4);
  letter-spacing: 1px;
  pointer-events: none;
}

.cliente-slide img {
  position: relative;
  z-index: 1;
}

.cliente-slide:hover {
  background: rgba(255, 255, 255, 0.12);
}

.cliente-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(40%) brightness(1.1);
  transition: filter 0.2s;
}

.cliente-slide img[src="img1.png"]:not([complete]),
.cliente-slide img {
  min-width: 40px;
  min-height: 40px;
}

.cliente-slide:hover img {
  filter: grayscale(0%) brightness(1.2);
}

@keyframes slideClientes {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .cliente-slide {
    width: 120px;
    height: 70px;
  }

  .clientes-track {
    gap: 20px;
  }
}

/* ========== SECCIÓN REDES SOCIALES ========== */
.social-section {
  background: linear-gradient(160deg, #00162B 0%, #000F1F 100%);
  padding: 70px 0;
  border-top: 1px solid rgba(255, 217, 0, 0.25);
  border-bottom: 1px solid rgba(255, 217, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.social-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFD966, #FFC107, #FFD966, transparent);
}

.social-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px auto;
  color: #CCCCCC;
  font-size: 1rem;
  line-height: 1.5;
}

.social-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.social-card {
  background: rgba(10, 47, 68, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(255, 217, 0, 0.25);
  min-width: 260px;
  flex: 1;
  max-width: 320px;
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 217, 0, 0.1), transparent);
  transition: left 0.5s;
}

.social-card:hover::before {
  left: 100%;
}

.social-card:hover {
  transform: translateY(-8px);
  border-color: #FFD966;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.social-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #FFD966 0%, #FFC107 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(255, 217, 0, 0.3);
}

.social-icon i {
  font-size: 30px;
  color: #001F3F;
  transition: transform 0.2s;
}

.social-card:hover .social-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(255, 217, 0, 0.5);
}

.social-card:hover .social-icon i {
  transform: scale(1.1);
}

.social-info {
  flex: 1;
}

.social-info h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFE5A3;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.social-info p {
  font-size: 0.8rem;
  color: #BBBBBB;
  margin: 0;
}

.social-follow {
  background: rgba(255, 217, 0, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  transition: all 0.3s;
}

.social-follow i {
  font-size: 18px;
  color: #FFD966;
  transition: transform 0.2s;
}

.social-card:hover .social-follow {
  background: #FFD966;
}

.social-card:hover .social-follow i {
  color: #001F3F;
  transform: translateX(3px);
}

.social-card.facebook:hover {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.15), rgba(10, 47, 68, 0.9));
  border-color: #1877F2;
}

.social-card.x-twitter:hover {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(10, 47, 68, 0.9));
  border-color: #FFFFFF;
}

.social-card.instagram:hover {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.15), rgba(10, 47, 68, 0.9));
  border-color: #E4405F;
}

.social-cta {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  border-radius: 60px;
  background: rgba(0, 32, 64, 0.5);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.social-cta p {
  color: #FFE0A3;
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

.social-cta p::before {
  content: '✨ ';
  color: #FFD966;
}

@media (max-width: 768px) {
  .social-section {
    padding: 50px 0;
  }

  .social-subtitle {
    font-size: 0.9rem;
    padding: 0 15px;
    margin-bottom: 35px;
  }

  .social-grid {
    gap: 20px;
    padding: 0 15px;
    flex-direction: column;
    align-items: stretch;
  }

  .social-card {
    padding: 20px 18px;
    min-width: auto;
    width: 100%;
    max-width: 100%;
    gap: 15px;
  }

  .social-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    aspect-ratio: 1 / 1;
  }

  .social-icon i {
    font-size: 24px;
  }

  .social-info h3 {
    font-size: 1.1rem;
  }

  .social-info p {
    font-size: 0.7rem;
  }

  .social-follow {
    width: 35px;
    height: 35px;
  }

  .social-follow i {
    font-size: 14px;
  }

  .social-cta {
    margin: 20px 15px 0;
    padding: 15px;
  }

  .social-cta p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .social-card {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 18px 15px;
  }

  .social-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }

  .social-icon i {
    font-size: 22px;
  }

  .social-info {
    width: 100%;
    text-align: center;
  }

  .social-info h3 {
    font-size: 1rem;
    line-height: 1.2;
  }

  .social-info p {
    font-size: 0.72rem;
  }

  .social-follow {
    position: absolute;
    right: 15px;
    bottom: 15px;
  }

  .social-card:hover {
    transform: translateY(-4px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-card {
  animation: fadeInUp 0.5s ease backwards;
}

.social-card:nth-child(1) {
  animation-delay: 0.1s;
}

.social-card:nth-child(2) {
  animation-delay: 0.2s;
}

.social-card:nth-child(3) {
  animation-delay: 0.3s;
}



/* Pantalla de bienvenida Paraguay
#pantalla-paraguay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url('../avif/paraguay.avif') center center no-repeat;
    background-size:cover;
    z-index:99999;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:flex-end;
}

#pantalla-paraguay::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
}

#mensaje-paraguay{
    position:relative;
    z-index:2;
    margin-bottom:50px;
    text-align:center;
    background:rgba(0,0,0,0.65);
    padding:20px 35px;
    border-radius:20px;
    border:2px solid rgba(255,255,255,0.3);
}

#mensaje-paraguay h1{
    color:#fff;
    font-size:3rem;
    margin:0;
    text-shadow:0 0 10px rgba(0,0,0,.7);
}

#mensaje-paraguay p{
    color:#fff;
    margin-top:10px;
    font-size:1.1rem;
}

@media(max-width:768px){
    #mensaje-paraguay h1{
        font-size:1.8rem;
    }

    #mensaje-paraguay{
        margin:20px;
        margin-bottom:40px;
    }
}
     */
.btn-servicios {
  background: #F5F5F5;
  border: solid 1px #fff;
  padding: 8px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  width: 100%;
}