/* @import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap'); */

@font-face {
    font-family: 'Century Gothic';
    src: url('fonts/centurygothic.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}




.same-height {
    height: 100%;
    object-fit: cover;
}

.navbar-nav {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: var(--bs-navbar-color);
    --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
    --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
    display: flex
;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    font-size: 1.2em;
    font-weight: 300;
}

.navbar-dark, .navbar[data-bs-theme=dark] {
    --bs-navbar-color: rgba(255, 255, 255, 0.95);
    --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
    --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
    --bs-navbar-active-color: #fff;
    --bs-navbar-brand-color: #fff;
    --bs-navbar-brand-hover-color: #fff;
    --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
    --bs-navbar-toggler-icon-bg: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e);
}

.deliverLogo {
    width: 130px;
}

.colorPrimario{
    background-color: rgb(38, 50, 63);
    color:white;
}

body {
    font-family: 'Century Gothic' !important;
    margin: 0;
    padding: 0;
    color: #333;
    /* Color de texto principal */
}

/* Opcional: Ajustar tamaños y pesos para encabezados */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    /* Negrita para encabezados */
}

p {
    font-size: 1rem;
    /* Tamaño de texto para párrafos */
    line-height: 1.6;
    /* Espaciado entre líneas */
}

@media screen and (max-width: 768px) {
    .deliverLogo {
        width: 160px;
        margin-left: 10px;
    }
}

#tarifas {
    background-color: #f8f9fa;
    /* Fondo claro */
}

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Sombra para las tarjetas */
    transition: transform 0.3s ease-in-out;
    /* Efecto al pasar el mouse */
}

.card:hover {
    transform: scale(1.05);
    /* Agranda ligeramente la tarjeta al pasar el mouse */
}

.card-header {
    font-size: 1.25rem;
    /* Tamaño del título */
    font-weight: bold;
}

.card-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#tarifas .table {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Sombra para la tabla */
}

#tarifas .table th,
#tarifas .table td {
    vertical-align: middle;
    /* Centrar el texto verticalmente */
}

#tarifas .btn {
    width: 100%;
    /* Botones del mismo ancho */
}

#tarifas .text-success {
    font-weight: bold;
    color: #28a745;
    /* Verde de Bootstrap */
}

#tarifas .text-danger {
    font-weight: bold;
    color: #dc3545;
    /* Rojo de Bootstrap */
}

#servicios .service-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    /* Hace el contenedor circular */
    overflow: hidden;
    /* Asegura que la imagen se ajuste al círculo */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Sombra para destacar */
    transition: transform 0.3s ease-in-out;
}

#servicios .service-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Asegura que la imagen ocupe todo el círculo sin deformarse */
}

#servicios .service-circle:hover {
    transform: scale(1.1);
    /* Efecto de zoom al pasar el mouse */
}

#servicios h5 {
    font-size: 1rem;
    color: #333;
}

#como-funciona {
    background-color: #f8f9fa; /* Fondo claro */
    color: #333; /* Texto oscuro */
}

#como-funciona .step {
    background-color: #fff; /* Fondo blanco */
    border: 1px solid #ddd; /* Bordes ligeros */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra ligera */
    padding: 20px;
}

#como-funciona .step-number {
    width: 60px;
    height: 60px;
    background-color: #007bff; /* Azul profesional */
    color: #fff;
    font-size: 1.8rem;
    line-height: 60px;
    border-radius: 50%; /* Hace un círculo */
    margin: 0 auto; /* Centra el número */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Sombra para el círculo */
}

#como-funciona h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #007bff; /* Azul profesional */
}

#como-funciona p {
    line-height: 1.8; /* Espaciado para legibilidad */
    margin: 0;
}

.content {
    max-width: 1920px !important;
    margin: 0 auto;
}

.navbar-collapse.show,
.navbar-collapse.collapsing {
    border-radius: 0 0 10px 10px;
    padding: 7px;
    background-color: rgba(0, 0, 0, 0.5);
    margin-top: 12px;
}

nav {
    height: 60px !important;
}

.titulo {
    font-size: 3em;
    font-weight: bold;
}

.titulo_mediano {
    font-size: 2.1em;
}

.quienes-somos {
    display: flex;
    align-items: stretch;
    /* Ambos elementos tendrán la misma altura */
    gap: 10px;
    /* Espaciado entre la imagen y el video */
    max-width: 100%;
    flex-wrap: wrap;
    /* Permite que se adapten en pantallas pequeñas */
}

.quienes-somos img {
    width: 60%;
    /* Ambos ocupan la mitad del ancho */
    object-fit: cover;
    /* Ajusta el contenido manteniendo proporciones */
    height: auto;
    max-height: 300px;
    /* Puedes ajustar el máximo según lo necesites */
}

.quienes-somos video {
    width: 39%;
    /* Ambos ocupan la mitad del ancho */
    object-fit: cover;
    /* Ajusta el contenido manteniendo proporciones */
    height: auto;
    max-height: 300px;
    /* Puedes ajustar el máximo según lo necesites */
}

@media (max-width: 1015px) {
    .quienes-somos {
        flex-direction: column;
        /* En móviles, los pone uno debajo del otro */
    }

    .quienes-somos img,
    .quienes-somos video {
        width: 100%;
    }

    .titulo {
        font-size: 2em;
    }
}


.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #E53935; /* rojo vibrante */
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeSlide 0.5s ease;
  }

  .notification .icon {
    font-size: 20px;
  }

  @keyframes fadeSlide {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .close-btn {
    margin-left: auto;
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
  }

  .close-btn:hover {
    color: #ccc;
  }

  .whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
  }

  .whatsapp-button:hover {
    transform: scale(1.1);
  }

  .whatsapp-button svg {
    width: 28px;
    height: 28px;
    fill: white;
  }