﻿/* Estilos compartidos */
:root {
    --primary-color: #1a365d;
    --secondary-color: #3182ce;
    --light-color: #f5f5f5;
    --dark-color: #333333;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-color);
    padding-top: 0;
}

/* Encabezado animado */
.header-animated {
    background-color: var(--primary-color);
    color: white;
}

#titulo-animado {
    animation: changeColor 5s infinite alternate;
}

.container.mt-4 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
header-with-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.header-logo {
    height: 50px; /* Ajusta según necesites */
    width: auto;
    max-width: 180px; /* Controla el ancho máximo */
    object-fit: contain;
}
@media (max-width: 768px) {
    .header-with-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .header-logo {
        height: 40px;
        max-width: 150px;
    }
}

/* Estilos mejorados para los controles */
/* Estilos base mejorados */
.container.mt-4 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

/* Controles más compactos pero elegantes */
.inputAutocomplete,
.form-control,
.select-custom {
    width: 100%;
    padding: 8px 12px; /* Más compacto */
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 13px; /* Tamaño de fuente más pequeño */
    transition: all 0.2s ease;
    background-color: #fff;
    margin-bottom: 6px;
    /* Efecto 3D mejorado */
    border-bottom: 2px solid #a0aec0;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.8), 0 2px 3px rgba(0,0,0,0.1);
}

    .inputAutocomplete:focus,
    .form-control:focus,
    .select-custom:focus {
        border-color: #3182ce;
        border-bottom-width: 2px;
        box-shadow: inset 0 1px 2px rgba(255,255,255,0.8), 0 2px 5px rgba(49, 130, 206, 0.3);
        outline: none;
    }

/* Etiquetas más refinadas */
label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #4a5568;
    font-size: 13px;
    letter-spacing: 0.3px;
}

/* Listas desplegables compactas y elegantes */
.ulHidden, .hiddenMarcas {
    position: absolute;
    width: calc(100% - 2px);
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 4px 4px;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 12.5px; /* Fuente más pequeña */
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; /* Fuente elegante */
}

    .ulHidden li, .hiddenMarcas li {
        padding: 6px 10px;
        transition: background 0.15s ease;
    }

        .ulHidden li:hover, .hiddenMarcas li:hover {
            background: #ebf8ff;
        }

/* Botón compacto pero con buen efecto 3D */
#btnVerOfertas {
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    background-color: #3b82f6;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.15s ease;
    border-bottom: 2px solid #1d4ed8;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.15);
    width: auto;
    min-width: 150px;
}

    #btnVerOfertas:hover {
        background-color: #2b6cb0;
        transform: translateY(-1px);
        box-shadow: 0 4px 6px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.2);
    }

    #btnVerOfertas:active {
        transform: translateY(1px);
        border-bottom-width: 1px;
        box-shadow: 0 2px 3px rgba(0,0,0,0.1), inset 0 1px 2px rgba(0,0,0,0.1);
    }
.form-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr; /* Tercera columna más ancha */
    gap: 20px;
    margin-bottom: 20px;
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.image-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Contenedor de imagen */
.image-container {
    background-color: #f9fafb;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    padding: 15px;
    text-align: center;
    height: calc(100% - 60px); /* Ajuste para el botón */
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.7);
}
/* Imagen con mejor proporción y espaciado */
#imgAuto {
    max-width: 100%;
    max-height: 220px; /* Más grande que antes */
    height: auto;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    object-fit: contain;
    margin: 0 auto;
    display: none;
}

/* Contenedor del botón */
.button-container {
    text-align: center;
    margin-top: 15px;
}
/* Ajustes responsivos */
@media (max-width: 992px) {
    .form-grid-container {
        grid-template-columns: 1fr 1fr;
    }

    .image-column {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .form-grid-container {
        grid-template-columns: 1fr;
    }

    .image-column {
        grid-column: span 1;
    }

    #imgAuto {
        max-height: 180px;
    }
}

