/* public/assets/css/new-theme.css */

/*
  Definición de Colores de la Marca
  Esto nos permite usar var(--primary-blue) en lugar de #2839CC,
  haciendo el código más fácil de mantener.
*/
:root {
    --primary-blue: #2839CC;
    --accent-blue: #8DA4FF;
    --white: #FFFFFF;
    --text-color-dark: #333;
    --background-light: #f4f7fc;
}

/* Estilos Generales del Body */
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-light);
    color: var(--text-color-dark);
}

/* ----- Aquí iremos agregando los estilos para el header, footer y demás componentes ----- */

/* public/assets/css/new-theme.css */

/*
  Definición de Colores de la Marca
  Esto nos permite usar var(--primary-blue) en lugar de #2839CC,
  haciendo el código más fácil de mantener.
*/
:root {
    --primary-blue: #2839CC;
    --accent-blue: #8DA4FF;
    --white: #FFFFFF;
    --text-color-dark: #333;
    --background-light: #f4f7fc;
}

/* Estilos Generales del Body */
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-light);
    color: var(--text-color-dark);
}


/* ============================================= */
/* ***** ESTILOS PARA EL NUEVO HEADER ***** */
/* ============================================= */
.app-header {
    background: var(--white);
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 999;
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Sombra sutil */
}

.app-header .main-nav {
    display: flex;
    justify-content: space-between; /* Logo a la izq, menú a la der */
    align-items: center;
    height: 80px;
}

.app-header .main-nav .nav {
    display: flex;
    align-items: center;
    gap: 30px; /* Espacio entre elementos del menú */
}

.app-header .main-nav .nav li {
    list-style: none;
}

.app-header .main-nav .nav a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 5px 0;
    border-bottom: 2px solid transparent; /* Borde invisible para transición suave */
    transition: all 0.3s ease;
}

.app-header .main-nav .nav a:hover,
.app-header .main-nav .nav a.active {
    color: var(--accent-blue);
    border-bottom: 2px solid var(--accent-blue); /* Borde visible en hover o activo */
}


/* ============================================= */
/* ***** ESTILOS PARA EL NUEVO FOOTER ***** */
/* ============================================= */
.app-footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 20px 0;
    margin-top: 60px; /* Espacio para separarlo del contenido */
}

.app-footer .footer-column h4 {
    color: var(--accent-blue);
    font-weight: 700;
    margin-bottom: 20px;
}

.app-footer .footer-column ul {
    list-style: none;
    padding: 0;
}

.app-footer .footer-column ul li {
    margin-bottom: 10px;
}

.app-footer .footer-column a,
.app-footer .footer-column p {
    color: rgba(255, 255, 255, 0.8); /* Blanco con un poco de transparencia */
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-footer .footer-column a:hover {
    color: var(--white);
    padding-left: 5px; /* Pequeño efecto al pasar el mouse */
}

.app-footer .copyright-text {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* Ajustes para el preloader, en caso de que lo necesite */
.js-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-blue);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: opacity .25s ease;
    -o-transition: opacity .25s ease;
    transition: opacity .25s ease;
}

.js-preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

/* Mantenemos la animación del preloader */
.preloader-inner{position:relative}.dot{position:absolute;top:-25px;left:0;right:0;bottom:0;margin:auto;width:6px;height:6px;border-radius:50%;background-color:var(--white);-webkit-animation:dot .8s linear infinite;animation:dot .8s linear infinite}.dots{position:absolute;top:0;left:0;right:0;bottom:0;margin:auto;width:10px;height:10px;margin-left:20px;-webkit-transform:rotateZ(90deg);transform:rotateZ(90deg)}.dots span{position:absolute;width:6px;height:6px;border-radius:50%;background-color:var(--white)}.dots span:first-child{top:-50px;left:0;right:0;margin:auto;-webkit-animation:dot-left .8s linear infinite;animation:dot-left .8s linear infinite}.dots span:last-child{bottom:-50px;left:0;right:0;margin:auto;-webkit-animation:dot-right .8s linear infinite;animation:dot-right .8s linear infinite}@-webkit-keyframes dot{0%,100%{transform:scale(1)}50%{transform:scale(2.5)}}@keyframes dot{0%,100%{transform:scale(1)}50%{transform:scale(2.5)}}@-webkit-keyframes dot-left{0%,100%{transform:translateX(-25px)}50%{transform:translateX(25px)}}@keyframes dot-left{0%,100%{transform:translateX(-25px)}50%{transform:translateX(25px)}}@-webkit-keyframes dot-right{0%,100%{transform:translateX(25px)}50%{transform:translateX(-25px)}}@keyframes dot-right{0%,100%{transform:translateX(25px)}50%{transform:translateX(-25px)}}


