
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #E3F2FD, #CFEBF9);
    text-align: center;
}

.informacion-container {
    background-color: #F8F8F8;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.direccion-btn {
    display: block;
    width: 50%;
    margin: 10px auto;
    padding: 12px;
    background-color: #2683C6;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.direccion-btn:hover {
    background-color: #1A5B8F;
}

.formulario {
    display: none;
    background: white;
    padding: 15px;
    margin: 10px auto;
    width: 50%;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.formulario h3 {
    text-align: center;
    color: #333;
}

.formulario label {
    display: block;
    margin: 10px 0 5px;
}

.formulario input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}


.enviar-todo {
    display: block;
    width: 50%;
    margin: 20px auto;
    padding: 15px;
    background-color: #2C3E50;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.enviar-todo:hover {
    background-color: #1B252F;
}

        .circle-top-right {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom right, #364B9B, #364B9B);
    border-radius: 50%;
    z-index: -1; /* Detrás del contenido */
}

/* Círculo inferior izquierdo */
.circle-bottom-left {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(to bottom right, #1A3E70, #364B9B);
    border-radius: 50%;
    z-index: -1;
}

/* Curva inferior izquierda */
.curve-bottom-left {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    border: 15px solid #3f3f3f;
    border-top: none;
    border-right: none;
    border-radius: 50%;
    z-index: -1;
}

/* Curva superior izquierda */
.curve-top-left {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    border: 20px solid #0b9aec59;
    border-bottom: none;
    border-left: none;
    border-radius: 50%;
    z-index: -1;
}

/* Responsividad: Ajustar tamaños en pantallas pequeñas */
@media (max-width: 768px) {
    .circle-top-right {
        width: 50px;
        height: 50px;
    }

    .circle-bottom-left {
        width: 80px;
        height: 80px;
    }

    .curve-bottom-left, .curve-top-left {
        width: 100px;
        height: 100px;
    }
}

/* Curva inferior derecha */
/* Curva inferior derecha (invertida) */
.curve-bottom-right {
    position: absolute;
    bottom: -30px; /* Ajusta la posición vertical */
    right: -30px; /* Ajusta la posición horizontal */
    width: 150px; /* Tamaño de la curva */
    height: 150px; /* Tamaño de la curva */
    background: linear-gradient(to bottom right, #1A3E70, #364B9B); /* Color del borde */
    border-bottom: none; /* Oculta la parte inferior */
    border-right: none; /* Oculta la parte derecha */
    border-radius: 50%; /* Hace que el borde sea redondeado */
    z-index: -1; /* Lo envía detrás del contenido */
    transform: rotate(0); /* Voltea la curva */
}

/* Responsividad: Ajustar la curva en pantallas pequeñas */
@media (max-width: 768px) {
    .curve-bottom-right {
        width: 100px;
        height: 100px;
        bottom: -20px;
        right: -20px;
    }
}

/* Pequeño círculo superior derecho */
.small-circle-top-right {
    position: absolute;
    top: 10px; /* Ajusta la posición vertical */
    right: 10px; /* Ajusta la posición horizontal */
    width: 40px; /* Tamaño del círculo */
    height: 40px; /* Tamaño del círculo */
    background: linear-gradient(to bottom right, #1A3E70, #364B9B); /* Color del círculo */
    border-radius: 50%; /* Lo hace completamente redondeado */
    z-index: -1; /* Lo envía detrás del contenido */
}

/* Responsividad: Ajustar el círculo en pantallas pequeñas */
@media (max-width: 768px) {
    .small-circle-top-right {
        width: 30px;
        height: 30px;
        top: 10px;
        right: 10px;
    }
}



input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 50%;  /* Reduce el ancho */
    padding: 6px;  /* Reduce el padding interno */
    font-size: 14px;  /* Reduce el tamaño del texto */
    border-radius: 5px;  /* Mantiene bordes redondeados */
}

@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        width: 100%;  /* En pantallas pequeñas, usa todo el ancho */
    }
}

.horario-contenedor {
    display: flex;
    justify-content: center; /* Centrar horizontalmente */
    align-items: center;
    gap: 15px; /* Espacio entre los inputs */
    margin-top: 10px; /* Espacio entre el título y los inputs */
}

.horario-contenedor label {
    font-weight: bold;
    white-space: nowrap; /* Evita que se rompan las palabras */
}

.horario-contenedor input[type="time"] {
    width: 120px; /* Ajustar al mismo tamaño que otros inputs */
    padding: 8px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
    outline: none;
}