/* Contenedor de imagen mejorado */
.text-center.mt-3 {
    margin-top: 25px;
    padding: 15px;
    background-color: #f8fafc;
    border-radius: 6px;
    border: 1px solid #edf2f7;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.8);
}

/* Efecto de profundidad para contenedores */
.card, .text-center.mt-3 {
    position: relative;
}

    .card:after, .text-center.mt-3:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: inherit;
        box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        opacity: 0.5;
        z-index: -1;
        transition: opacity 0.3s ease;
    }

/* Ajustes responsivos */
@media (max-width: 768px) {
    .container.mt-4 {
        padding: 10px;
    }

    .inputAutocomplete,
    .form-control,
    .select-custom {
        padding: 7px 10px;
        font-size: 12.5px;
    }

    #imgAuto {
        max-width: 90%;
        max-height: 160px;
    }
}

.oculto 
{
display:none;
}

@keyframes changeColor {
    0% {
        color: #ffffff;
    }

    25% {
        color: #a0c4ff;
    }

    50% {
        color: #ffadad;
    }

    75% {
        color: #caffbf;
    }

    100% {
        color: #fffffc;
    }
}

/* Barra de Menú */
.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s;
}

    .navbar-dark .navbar-nav .nav-link:hover {
        color: white;
        background-color: var(--secondary-color);
        border-radius: 4px;
    }
.select-custom {
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    padding: 8px 12px;
    transition: all 0.3s;
}

    .select-custom:focus {
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 0.25rem rgba(49, 130, 206, 0.25);
    }

.search-box {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 6px 12px;
}

.input-readonly {
    background-color: #f8f9fa;
    border: 1px solid #e2e8f0;
    color: var(--dark-color);
}

.form-check-input {
    margin-top: 0.3rem;
}
#btnVerOfertas {
    transition: all 0.3s ease;
}

    #btnVerOfertas:disabled {
        opacity: 0.7;
    }

.spinner-border {
    vertical-align: middle;
    margin-right: 8px;
}
.email-template {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.email-header {
    background-color: #007bff;
    color: white;
    padding: 15px;
    text-align: center;
}

.email-body {
    padding: 20px;
    background-color: #f9f9f9;
}

.email-footer {
    padding: 10px;
    text-align: center;
    font-size: 12px;
    color: #777;
    background-color: #f0f0f0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

    .info-table th, .info-table td {
        padding: 8px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .info-table th {
        background-color: #f2f2f2;
    }
/* Responsive */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }
}
@media (max-width: 768px) {
    .form-group label {
        font-weight: 500;
    }

    .select-custom, .search-box, .input-readonly {
        width: 100%;
    }

    /* Espaciado entre columnas en móviles */
    .col-lg-6 {
        padding: 0 15px;
    }
}

.ulHidden {
    margin-top: -1px;
    width: 100%;
    z-index: 1;
    background: #fff;
    margin: 0;
    list-style: none;
    transition: none;
    padding: 0;
    border: 1px solid #bfc8c9;
}

    .ulHidden li {
        padding: 6px 12px;
        transition: 0.2s background;
        cursor: pointer;
    }

        .ulHidden li.selected {
            background: rgba(0, 0, 0, 0.08);
        }

        .ulHidden li:hover {
            background: #e6f0f2;
        }

        .ulHidden li + li {
            border-top: 1px solid #bfc8c9;
        }

.hidden {
    display: none;
}



.hiddenMarcas {
    display: none;
}

.formulogin {
    height: 520px;
    width: 400px;
    background-color: rgba(255,255,255,0.13);
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    padding: 50px 35px;
}

.bodylogin {
    background-color: #fdfefe;
}

.formulogin h3 {
    background: #85c1e9;
    color: white;
    font-weight: bold;
    border: 3px solid #273746;
    text-align: center;
    font-size: 18px;
    border-radius: 10px;
}

.footerlog {
    clear: both;
    text-align: center;
    padding: 10px;
    background-color: #fdfefe;
    border-top: 1px solid #ccc;
}
.labelformularios {
    /* display: block;
    margin-bottom: 10px;
*/
    display: block;
    margin-bottom: 2px;
    font-size: 12px;
    font-weight: 700;
    color: #333333;
}

.textoformularios, select {
    width: 140px;
    /* padding: 4px;*/
    height: 24px;
    /* margin-bottom: 2px;*/
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    /*width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;*/
}
.column1, .column2, .column3, .column4 {
    float: left;
    width: 25%; /* ajusta el ancho según sea necesario */
    padding: 10px;
    box-sizing: border-box;
}
.grillas {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    border-collapse: collapse;
    width: auto;
}

    .grillas thead th {
        background-color: #337AB7;
        color: #F7F7F7;
        padding: 10px;
        text-align: left;
        border-bottom: 1px solid #ddd;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        /* background-color: var(--color-principal);
        color: #fff;
        padding: 10px;
        text-align: left;
        border-bottom: 1px solid #ddd;*/
    }

    .grillas tbody td {
        background-color: #F9F9F9;
        padding: 10px;
        border-bottom: 1px solid #ddd;
        /*width :auto !important;*/
        /* padding: 10px;
        border-bottom: 1px solid #ddd;*/
    }

    .grillas tbody tr:hover {
        background-color: #F2F2F2;
    }
.hero-box {
    background-image: url('/Images/Frente.jpg'); /* Reemplaza con la ruta de tu imagen */
    background-size: cover; /* Ajusta la imagen para cubrir todo el div */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que se repita la imagen */
    color: white; /* Cambia el color del texto para mejor contraste */
    padding: 2rem; /* Ajusta el padding según necesites */
    border-radius: 8px; /* Opcional: agrega bordes redondeados */
    position: relative; /* Necesario para el overlay si lo usas */
}

    /* Opcional: overlay oscuro para mejorar legibilidad del texto */
    .hero-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5); /* Ajusta la opacidad según necesites */
        z-index: 0;
        border-radius: 8px; /* Igual que el .hero-box */
    }

    .hero-box p {
        position: relative; /* Para que el texto aparezca sobre el overlay */
        z-index: 1;
    }