/* ============================================= */
/* ***** ESTILOS GESTOR DE COTIZACIONES ***** */
/* ============================================= */

.quote-manager-container {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: 100px; /* Sube el componente para que se solape con el banner */
    position: relative; /* Necesario para que el margin-top funcione correctamente */
    z-index: 10;
}

/* --- Navegación de Productos (Pestañas) --- */
.product-nav {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
}

.product-nav-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 10px 5px;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.product-nav-item:hover {
    color: var(--white);
}

.product-nav-item.active {
    color: var(--white);
    border-bottom-color: var(--accent-blue);
    font-weight: 700;
}

/* --- Contenido del Formulario Interno --- */
.quote-form-content {
    padding-top: 10px;
}

/* Estilos específicos para los campos del formulario dentro del gestor */
.quote-form-content .form-label {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.quote-form-content .form-control {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    border-radius: 8px;
    padding: 12px;
    font-size: 1.1rem;
}

.quote-form-content .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.quote-form-content .form-control:focus {
    background-color: transparent;
    color: var(--white);
    border-color: var(--accent-blue);
    box-shadow: none;
}

/* Estilo especial para el botón principal del paso 1 */
#div_paso_1_placa .input-group .btn-primary {
    background-color: var(--accent-blue);
    color: var(--primary-blue);
    border: none;
    font-weight: 700;
    border-radius: 0 8px 8px 0;
}

/* Caja de información del vehículo */
.vehicle-info-box {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--accent-blue);
}
.vehicle-info-box p {
    margin: 0;
    padding: 5px 0;
}

/* ============================================= */
/* ***** AJUSTES PARA ICONOS Y REFINAMIENTO ***** */
/* ============================================= */

/* Hacemos que el contenedor del link sea flexible para alinear el ícono y el texto */
.product-nav-item {
    display: flex;
    align-items: center; /* Centra verticalmente el ícono con el texto */
    gap: 8px;          /* Crea un espacio de 8px entre el ícono y el texto */
}

/* Le damos un tamaño y alineación al ícono mismo */
.product-nav-item i {
    font-size: 28px;      /* Aumenta el tamaño del ícono para que sea visible */
    line-height: 1;       /* Asegura que no añada espacio vertical extra */
    color: var(--accent-blue); /* Usamos el color de acento para los íconos */
}

/* Cuando el item está activo, el ícono también cambia de color */
.product-nav-item.active i {
    color: var(--white);
}

.product-nav-item:hover i {
    color: var(--white);
}

/* ============================================= */
/* ***** ESTILOS SECCIÓN DE PROMOCIONES ***** */
/* ============================================= */

.promo-section {
    padding: 60px 0; /* Espacio vertical para la sección */
}

.promo-section .section-heading {
    margin-bottom: 40px;
    text-align: center;
}

.promo-section .section-heading h2 {
    color: var(--primary-blue);
    font-weight: 700;
}

/* --- Estilos para cada Tarjeta de Promoción --- */
.promo-card {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden; /* Asegura que la imagen no se salga de los bordes redondeados */
    transition: all 0.3s ease;
    height: 100%; /* Hace que todas las tarjetas tengan la misma altura */
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-8px); /* Efecto de levitar al pasar el mouse */
    box-shadow: 0 12px 30px rgba(40, 57, 204, 0.15);
}

.promo-card .card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.promo-card .card-img {
    width: 100%;
    height: 180px;
    object-fit: cover; /* Asegura que la imagen cubra el espacio sin deformarse */
}

.promo-card .card-body {
    padding: 20px;
}

.promo-card .card-title {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.promo-card .card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.promo-card .card-footer {
    padding: 0 20px 20px 20px;
    margin-top: auto; /* Empuja el footer hacia abajo */
    font-weight: 700;
    color: var(--primary-blue);
}

/* ============================================= */
/* ***** ESTILOS SECCIÓN ACCESOS RÁPIDOS ***** */
/* ============================================= */

.quick-promo-section {
    padding: 40px 0;
}

/* --- Estilos para la Tarjeta Destacada (la grande de la izquierda) --- */
.featured-promo-card {
    display: block;
    height: 100%;
    min-height: 220px; /* Asegura una altura mínima */
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.featured-promo-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(40, 57, 204, 0.3);
}

.featured-promo-card .card-content {
    background: linear-gradient(90deg, rgba(40, 57, 204, 0.85) 0%, rgba(40, 57, 204, 0.01) 100%);
    padding: 30px;
    height: 100%;
}

.featured-promo-card .subtitle {
    font-size: 1.2rem;
    font-weight: 400;
}

.featured-promo-card .title {
    font-size: 3rem;
    font-weight: 900;
}

/* --- Estilos para las Tarjetas Pequeñas con Imagen de Fondo --- */
.quick-promo-card-image-bg {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    color: var(--white);
    background-size: cover;
    background-position: center;
    height: 220px;
    margin:25px 0px 0px 0px;
    transition: all 0.3s ease;
}

.quick-promo-card-image-bg:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(40, 57, 204, 0.3);
}

