/* fonts*/

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;700;1000&display=swap');
@import url('../fonts/Elan\ Book\ Regular/');

/* fonts*/

:root {
    --background-primary: #F6FBF0;
    --shadow1: box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    --color-primary: #1E2945;
    --color-secondary: #9A9D4F;
    --color-verdeclaro: #F0F4E9;
}

::-webkit-scrollbar {
    width: 5px;

}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;

}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

body {
    font-family: 'Nunito', sans-serif;
}

.background-primary {
    background-color: var(--background-primary);
    background-image: url(../img/fondo.jpg);
    background-attachment: fixed;
}

p {
    font-weight: 700;
}

.navbar-collapse {
    flex-grow: 0 !important;
}

.navbar {
    border-radius: 2rem;
}

h1 {
    font-family: 'Nunito', sans-serif;
    font-weight: 1000;

}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.bg-secondary {
    background-color: var(--color-secondary) !important;
}

.bg-1 {
    background-color: var(--color-verdeclaro);
}

.text-big {
    font-size: 60px;
}

.text-big2 {
    font-size: 25px;
}

bg-white {
    background-color: white;
}

#map {
    height: 550px;
    width: 100%;
    border-radius: 24px;
}

.font-100 {
    font-family: 'Nunito', sans-serif;
}

.border_radius {
    border-radius: 45px;
}

.border_radius2 {
    border-radius: 24px;
}

.card {
    border: none;
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.border_radius_buttom {
    border-radius: 0 0 24px 24px;
}

.nav-tabs {
    --bs-nav-tabs-border-width: none;
    --bs-nav-tabs-border-radius: 0.9rem;
    --bs-nav-tabs-link-active-bg: #F8F9FA;
}

.nav {
    --bs-nav-link-color: var(--color-primary);
    --bs-nav-link-hover-color: var(--color-secondary);
}

.tab-content {
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    border-radius: 12px;

}

.btn-primary:hover {
    background-color: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
}

.btn {
    width: 50%;
}

/* Estilo para input normal */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #dfe1e5;
    border-radius: 10px;
    font-size: 16px;
    color: #202124;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color 0.2s ease-in-out;

}


/* Estilo para input en foco */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border: 2px solid #4e746170;

}

/* Estilo para placeholder */
::placeholder {
    color: #9aa0a6;
    font-size: 16px;
}

/* Estilo para select */
select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #dfe1e5;
    font-size: 16px;
    color: #202124;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1.5.5l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 8px center;
}

/* Estilo para select en foco */
select:focus {
    outline: none;
    border-bottom: 2px solid #4e746170;
}

/* Estilo para select en hover */
select:hover {
    cursor: pointer;
}

.btn-input {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: var(--color-secondary);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.btn-input:hover {
    background-color: var(--color-primary);
}

.btn-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(32, 61, 56, 0.685);
}

.consulta-gratis-btn {
    background-color: #FFA500; /* cambia el color de fondo del botón */
    color: white; /* cambia el color del texto del botón */
    border: none; /* quita el borde del botón */
    padding: 5px 5px; /* agrega espacio dentro del botón */
    border-radius: 10px; /* redondea las esquinas del botón */
    font-weight: bold; /* agrega negrita al texto del botón */
    text-transform: uppercase; /* convierte el texto del botón a mayúsculas */
    letter-spacing: 1px; /* agrega espacio entre las letras del texto del botón */
    /* agrega sombra al botón */
    cursor: pointer; /* cambia el cursor del mouse cuando se coloca sobre el botón */
  }

  .carousel-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
  }
  
  