/* Estilo mejorado para el select de año */
#ddlAnio {
    padding: 8px 32px 8px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    appearance: none;
    width: 100%;
}

    #ddlAnio:focus {
        border-color: #80bdff;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

    /* Asegurar que el texto sea visible en todos los navegadores */
    #ddlAnio option {
        color: #495057;
        background-color: #fff;
        padding: 4px 8px;
    }

/* Fix para Firefox */
@-moz-document url-prefix() {
    #ddlAnio {
        color: #495057 !important;
        text-shadow: 0 0 0 #495057;
        padding-right: 12px;
    }
}



/* Estilos para el formulario multipaso */
.multicotizador-container {
    position: relative;
    min-height: 500px;
}

.form-step {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

    .form-step.active-step {
        display: block;
        opacity: 1;
        position: relative;
    }

.form-navigation {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.btn-next, .btn-prev, .btn-new-search {
    min-width: 120px;
    padding: 10px 20px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-next {
    background-color: #3182ce;
    color: white;
    margin-left: auto;
}

.btn-prev {
    background-color: #6c757d;
    color: white;
}

.btn-new-search {
    background-color: #28a745;
    color: white;
}

.btn-next:hover {
    background-color: #2b6cb0;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-prev:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-new-search:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .form-navigation {
        flex-direction: column;
    }

    .btn-next, .btn-prev, .btn-new-search {
        width: 100%;
    }
}

#comparativaTable {
    margin-top: 20px;
}

    #comparativaTable th {
        background-color: #343a40;
        color: white;
        text-align: center;
    }

    #comparativaTable td {
        text-align: center;
        vertical-align: middle;
    }

        #comparativaTable td:first-child {
            font-weight: bold;
            text-align: left;
        }

.fila-suma-asegurada,
.fila-suma-asegurada td {
    background-color: #28a745 !important;
    color: white !important;
    font-weight: bold;
}

.card-header {
    font-weight: bold;
}

