@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* .poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

*/

* {
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;

}

html {
  scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
    filter: drop-shadow(0 6px 15px rgba(0,0,0,.6));
}

.container {
    max-width: 1200px;
    margin:  auto;
}

.header {
    background: linear-gradient(
        rgba(29,30,35,0.8),
        rgba(29,30,35,0.8)
    ),
    url(img/bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 0 0 0 0;

}


.logo {
    color: rgb(255, 225, 0);
    font-size: 25px;
  height: auto;
    font-weight: 800;
    text-transform: uppercase;
}

.logo img {
  height: 250px;
  width: auto;
  filter: drop-shadow(0 6px 15px rgba(0,0,0,.6));
}

@media (max-width: 768px) {
  .logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .logo img {
    margin: 0 auto;
  }
}

.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reserva-section {
  width: 100%;
  min-height: 20vh; /* centra verticalmente */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}

/* TÍTULO */
.reserva-section h2 {
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 600;
  filter: drop-shadow(0 6px 15px rgba(0,0,0,.6));
}

/* TEXTO */
.reserva-section p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #ddd;
  max-width: 420px;
}

/* BOTÓN PRINCIPAL */
.btn-reserva-principal {
  padding: 16px 36px;
  font-size: 17px;
  font-weight: bold;
  border-radius: 30px;
  border: none;
  background: #25D366;
  color: #fff;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}

.btn-reserva-principal:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .reserva-section h2 {
    font-size: 24px;
  }

  .btn-reserva-principal {
    width: 100%;
    max-width: 280px;
  }
}


/* ---------- OCULTO POR DEFECTO ---------- */
#agendaViaje.form-oculto {
  display: none;
}

/* ---------- OVERLAY ---------- */
#agendaViaje.overlay {
  position: fixed;
  inset: 0;
  background: rgba(25, 42, 83, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 15px;
  overflow-y: auto;
}

/* ---------- CONTENEDOR ---------- */
#agendaViaje .agenda-viaje {
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f4f6fb 100%
  );
  padding: 25px 22px;
  border-radius: 20px;
  box-shadow: 0 25px 55px rgba(0,0,0,.45);
  position: relative;
  overflow-y: auto;
  animation: agendaPopup .3s ease;
}

/* ---------- ANIMACIÓN ---------- */
@keyframes agendaPopup {
  from {
    transform: scale(.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ---------- BOTÓN CERRAR ---------- */
#agendaViaje .btn-cerrar {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  font-weight: bold;
  color: #192a53;
  cursor: pointer;
  line-height: 1;
}

#agendaViaje .btn-cerrar:hover {
  color: #000;
}

/* ---------- TÍTULO ---------- */
#agendaViaje h2 {
  margin: 5px 0 6px;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  color: #192a53;
}

/* ---------- TEXTO ---------- */
#agendaViaje p {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 22px;
}

/* ---------- FORM ---------- */
#agendaViaje .form-group {
  margin-bottom: 14px;
}

#agendaViaje .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #192a53;
}

/* ---------- INPUTS ---------- */
#agendaViaje input,
#agendaViaje select,
#agendaViaje textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd5f0;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #192a53;
  box-sizing: border-box;
  transition: border .2s ease, box-shadow .2s ease;
}

/* ---------- FOCUS ---------- */
#agendaViaje input:focus,
#agendaViaje select:focus,
#agendaViaje textarea:focus {
  outline: none;
  border-color: #ffe100;
  box-shadow: 0 0 0 2px rgba(255, 225, 0, 0.25);
}

/* ---------- TEXTAREA ---------- */
#agendaViaje textarea {
  resize: none;
  min-height: 80px;
}

/* ---------- SELECT ---------- */
#agendaViaje select option {
  color: #000;
}

/* ---------- BOTÓN WHATSAPP ---------- */
#agendaViaje .btn-wsp {
  width: 100%;
  margin-top: 12px;
  padding: 14px;
  border-radius: 30px;
  border: none;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: .5px;
  background: linear-gradient(
    135deg,
    #25D366,
    #1ebe5d
  );
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}

