.hero-header {
    display: flex;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    background-color: #ff6433;
}

.hero-left {
    flex: 1;
    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
}

.hero-left img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-right {
    flex: 1;
    background-color: #ff6433; /* Bootstrap primary */
    z-index: 1;
}

@media (max-width: 767.98px) {
  .hero-left {
    clip-path: none;
  }
}

.cotizacion-section {
    background-color: #f8f9fa;
}

#resultado {
    transition: all 0.3s ease;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Estilo adicional para los inputs */
.form-control {
    border-radius: 8px;
    padding: 10px 15px;
}

.btn-primary {
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 500;
}

.alert {
    border-radius: 8px;
}

/* Estilos para el autocompletado */
.sugerencias-container {
    position: absolute;
    z-index: 1000;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 4px 4px;
    width: calc(100% - 30px);
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: none;
}

.sugerencia-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.sugerencia-item:hover {
    background-color: #f5f5f5;
}

/* Ajuste para los contenedores de input */
.mb-3 {
    position: relative;
}

#mapa {
    height: 300px; /* Aumentado desde 300px */
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 10px;
    touch-action: auto; /* Permite el desplazamiento táctil en dispositivos móviles */
}