/* Estilos generales */
.contact-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

    .contact-header h1 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .contact-header p {
        font-size: 1.1rem;
        color: #7f8c8d;
        max-width: 700px;
        margin: 0 auto;
    }

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-form, .contact-info {
    flex: 1;
    min-width: 300px;
}

/* Formulario */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

    .contact-form h2 {
        font-size: 1.8rem;
        color: #2c3e50;
        margin-bottom: 25px;
        font-weight: 500;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #34495e;
    }

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

    .form-control:focus {
        border-color: #3498db;
        outline: none;
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    }

.btn-enviar {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
}

    .btn-enviar:hover {
        background-color: #2980b9;
    }

/* Información de contacto */
.contact-info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

    .contact-info h2 {
        font-size: 1.8rem;
        color: #2c3e50;
        margin-bottom: 25px;
        font-weight: 500;
    }

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

    .contact-item i {
        margin-right: 15px;
        font-size: 1.2rem;
        color: #3498db;
        width: 20px;
        text-align: center;
    }

    .contact-item a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.3s;
    }

        .contact-item a:hover {
            color: #2980b9;
            text-decoration: underline;
        }

/* Redes sociales */
.social-media h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #fff;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

    .social-icon:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .social-icon i {
        margin-right: 10px;
        font-size: 1.1rem;
    }

    .social-icon span {
        font-size: 0.95rem;
    }

    /* Iconos específicos para cada red social */
    .social-icon.facebook {
        color: #3b5998;
    }

    .social-icon.twitter {
        color: #1da1f2;
    }

    .social-icon.instagram {
        color: #e1306c;
    }

    .social-icon.linkedin {
        color: #0077b5;
    }

/* Mensajes de respuesta */
.mensaje-respuesta {
    margin-top: 20px;
}

    .mensaje-respuesta .success {
        padding: 12px;
        background-color: #d4edda;
        color: #155724;
        border-radius: 4px;
        border: 1px solid #c3e6cb;
    }

    .mensaje-respuesta .error {
        padding: 12px;
        background-color: #f8d7da;
        color: #721c24;
        border-radius: 4px;
        border: 1px solid #f5c6cb;
    }

/* Responsive */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-form, .contact-info {
        width: 100%;
    }
}
/* Agrega esto a tu archivo CSS */

/* Contenedor principal */
.main-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    margin-bottom: 20px ;
    max-width: 1200px; /* Debe coincidir con el ancho del resto del diseño */
    margin: 0 auto;
    padding: 20px;
}

/* Tarjeta promocional */
.promo-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 90%;
    margin: 20px auto; /* Centrado con margen vertical */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px; /* Espacio uniforme entre elementos */
}

    .promo-card img {
        max-height: 120px;
        width: auto;
        margin: 0 auto; /* Centrar imagen */
    }
.promo-btn {
    padding: 10px 25px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .promo-btn:hover {
        background-color: #2b6cb0;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
@media (max-width: 768px) {
    .promo-card {
        padding: 15px;
    }

    .promo-text {
        font-size: 1rem;
    }

    .promo-btn {
        padding: 8px 20px;
    }
}
/* Estilo para el botón de éxito personalizado */
.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    transition: all 0.3s ease;
}

    .btn-success:hover {
        background-color: #218838;
        border-color: #1e7e34;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
    }

/* Estilos para el footer */
.footer-section {
    background-color: #f8f9fa;
    padding: 30px 0;
    border-radius: 0 0 8px 8px;
}

.contact-info {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .contact-info h2 {
        color: var(--primary-color);
        font-size: 1.5rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }

.contact-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

    .contact-item i {
        margin-right: 10px;
        color: var(--secondary-color);
        width: 20px;
        text-align: center;
    }

.social-media {
    margin-top: 25px;
}

    .social-media h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        color: var(--primary-color);
    }

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background-color: #f1f1f1;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background-color: #e9e9e9;
        transform: translateY(-2px);
    }

    .social-icon i {
        margin-right: 8px;
    }