#agendaViaje .btn-wsp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, .6);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 480px) {
  #agendaViaje .agenda-viaje {
    padding: 22px 16px;
  }

  #agendaViaje h2 {
    font-size: 24px;
  }

  #agendaViaje .btn-wsp {
    font-size: 16px;
  }
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.logo_ministerio {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 200px;
  height: auto;
  z-index: 9999;
  background: #fff;
  padding: 6px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
  .logo_ministerio {
    width: 90px;
    top: 10px;

    /* CENTRAR */
    right: auto;              /* muy importante */
    left: 50%;
    transform: translateX(150%);
  }
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a{
    font-size: 18px;
    padding: 20px;
    color: white;
    display: block;
    font-weight: 600;
}

.menu .navbar ul li a:hover {
    color: yellow;
}

#menu {
    display: none;
}

.menu-icono{
    width: 25px;
}

.menu label{
    cursor: pointer;
    display: none;
}
/* ===== MENU RESPONSIVE ===== */
@media (max-width: 768px) {

  .menu label {
    display: block;
  }

  .menu .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(18, 32, 65, 0.95);
    display: none;
  }

  .menu .navbar ul {
    flex-direction: column;
  }

  .menu .navbar ul li {
    width: 100%;
    text-align: center;
  }

  .menu .navbar ul li a {
    padding: 18px;
    font-size: 18px;
  }

  #menu:checked ~ .navbar {
    display: block;
  }
}
@media (max-width: 1024px) {
  .header-txt h1 {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 120px 20px 40px;
  }

  .header-txt h1 {
    font-size: 100px;
  }

  .header-txt p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .header-txt h1 {
    font-size: 38px;
  }
}


.header-txt {
    text-align: center;
    padding: 25px;
    margin-bottom: 100px;
}

.header-txt h1 {
    font-size: 85px;
    line-height: 1;
    color: white;
    font-family: "Bebas Neue", sans-serif;
    margin-bottom: 35px;
}
@media (max-width: 768px) {

  .header-txt {
    padding: 20px;      /* antes 50px */
    margin-bottom: 10px;
  }

  .header-txt h1 {
    font-size: 34px;    /* antes 85px */
    line-height: 1.1;
  }

  .header-txt p {
    font-size: 14px;
    padding: 0 5px;
  }
}




p {
    font-size: 17px;
    color: white;
}

.about {
    padding: 50px;
    background-color:rgb(24, 25, 53) ;
}

.about-content {
    display: flex;
    align-items:normal;
}

.about-txt{
    flex-basis: 50%;
    padding-right: 35px;
}

span {
    font-size: 14px;
    text-transform: uppercase;
    color: yellow;
}

h2{
    font-size: 35px;
    color: white;
    margin: 15px 0;
    line-height: 1; 
}

h1{
    font-size: 35px;
    color: white;

}


hr{
    border: 1px solid yellow;
    width: 10%;
}

.about-img{
    flex-basis: 50%;
}

.about-img img {
    border-radius: 15px;
    
}
.testimonios {
  padding: 80px 20px;
  background: linear-gradient(
    rgba(25, 42, 83, 0.95),
    rgba(25, 42, 83, 0.95)
  );
  text-align: center;
}

/* CONTENEDOR */
.Testinonios-contenido {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap; /* 🔹 responsive */
}

/* TARJETA */
.testimonio1 {
  flex-basis: 320px;
  max-width: 420px;
  background: linear-gradient(
    180deg,
    rgb(73, 91, 173),
    rgb(55, 70, 140)
  );
  padding: 35px 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  border-radius: 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.testimonio1:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0,0,0,.45);
}

/* FOTO */
.face {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 4px solid #ffe100;
  margin-bottom: 15px;
  object-fit: cover;
}

/* NOMBRE */
.testimonio1 h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 700;
}

/* TEXTO */
.testimonio1 p {
  font-size: 15px;
  line-height: 1.5;
  color: #e5e5e5;
  margin-bottom: 18px;
}