/* Estilos para los select (combobox) */
select {
    width: 50%; /* Igual a los input */
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px; /* Bordes redondeados */
    background-color: white;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Cambia el color del borde cuando se selecciona */
select:focus {
    border-color: #2683C6;
    box-shadow: 0px 0px 5px rgba(38, 131, 198, 0.5);
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
    select {
        width: 100%;
    }
}
.input-group {
    display: flex;
    justify-content: center; /* Centra los inputs */
    gap: 10px; /* Espaciado entre inputs */
    max-width: 600px; /* Ajusta el ancho máximo del grupo */
    margin: 0 auto; /* Centra horizontalmente */
}

.input-group input {
    flex: 1;
    max-width: 200px; /* Tamaño más compacto */
    min-width: 140px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    text-align: center; /* Centra el texto dentro del input */
}


.input-group input:focus {
    border-color: #007bff; /* Azul cuando está activo */
    outline: none;
}

/* Círculo superior derecho */
.circle-top-right {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom right, #364B9B, #364B9B);
    border-radius: 50%;
    z-index: -1;
}

/* Círculo inferior izquierdo */
.circle-bottom-left {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(to bottom right, #1A3E70, #364B9B);
    border-radius: 50%;
    z-index: -1;
}

/* Curva inferior izquierda */
.curve-bottom-left {
    position: fixed;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    border: 15px solid #3f3f3f;
    border-top: none;
    border-right: none;
    border-radius: 50%;
    z-index: -1;
}

/* Curva superior izquierda */
.curve-top-left {
    position: fixed;
    top: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    border: 20px solid #0b9aec59;
    border-bottom: none;
    border-left: none;
    border-radius: 50%;
    z-index: -1;
}

/* Curva inferior derecha */
.curve-bottom-right {
    position: fixed;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(to bottom right, #1A3E70, #364B9B);
    border-bottom: none;
    border-right: none;
    border-radius: 50%;
    z-index: -1;
}

/* Pequeño círculo superior derecho */
.small-circle-top-right {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(to bottom right, #1A3E70, #364B9B);
    border-radius: 50%;
    z-index: -1;
}

/* Responsividad: Ajustar tamaños en pantallas pequeñas */
@media (max-width: 768px) {
    .circle-top-right {
        width: 50px;
        height: 50px;
    }

    .circle-bottom-left {
        width: 80px;
        height: 80px;
    }

    .curve-bottom-left, .curve-top-left, .curve-bottom-right {
        width: 100px;
        height: 100px;
    }

    .small-circle-top-right {
        width: 30px;
        height: 30px;
        top: 10px;
        right: 10px;
    }
}

/* Eliminar scrollbar */
body {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

::-webkit-scrollbar {
    display: none;
}
/* Tus estilos actuales (se mantienen igual) */
/* Mantenemos tus estilos originales */
/* Estilos generales para títulos */
.section-title {
    display: block;
    font-weight: bold;
    margin: 20px 0 10px 0;
    color: #1A3E70;
    text-align: center;
}

/* Contenedor principal de exclusividad */
.exclusividad-container {
    width: 45%;
    max-width: 600px;
    margin: 0 auto 20px auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Items de exclusividad */
.exclusividad-item {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-height: 24px;
}

/* Oculta el checkbox nativo */
.exclusividad-item .custom-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Checkbox personalizado */
.exclusividad-item .checkmark {
    position: absolute;
    left: 0;
    top: 0;
    height: 22px;
    width: 22px;
    background-color: #fff;
    border: 2px solid #2683C6;
    border-radius: 4px;
    transition: all 0.2s ease;
}

/* Estilo cuando está marcado */
.exclusividad-item .custom-checkbox:checked ~ .checkmark {
    background-color: #2683C6;
    border-color: #1a5b8f;
    box-shadow: 0 0 0 2px rgba(38, 131, 198, 0.2);
}

/* Checkmark (✓) */
.exclusividad-item .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Mostrar checkmark cuando está seleccionado */
.exclusividad-item .custom-checkbox:checked ~ .checkmark:after {
    display: block;
}

/* Efecto hover */
.exclusividad-item:hover .checkmark {
    background-color: #0b9aec59;
}

/* Texto del checkbox */
.exclusividad-item .checkbox-label {
    margin-left: 10px;
}



/* Estilos para el grupo Tipo de Servicio (manteniendo las clases originales) */
.tipo-servicio {
    width: 45%;
    max-width: 600px;
    margin: 0 auto 20px auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tipo-servicio label {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-height: 24px;
}

.tipo-servicio label .custom-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.tipo-servicio label .checkmark {
    position: absolute;
    left: 0;
    top: 0;
    height: 22px;
    width: 22px;
    background-color: #fff;
    border: 2px solid #2683C6;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.tipo-servicio label .custom-checkbox:checked ~ .checkmark {
    background-color: #2683C6;
    border-color: #1a5b8f;
    box-shadow: 0 0 0 2px rgba(38, 131, 198, 0.2);
}

.tipo-servicio label .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.tipo-servicio label .custom-checkbox:checked ~ .checkmark:after {
    display: block;
}

.tipo-servicio label:hover .checkmark {
    background-color: #0b9aec59;
}

.tipo-servicio label .custom-checkbox:checked ~ span:not(.checkmark) {
    color: #1a5b8f;
}

.campo-invalido {
    border: 2px solid red !important;
    background-color: #ffe6e6;
}

.mensaje-error {
    color: red;
    font-size: 0.9em;
    margin-top: 4px;
}

.sede-error {
    border: 2px solid red;
    animation: parpadeo 1s infinite;
}

@keyframes parpadeo {
    0% { background-color: #e74c3c; }
    50% { background-color: #c0392b; }
    100% { background-color: #e74c3c; }
}