.quick-promo-card-image-bg a {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.quick-promo-card-image-bg .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgb(78, 78, 78) 1%, rgba(0, 0, 0, 0) 100%);
    padding: 15px;
}

.quick-promo-card-image-bg .subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.8;
}

.quick-promo-card-image-bg .title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

/* ============================================= */
/* ***** ESTILOS PARA EL CARRUSEL Y ESTRELLAS ***** */
/* ============================================= */
.promo-carousel {
    padding: 10px;
}

.swiper-slide {
    height: auto; /* Permite que las tarjetas definan la altura */
}

/* Estilos para los botones de navegación del carrusel */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-blue);
}

/* Estilos para las estrellas de calificación */
.rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
    color: #ffc107; /* Color dorado para las estrellas */
}

.rating-stars span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 700;
    margin-left: 5px;
}

/* ============================================= */
/* ***** ESTILOS SECCIÓN CÓMO LO HACES ***** */
/* ============================================= */
.how-it-works-section {
    padding: 60px 0;
    background-color: var(--white);
}

.section-heading {
    margin-bottom: 40px;
    text-align: center;
}

.section-heading h2 {
    color: var(--primary-blue);
    font-weight: 700;
}

.step-card {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-blue);
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.step-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 10px;
}

/* ============================================= */
/* ***** ESTILOS SECCIÓN DE TESTIMONIOS ***** */
/* ============================================= */
.testimonials-section {
    padding: 60px 0;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.testimonial-quote {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author {
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.author-name {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0;
}

.author-role {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0;
}

/* ============================================= */
/* ***** ESTILOS SECCIÓN DE ASEGURADORAS ***** */
/* ============================================= */
.insurers-section {
    padding: 60px 0;
    background-color: var(--white);
}

.insurers-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.insurers-logos img {
    height: 60px; /* Tamaño mediano y consistente */
    filter: grayscale(100%); /* Pone la imagen en escala de grises */
    transition: all 0.3s ease;
}

.insurers-logos img:hover {
    filter: grayscale(0%); /* Le devuelve el color al pasar el cursor */
    transform: scale(1.1);
}
/* ============================================= */
/* ***** ESTILOS RESPONSIVOS PARA MÓVILES ***** */
/* ============================================= */

/* --- Ajuste para el Gestor de Cotizaciones (Aplicado a todas las vistas) --- */
.quote-manager-container {
    margin: 20px 0px 0px 0px; 
}

/* Se aplicará a pantallas con un ancho máximo de 768px */
@media (max-width: 768px) {

    /* --- Ajustes para el Gestor de Cotizaciones --- */
    /* Mantenemos el margen que definiste también para la vista móvil */
    .quote-manager-container {
        margin: 30px 0px 0px 0px;
    }

    .product-nav {
        flex-wrap: wrap; /* Permite que las pestañas de productos pasen a la siguiente línea si no caben */
        justify-content: center; /* Centra las pestañas */
    }

    .product-nav-item {
        padding: 8px;
        font-size: 0.9rem; /* Reducimos un poco el texto */
    }

    .product-nav-item i {
        font-size: 24px; /* Reducimos el tamaño de los íconos */
    }


    /* --- Ajustes para la Sección de Accesos Rápidos --- */
    .quick-promo-section .row > div {
        /* Hacemos que cada tarjeta ocupe el ancho completo y tenga espacio */
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .featured-promo-card .title {
        font-size: 2rem; /* Reducimos el tamaño del título en la tarjeta grande */
    }
}

/* ============================================= */
/* ***** ESTILOS PARA EL NUEVO HEADER ***** */
/* ============================================= */

/* Ajustes generales al header y navbar */
.app-header .navbar {
    padding: 0;
    height: 80px;
}

.app-header .navbar-brand {
    padding: 0;
}

/* Estilo para el botón de Ventas */
.sales-phone-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.sales-phone-btn:hover {
    background-color: #1a2799; /* Un azul un poco más oscuro */
    color: var(--white);
}

/* Estilos para los links de navegación */
.app-header .nav-link {
    color: var(--primary-blue);
    font-weight: 500;
}

/* Estilos para el menú desplegable */
.dropdown-menu {
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dropdown-item {
    color: var(--primary-blue);
}

.dropdown-item:hover {
    background-color: var(--accent-blue);
    color: var(--primary-blue);
}

/* Ajustes para la vista móvil (cuando el menú se colapsa) */
@media (max-width: 991.98px) {
    .app-header .navbar-nav {
        padding-top: 20px;
    }
    .sales-phone-btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
    .app-header .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
}
