
.llamado-accion-section {
  position: relative;
  background-image: url('../assets/images/llamado-accion.png');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: white;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

.llamado-accion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.llamado-accion-overlay {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px;
}

.llamado-accion-subtitulo {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 15px;
}

.llamado-accion-linea {
  width: 250px;
  height: 5px;
  background-color: #7d0000;
  margin: 10px auto 25px auto;
  border-radius: 4px;
}


.llamado-accion-titulo {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
}

.llamado-accion-descripcion {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 30px auto;  
  width: 500px;
  color: #eee;
  padding-bottom: 10px;
}

.llamado-accion-btn {
  background: linear-gradient(to right, #7c0000, #c40000);
  padding: 18px 25px;
  font-size: 18px;
  color: white;
  font-weight: bold;
  width: 230px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: inline-block;
}

.llamado-accion-btn:hover {
  background: linear-gradient(to right, #c40000, #7c0000);
  transform: translateY(-4px);
}

.llamado-accion-btn .flecha {
  margin-left: 8px;
  font-size: 16px;
}

@media (max-width: 991.98px){
  .llamado-accion-section{
    padding: 72px 16px;                    
    background-position: center top;
  }
  .llamado-accion-section::before{
    background-color: rgba(0,0,0,0.55);   
  }

  .llamado-accion-overlay{
    max-width: 640px;
    padding: 36px 16px;
  }

  .llamado-accion-subtitulo{
    font-size: 13px;
    margin-bottom: 12px;
  }

  .llamado-accion-linea{
    width: 180px;                         
    height: 4px;
    margin: 8px auto 20px;
  }

  .llamado-accion-titulo{
    font-size: 32px;                      
    margin-bottom: 12px;
  }

  .llamado-accion-descripcion{
    font-size: 16px;                     
    line-height: 1.6;
    width: auto;                           
    max-width: 56ch;                      
    margin: 0 auto 24px;
    padding-bottom: 0;
  }

  .llamado-accion-btn{
    font-size: 17px;
    padding: 14px 22px;
    width: 220px;
    border-radius: 8px;
  }
}