/* ===================================
   REINICIO DE ESTILOS Y VARIABLES
===================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --color-oscuro: #f4f4f4;
    --color-acento: #0077cc;
    --color-hover: #008CB8;
    --color-texto: #333;
    --color-fondo: #f9f9f9;
    --fuente-principal: 'Arial', sans-serif;
    --fuente-secundaria: 'Lora', serif;
  }
  
  /* ===================================
     ESTILOS GLOBALES
  ===================================== */
  body {
    font-family: var(--fuente-principal);
    line-height: 1.6;
    color: var(--color-texto);
    background: var(--color-fondo);
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 1rem 0;
  }
  
  /* ===================================
     HEADER Y MENÚ DE NAVEGACIÓN
  ===================================== */
  header {
    background: var(--color-oscuro);
    color: #222;
    padding: 10px 0;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    padding: 5px 0;
  }
  
  header .container {
    max-width: 1200px;       /* Ancho máximo para no expandir demasiado */
    margin: 0 auto;
    padding: 0 20px;         /* Espacio horizontal */
    display: flex;
    justify-content: space-between;
    align-items: center;     /* Alinea verticalmente logo y menú */
  }
  
  header h1 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 110px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  nav ul li {
    position: relative;
  }
  
  nav ul li a {
    color: #222;
    text-decoration: none;
    font-size: 1rem;
    padding: 5px 0;
    transition: color 0.3s, border-bottom 0.3s;
  }
  
  nav ul li a:hover {
    color: var(--color-acento);
  }
  
  nav ul li a.active,
  nav ul li a:focus {
    color: var(--color-acento);
    border-bottom: 2px solid var(--color-acento);
  }
  
  nav ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -3px;
    background: var(--color-acento);
    transition: width 0.3s;
  }
  
  nav ul li a:hover::after,
  nav ul li a.active::after {
    width: 100%;
  }
  
  /* ===================================
     SECCIÓN HERO
  ===================================== */
  .hero {
    background: url('ruta_a_tu_imagen.jpg') no-repeat center center/cover;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 6rem 0;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
  }
  
  .hero .content {
    position: relative;
    z-index: 2;
  }
  
  .hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .cta {
    background: var(--color-acento);
    color: #fff;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
  }
  
  .cta:hover {
    background: var(--color-hover);
  }
  
  /* ===================================
     SECCIÓN TEASER (Tarjetas resumen)
  ===================================== */
  .teaser-section {
    padding: 3rem 0;
    background: var(--color-fondo);
  }
  
  .teaser-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .teaser-card {
    background: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
  }
  
  .teaser-card h3 {
    color: var(--color-oscuro);
    margin-bottom: 1rem;
  }
  
  .teaser-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .teaser-card a {
    background: var(--color-acento);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .teaser-card a:hover {
    background: var(--color-hover);
  }
  
  footer {
    background: #1a1a1a;
    color: #fff;
    padding: 2rem 0 1rem;
    font-size: 14px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
  
  .footer-column {
    flex: 1 1 300px;
    min-width: 250px;
  }
  
  .footer-column h3,
  .footer-column h4 {
    margin-bottom: 1rem;
    color: var(--color-acento);
  }
  
  .footer-column p {
    margin: 0.3rem 0;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
  }
  
  .footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-column ul li a:hover {
    color: var(--color-acento);
  }
  
  .footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
    font-size: 13px;
    color: #aaa;
  }
  
  
  /* ===================================
     MEDIA QUERIES
  ===================================== */
  @media(max-width: 768px) {
    header .container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    header h1 {
      font-size: 1.5rem;
      margin: 10px 0;
      text-align: left;
    }
  
    .logo {
      height: 60px;
      margin-bottom: 10px;
      top: 0;
    }
  
    nav ul {
      flex-direction: column;
      gap: 10px;
      align-items: flex-start;
      padding-left: 0;
    }
  
    nav ul li {
      margin: 0;
    }
    .hero-uzbekistan h2 {
      font-size: 28px;
    }
    
    .hero-uzbekistan p {
      font-size: 16px;
    }
    
  }
  

  /* Ajustes básicos para tu logotipo */
.logo {
    height: 180px;       /* Ajusta la altura según tu preferencia */
    width: auto;        /* Mantiene la proporción de la imagen */
    margin-right: 20px; /* Espaciado opcional entre el logo y el menú */
    /* Si quieres alinear verticalmente, verifica la altura de tu header */
  }
  
  .hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9; /* Mantiene proporción perfecta */
  }
  
  
  .slider-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slider img {
  object-fit: cover;
  height: 100%;
  flex-shrink: 0;
}
  
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
  }
  
  .slider-btn.prev {
    left: 10px;
  }
  
  .slider-btn.next {
    right: 10px;
  }
  .hero-uzbekistan {
    background: #fffafc;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .hero-uzbekistan .container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .hero-uzbekistan .highlight {
    color: #c0392b;
    font-weight: bold;
  }
  
  .hero-uzbekistan h2 {
    font-size: 42px;
    font-family: 'Lora', serif;
    color: #111;
    margin-bottom: 25px;
  }
  
  .hero-uzbekistan p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
  }
  
  .cta-button {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 30px;
    background-color: #c0392b;
    color: white;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #a93226;
  }
  .why-uzbekistan {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
  }
  
  .why-uzbekistan h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-family: 'Lora', serif;
  }
  
  .features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .feature-item {
    width: 260px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 20px;
    transition: transform 0.3s ease;
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
  }
  
  .feature-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .feature-item h3 {
    font-size: 18px;
    color: #c0392b;
    margin-bottom: 10px;
  }
  
  .feature-item p {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
  }
    
  /* NUEVO ESTILO HEADER MODERNO */
.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.brand .logo {
  height: 100px;         /* Tamaño visual más grande */
  width: auto;
  position: relative;
}

.brand-text h1 {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  margin: 0;
  color: #222;
  font-weight: 700;
  text-transform: none;
}

.brand-text p {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: #666;
  margin: 2px 0 0;
}
.about-section {
  padding: 60px 0;
}

.about-block {
  background: white;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.about-block:hover {
  transform: translateY(-5px);
}

.about-block h2 {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #c0392b;
}

.about-block p,
.about-block li {
  font-size: 1.05rem;
  color: #444;
}

.about-block ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.about-block ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.hero-elegante {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.55); /* oscurece para mayor contraste */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-family: 'Lora', serif;
  font-size: 3.2rem;
  color: #fff;
  line-height: 1.3;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-top: 20px;
  color: #f5f5f5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-hero {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  background-color: #c0392b;
  color: #fff;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-hero:hover {
  background-color: #a93226;
}
.service-grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.service-card {
  flex: 1 1 260px;
  max-width: 350px;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.service-card h3 {
  color: #c0392b;
  font-family: 'Lora', serif;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}