.nosotros {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e1e5eb;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
    margin: 0;
    
    padding: 30px;
}
.header-with-logo-and-data {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo-container {
    flex: 0 0 auto;
}

.vehicle-data-container {
    flex: 1;
    min-width: 300px;
}

.vehicle-data-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 5px;
}

.vehicle-data-item {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.vehicle-data-label {
    font-weight: bold;
    color: #333;
}

.vehicle-data-value {
    color: #28a745; /* Verde ni muy claro ni muy oscuro */
    font-weight: 500;
}

@media (max-width: 768px) {
    .header-with-logo-and-data {
        flex-direction: column;
        align-items: flex-start;
    }

    .vehicle-data-row {
        flex-direction: column;
        gap: 5px;
    }
}
.form-switch-container {
    display: flex;
    gap: 20px;
}


/* Estilos para los switches alineados */
.switch-label {
    white-space: nowrap;
    position: relative;
    top: 1px;
    margin-right: 15px; /* Espacio entre switches */
}

.form-switch .form-check-input {
    width: 2.3em;
    height: 1.3em;
    margin-left: 0;
}
.sumaasegurada {
    background-color: #27A844;
    font-size:16px;
    color:antiquewhite;
}
/* Contenedor flexible para switches */
.d-flex.align-items-center.gap-3 {
    padding-left: 5px;
    margin-top: 5px;
}

#cbTipoPago:focus {
    outline: none;
    
}
.form-switch {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

    .form-switch .form-check-input {
        margin-right: 8px;
    }
.Agrad {
    color: #800020; /* Color granate/bordo elegante */
    font-size: 1.4rem; /* Tamaño legible pero no excesivo */
    text-align: center;
    font-weight: 500;
    padding: 20px;
    margin: 25px 0;
    border-top: 2px solid #e0c9d1;
    border-bottom: 2px solid #e0c9d1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.5;
}
/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
    .d-flex.align-items-center.gap-3 {
        flex-wrap: wrap;
        gap: 10px !important;
    }

    .form-switch .form-check-input {
        transform: scale(0.9);
        margin-right: 5px !important;
    }
}
/* Estilos para el layout de dos columnas */
.two-column-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.form-column-left, .form-column-right {
    flex: 1;
    min-width: 250px;
}

/* Contenedor de switches */
.switches-container {
    margin-top: 10px;
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Estilos para controles compactos */
.compact-control {
    padding: 6px 10px;
    font-size: 13px;
    height: 34px;
    border-radius: 3px;
    width: 100%;
}

.compact-dropdown {
    max-height: 200px;
    font-size: 13px;
    width: calc(100% - 2px);
    margin-top: -1px;
}

    .compact-dropdown li {
        padding: 5px 10px;
    }

.compact-btn {
    padding: 6px 12px;
    font-size: 13px;
    height: auto;
}

/* Switches compactos y alineados */
.compact-switch {
    display: flex;
    align-items: center;
    margin: 0;
}

    .compact-switch .form-check-input {
        width: 2.3em;
        height: 1.3em;
        margin-left: 0;
        margin-right: 8px;
    }

.switch-label {
    white-space: nowrap;
    font-size: 13px;
    margin-bottom: 0;
    position: relative;
    top: 1px;
}

/* Botón siguiente centrado */
.next-button-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

/* Estilos para el paso 2 compacto */
.compact-form-grid .form-group {
    margin-bottom: 10px;
}

.compact-navigation {
    margin-top: 20px;
    padding-top: 15px;
}

/* Alert compacto */
.compact-alert {
    padding: 8px 12px;
    font-size: 13px;
    margin-top: 15px;
}
/* Ocultar columna Mutual por defecto */
#comparativaTable thead tr th:nth-child(6),
#comparativaTable tbody tr td:nth-child(6) {
    display: none;
}

/* Mostrar solo si es vendedor */
body.es-vendedor #comparativaTable thead tr th:nth-child(6),
body.es-vendedor #comparativaTable tbody tr td:nth-child(6) {
    display: table-cell;
}
/* Ajustes responsivos */
@media (max-width: 768px) {
    .two-column-layout {
        flex-direction: column;
    }

    .switches-container {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}
