img.img-fluid.logo {
    height: 10vh;
 }

 img.navbar-brand.w-100.d-md-none {
height: 7vh;
width: auto;
object-fit: contain;
}

 .bg-theme {
    background: #7223d3;
 }
 .mobile-frame {
     width: 95%;
     max-width: 350px;
     aspect-ratio: 9 / 16;
     border-radius: 40px;
     background-color: #f4f4f9;
     border: 12px solid #222;
     box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
     position: relative;
     overflow: hidden;
     background-image: url('{{ url('front/img/Hero/salta.jpg') }}');
     background-size: cover;
     background-position: center;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .screen {
     width: 95%;
     height: 95%;
     background: rgba(255, 255, 255, 0.8); /* Overlay blanco */
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     padding: 15px;
     border-radius: 25px;
     overflow-y: auto;
     color: #333;
     box-shadow: inset 0px 4px 15px rgba(0, 0, 0, 0.2);
 }

 .chat-header {
     display: flex;
     justify-content: center;
     align-items: center;
     margin-bottom: 10px;
     background-color: rgba(0, 0, 0, 0.6);
     padding: 8px;
     border-radius: 15px;
     color: white;
 }

 .chat-header img {
     max-width: 100px;
     height: auto;
 }

 .message {
     background-color: rgba(255, 255, 255, 0.9);
     color: #333;
     padding: 10px;
     margin-bottom: 8px;
     border-radius: 15px;
     max-width: 80%;
     line-height: 1.4;
     box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
 }

 .message.user {
     align-self: flex-end;
     background-color: #6c3d94; /* Color personalizado */
     color: white;
 }

 .btn-custom {
     background-color: #6c3d94; /* Color personalizado */
     color: white;
     margin-top: 10px;
     border-radius: 20px;
     font-weight: bold;
     width: 100%;
     transition: background-color 0.3s;
     box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
 }

 .btn-custom:hover {
     background-color: #532d72;
 }

 .home-button {
     width: 40px;
     height: 40px;
     background: #333;
     border-radius: 50%;
     position: absolute;
     bottom: 10px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 2;
 }

 @media (max-width: 400px) {
     .mobile-frame {
         max-width: 300px;
     }
 }
 .contract-content {
max-height: 300px; /* Altura fija */
overflow-y: auto; /* Agregar scroll cuando el contenido sea demasiado grande */
padding: 10px;
background-color: #f8f9fa; /* Fondo claro */
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); /* Ajusta la opacidad e intensidad */
border-radius: 10px; /* Bordes más suaves */
transition: all 0.3s ease-in-out;
}

button.btn.btn-primary.next {
display: none;
}

.custom-shadow {
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
border-radius: 12px;
transition: all 0.3s ease-in-out;
}

.custom-shadow:hover {
box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
}
.error-input {
border: 2px solid red;
background-color: #ffe6e6;
}
.error-message {
color: red;
font-size: 14px;
margin-top: 5px;
}
