.formulario-cita 
{
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.formulario-cita h2 
{
    text-align: center;
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.formulario-cita .grupo-campo 
{
    margin-bottom: 0.6rem;
    width: 100%;
}

.grupo-campo label 
{
    display: block;
    margin-bottom: 0.2rem;
    font-weight: 600;
    color: #000000;
}

.opciones-servicio 
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
    margin-top: 0.3rem;
}

.etiqueta-servicio 
{
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: #000000;
}

.opciones-servicio label 
{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    cursor: pointer;
}

input[type="text"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="email"],
input[type="tel"],
select 
{
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #000000;
    border-radius: 6px;
    font-size: 1rem;
    transition: border 0.2s;
    background-color: #ffffff;
    -webkit-appearance: none;
    appearance: none;
    min-height: 40px;
    line-height: normal;
    color: #000000;
}

input:focus,
select:focus 
{
    border-color: #000000;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,105,170,0.2);
}

.btn-cita 
{
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    margin-top: 1rem;
    transition: background 0.3s;
}

.btn-cita:hover 
{
    background: #333;
}

.contenido-principal 
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    align-items: stretch;
}

.informacion-empresa 
{
    background: #ffffff;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.informacion-empresa h2 
{
    text-align: center;
    margin-bottom: 0.5rem;
    color: #000000;
    font-size: 1.6rem;
    line-height: 1.3;
}

.informacion-empresa 
.beneficios 
{
    margin-bottom: 2rem;
}

.eslogan-destacado 
{
    font-size: 1.1rem;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.beneficios 
{
    margin-top: 1rem;
    margin-bottom: 0;
}

.beneficios p 
{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.beneficios p:last-child 
{
    margin-bottom: 0;
}

.beneficios i 
{
    color: #000000;
    width: 20px;
}

.frase-inspiradora 
{
    font-size: 1rem;
    font-style: italic;
    color: #c5a059;
    text-align: center;
    font-weight: 600;
    margin: 0.5rem 0 2rem 0;
    padding: 0 1rem;
}

.botones-contacto-columna 
{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.btn-contacto-full 
{
    background: #000000;
    color: #ffffff;
    padding: 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-contacto-full:hover 
{
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(197, 160, 89, 0.3);
}

.btn-contacto-full i 
{
    font-size: 1.2rem;
}

.seccion-videos 
{
    padding: 60px 5%;
    background-color: #ffffff;
    text-align: center;
}

.contenedor-videos 
{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.tarjeta-video 
{
    flex: 1;
    min-width: 220px;
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.tarjeta-video:hover 
{
    transform: translateY(-5px);
}

.marco-video 
{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.marco-video iframe 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.tarjeta-video h3 
{
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.tarjeta-video p 
{
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.servicios-destacados 
{
    padding: 3rem 1rem;
    background-color: #f4f4f4;
    text-align: center;
}

.titulo-seccion h2 
{
    font-size: 2rem;
    color: #000000;
    margin-bottom: 0.5rem;
}

.linea-dorada 
{
    width: 60px;
    height: 3px;
    background: #c5a059;
    margin: 0 auto 2rem auto;
}

.contenedor-tarjetas 
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tarjeta-servicio 
{
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex: 1 1 250px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tarjeta-servicio:hover 
{
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-bottom: 3px solid #c5a059;
}

.icono-servicio 
{
    font-size: 2.5rem;
    color: #c5a059;
    margin-bottom: 1rem;
}

.tarjeta-servicio h3 
{
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonios 
{
    padding: 3rem 1rem;
    color: #ffffff;
    text-align: center;
}

.testimonios h2 
{
    font-size: 2rem;
    color: #000000;
    margin-bottom: 0.5rem;
}

.contenedor-testimonios 
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.caja-testimonio 
{
    background: #000000;
    padding: 1.5rem;
    border-radius: 8px;
    flex: 1 1 300px;
    max-width: 350px;
    position: relative;
    text-align: center;
}

.caja-testimonio p 
{
    font-style: italic;
    color: #ffffff;
    margin-bottom: 1rem;
}

.caja-testimonio .autor 
{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #ffffff;
    justify-content: flex-end;
}

.caja-testimonio .estrellas 
{
    color: #ffd700;
    margin-top: 5px;
    text-align: right;
}

.alerta-overlay 
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(3px);
}

.alerta-caja 
{
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    min-width: 300px;
    max-width: 400px;
    font-family: inherit;
}

.alerta-texto 
{
    margin-bottom: 20px;
    color: #333333;
    line-height: 1.6;
    font-size: 15px;
    font-weight: 500;
}

.alerta-boton 
{
    padding: 10px 20px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.alerta-boton:hover 
{
    background-color: #333333;
}

@media (max-width: 480px) 
{
    .opciones-servicio 
    {
        grid-template-columns: 1fr;
    }

    .btn-llamar, 
    .btn-ubicar, 
    .btn-escribir 
    {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) 
{
    .tarjeta-servicio, 
    .caja-testimonio 
    {
        max-width: 100%;
    }
}

@media (max-width: 900px) 
{
    .contenedor-videos 
    {
        flex-direction: column;
        align-items: center;
    }

    .tarjeta-video 
    {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 1024px) 
{
    .contenido-principal 
    {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .informacion-empresa, 
    .formulario-cita 
    {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
}