/* ESTRELLAS */
.estrella {
  width: 95px;
}


.planes {
  padding: 80px 20px;
  text-align: center;
  background: #f4f6fb; /* suave, no blanco puro */
}

.planes .subtitulo {
  font-size: 14px;
  text-transform: uppercase;
  color: #192a53;
  letter-spacing: 2px;
  font-weight: 600;
}

.planes h2 {
  font-size: 36px;
  margin: 10px 0;
  color: #192a53;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}

.planes hr {
  width: 80px;
  margin: 20px auto 50px;
  border: 2px solid #ffe100;
}

/* GRID */
.plan-contenido {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* TARJETAS */
.servicio {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}

.servicio:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

/* TITULO SERVICIO */
.titulo-servicio {
  font-size: 30px;
  font-weight: 700;
  padding: auto;
  color: #192a53;
  display: block;
}

.serv_img{
   width: 90px;
   padding:   ;
}
/* TEXTO */
.servicio p {
  font-size: 15px;
  color: #555;
  margin: 18px 0 25px;
  line-height: 1.5;
}

/* BOTÓN */
.btn-servicio {
  padding: 12px 30px;
  border-radius: 25px;
  border: none;
  background: #25D366;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background .3s ease, transform .2s ease;
}

.btn-servicio:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}

/* SERVICIO PRINCIPAL */
.servicio.destacado {
  border: 2px solid #ffe100;
  box-shadow: 0 0 0 3px rgba(255,225,0,.15);
}

.servicio.destacado::before {
  content: "Servicio Principal";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffe100;
  color: #192a53;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
}
/* SECCIÓN CALCULADOR */
.informacion {
  padding: 90px 20px;
  background: linear-gradient(
    rgba(24, 25, 53, 0.95),
    rgba(24, 25, 53, 0.95)
  );
}

/* CONTENEDOR */
.informacion-contenido {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* TEXTO */
.informacion-text {
  flex: 1;
  color: #ffffff;
}

.informacion-text span {
  color: #ffe100;
  letter-spacing: 2px;
  font-weight: 600;
}

.informacion-text h2 {
  font-size: 34px;
  font-family: "Bebas Neue", sans-serif;
  margin: 15px 0;
  color: #ffffff;
}

.informacion-text hr {
  width: 90px;
  border: 2px solid #ffe100;
  margin-bottom: 30px;
}

/* FORMULARIO */
.informacion-text form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
}

/* SELECTS */
.informacion-text select {
  padding: 14px 15px;
  border-radius: 14px;
  border: none;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  background: #2f3366;
  color: #ffffff;
}

.informacion-text select option {
  color: #000;
}

/* BOTÓN */
.btn-1 {
  margin-top: 10px;
  padding: 14px;
  border-radius: 25px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  background: #25D366;
  color: #ffffff;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-1:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
}

/* RESULTADO */
.resultado-precio {
  margin-top: 20px;
  font-size: 18px;
  color: #ffe100;
  font-weight: 600;
}

/* TEXTO ACLARATORIO */
.informacion-text small {
  color: #ccc;
  font-size: 13px;
  margin-top: 5px;
}

/* IMAGEN */
.informacion-img {
  flex: 1;
  text-align: center;
  filter: drop-shadow(0 6px 15px rgba(0,0,0,.6));
}

.informacion-img img {
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .informacion-contenido {
    text-align: center;
    justify-content: center;
  }

  .informacion-text form {
    margin: 0 auto;
  }
}
 
/* FORMULARIO EN DOS COLUMNAS */
.form-calculo {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 30px;
}

/* LADO IZQUIERDO */
.form-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* LADO DERECHO (RESULTADO) */
.form-right {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  min-height: 150px;
  display: flex;
  align-items: center;
}

/* RESULTADO */
.resultado-precio {
  font-size: 18px;
  color: #ffe100;
  font-weight: 600;
  line-height: 1.6;
}

/* RESPONSIVE: EN MÓVIL BAJA ABAJO */
@media (max-width: 768px) {
  .form-calculo {
    flex-direction: column;
  }

  .form-right {
    width: 100%;
  }
}

/* ===== SECCIÓN FLOTA ===== */
.flota {
    padding: 10% 0;
    background-color: rgb(25, 42, 83);
    text-align: center;
}

.flota-subtitulo {
    color: #ffd000;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.flota h2 {
    color: #ffffff;
    font-size: 34px;
    margin: 10px 0;
}

.flota hr {
    width: 80px;
    height: 3px;
    margin: 15px auto 40px;
    background-color: #ffd000;
    border: none;
}

/* ===== CONTENEDOR ===== */
.flota-contenido {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* ===== TARJETAS ===== */
.vehiculo {
    background-color: rgb(73, 91, 173);
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 0 20px rgba(0,0,0,0.25);
    transition: transform .3s ease, box-shadow .3s ease;
}

.vehiculo:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* TARJETA DESTACADA */
.vehiculo-destacado {
    border: 2px solid #ffd000;
}

/* ===== TEXTO ===== */
.vehiculo-titulo {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.vehiculo p {
    color: #eaeaea;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.vehiculo-capacidad {
    color: #ffd000;
    font-size: 14px;
    margin-bottom: 18px;
}

/* ===== IMAGEN ===== */
.vehiculo img {
    width: 100%;
    max-width: 160px;
    margin: 0 auto 15px;
    display: block;
}

/* ===== BOTÓN ===== */
.vehiculo-btn {
    background-color: #ffd000;
    color: #192a53;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color .3s ease, transform .2s ease;
}

.vehiculo-btn:hover {
    background-color: #ffea4d;
    transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .flota h2 {
        font-size: 28px;
    }

    .vehiculo {
        padding: 20px;
    }
}


/* ===== FOOTER ===== */
.footer {
    background-color: rgb(18, 32, 65);
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-contenido {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* COLUMNAS */
.footer-box h3,
.footer-box h4 {
    color: #ffd000;
    margin-bottom: 15px;
}

.footer-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #eaeaea;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #eaeaea;
}

/* REDES */
.redes {
    display: flex;
    gap: 15px;
}

.redes img {
    width: 34px;
    transition: transform .3s ease, opacity .3s ease;
}

.redes a:hover img {
    transform: scale(1.15);
    opacity: 0.85;
}

/* COPY */
.footer-copy {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
}

.footer-copy p {
    font-size: 13px;
    color: #cfcfcf;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .redes {
        justify-content: center;
    }
}



/* ===============================
   BLOG / NOTICIAS
================================ */

.blog {
  padding: 90px 20px;
  background: linear-gradient(
    rgba(24, 25, 53, 0.95),
    rgba(24, 25, 53, 0.95)
  );
  text-align: center;
}

.blog .subtitulo {
  font-size: 14px;
  text-transform: uppercase;
  color: #ffe100;
  letter-spacing: 2px;
  font-weight: 600;
}

.blog h2 {
  font-size: 36px;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  margin: 10px 0;
}

.blog hr {
  width: 80px;
  margin: 20px auto 50px;
  border: 2px solid #ffe100;
}

/* CONTENEDOR */
.blog-contenido {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* TARJETA */
.blog-card {
  background: linear-gradient(
    180deg,
    rgb(73, 91, 173),
    rgb(55, 70, 140)
  );
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,.35);
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0,0,0,.45);
}

/* IMAGEN */
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* TEXTO */
.blog-texto {
  padding: 25px;
}

.blog-fecha {
  font-size: 13px;
  color: #ffd000;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.blog-texto h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 700;
}

.blog-texto p {
  font-size: 15px;
  line-height: 1.6;
  color: #eaeaea;
  margin-bottom: 22px;
}

/* BOTÓN */
.btn-blog {
  display: inline-block;
  padding: 12px 26px;
  background: #ffd000;
  color: #192a53;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: background .3s ease, transform .2s ease;
}

.btn-blog:hover {
  background: #ffea4d;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .blog h2 {
    font-size: 30px;
  }

  .blog-texto h3 {
    font-size: 20px;
  }
}


