/* ====== ESTILOS GENERALES ======= */
body {
    background-color: #f8faf9;
    color: #111613;
    font-family: 'Inter', sans-serif;
}

.page-content { 
    padding: 80px 50px; 
    max-width: 1250px; 
    margin: 0 auto; 
    line-height: 1.8; 
    color: #4a544f; 
}

.page-content h1 { 
    color: #0e633e; 
    margin-bottom: 40px; 
    font-weight: 900; 
    text-align: center; 
    display: flex; 
    justify-content: center;
}

.page-content h2, 
h2 { 
    color: #0e633e; 
    margin: 40px 0 20px 0; 
}

.page-content p { 
    margin-bottom: 20px; 
    /*font-size: 16px; */
}

ul { 
    margin-bottom: 20px; 
}

.header-container {
    text-align: center;
    margin-bottom: 90px;
}

.page-title {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.page-intro {
    max-width: 750px;
    margin: 0 auto;
    color: #4a544f;
    line-height: 1.7;
    font-size: 16.5px;
}

/* Distribución de texto en columnas */
.text-columns { 
    column-count: 2; 
    column-gap: 40px; 
    margin-bottom: 40px; 
}


/* ===== CONTENEDORES DE PÁGINA, ELEMENTOS EMPRESARIALES Y CITAS ======= */
.contact-page-container {
    max-width: 1000px;
    margin: 60px auto 20px auto;
    padding: 0 40px;
    color: #4a544f;
}

.contact-top-info {
    text-align: center;
    margin-bottom: 50px;
}

.contact-top-info h2 {
    color: #0e633e;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
}

.empresa-flex { 
    display: flex; 
    align-items: center;
    gap: 40px; 
    margin-bottom: 40px; 
}

.empresa-text { 
    flex: 2; 
}

.empresa-img { 
    flex: 1; 
    text-align: center; 
}

.empresa-img img,
.bottom-img-container img { 
    width: 100%; 
    border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}

.bottom-img-container { 
    margin-top: 60px; 
    text-align: center; 
}

/* Bloque de Cita */
.quote-box { 
    background: #f8faf9; 
    padding: 40px; 
    border-left: 5px solid #0e633e; 
    margin: 40px 0; 
    text-align: center; 
    border-radius: 0 10px 10px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.quote-box p { 
    font-size: 1.2rem; 
    font-style: italic; 
    color: #0e633e; 
    margin-bottom: 15px; 
}


/* ====== CANALES DE COMUNICACIÓN Y FORMULARIOS ===== */
.info-channels-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.channel-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #111613;
    font-weight: 700;
    font-size: 18px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.channel-link:hover {
    color: #0e633e;
    transform: translateY(-1px);
}

.channel-link i {
    color: #0f6b43;
    font-size: 18px;
    background: #eaf5ef;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Tarjetas y Formularios de Entrada */
.contact-form-card {
    background: #ffffff;
    border: 1px solid #eef2f0;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(5, 38, 24, 0.03);
    margin-bottom: 40px;
}

.form-container { 
    max-width: 450px; 
    margin: 60px auto; 
    padding: 40px 40px 10px 40px; 
    background: #fff; 
    border-radius: 16px; 
    box-shadow: 0 8px 24px rgba(0,0,0,0.05); 
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.full-width {
    grid-column: span 2;
}

.form-group { 
    margin-bottom: 20px; 
}

.form-group label { 
    display: block; 
    margin-bottom: 8px; 
    font-weight: 600; 
    color: #052618; 
}

.form-group input { 
    width: 100%; 
    padding: 12px; 
    border: 1px solid rgba(0,0,0,0.1); 
    border-radius: 8px; 
    box-sizing: border-box; 
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 13px;
    font-weight: 600;
    color: #4a544f;
}

.input-group input,
.input-group textarea,
.input-group select {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 14px 16px;
    background: #f8faf9;
    border: 1px solid #e2e8e6;
    border-radius: 8px;
    color: #111613;
    outline: none;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-color: #0e633e;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(14, 99, 62, 0.08);
}

.input-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error {
    color: #cc3333;
    font-size: 12px;
    margin: 4px 0 0 0;
    font-weight: 500;
}

/* Selector Especial de Póliza */
.poliza-select-wrapper {
    position: relative;
}

.poliza-select-wrapper select {
    appearance: none;
    cursor: pointer;
    font-weight: 500;
}

.poliza-select-wrapper::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #0e633e;
    pointer-events: none;
    font-size: 12px;
}


/* ===== BOTONES ESTILIZADOS ====== */
.btn-submit {
    background: #0f6b43;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #0c5a38;
    box-shadow: 0 4px 15px rgba(12, 90, 56, 0.2);
}

.btn-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin: 10px auto 0 auto;
    background: #0f6b43;
    color: white;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 16px;
    text-decoration: none;
    transition: 0.2s ease;
    margin-bottom: 10px;
}

.btn-link:hover { 
    transform: translateY(-2px); 
    background: #0c5a38; 
    color: white;
}

.btn-solicitar {
    background: #0f6b43;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    transition: 0.2s ease;
}

.btn-solicitar:hover {
    background: #022b16;
    color: #fff;
}

.form-notice {
    font-size: 11px;
    color: #77837f;
    margin-top: 15px;
    text-align: center;
}

.icono { 
    width: 20px; 
    height: 20px; 
    display: block;
}


/* ====== SECCIÓN DE DEPARTAMENTOS ======= */
.grid-dept { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    margin: 30px 0; 
}

.dept-card { 
    border: 1px solid #ebebeb; 
    padding: 25px; 
    border-radius: 8px; 
    text-align: center; 
    transition: 0.3s;
}

.dept-card:hover { 
    border-color: #0e633e; 
    box-shadow: 0 5px 15px rgba(14,99,62,0.15); 
    transform: translateY(-5px); 
}

.dept-card i { 
    font-size: 30px; 
    color: #0e633e; 
    margin-bottom: 15px; 
    display: block; 
}

.dept-card h3 { 
    font-size: 14px; 
    margin-bottom: 15px; 
    color: #333; 
}

.dept-card a { 
    color: #0e633e; 
    font-size: 12px; 
    font-weight: 700; 
    text-transform: uppercase; 
    text-decoration: none; 
}


/* ==== SECCIÓN DE PÓLIZAS ====== */
.poliza-section {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    box-shadow: 0 12px 40px -12px rgba(5, 38, 24, 0.06);
    padding: 60px;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.poliza-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px -12px rgba(5, 38, 24, 0.12);
    border-color: rgba(14, 99, 62, 0.12);
}

.poliza-section.reverse {
    grid-template-columns: 1.1fr 1fr;
}

.poliza-section.reverse .poliza-visual { order: 2; }
.poliza-section.reverse .poliza-content { order: 1; }

.poliza-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #eaf5ef 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(14, 99, 62, 0.04);
}

.poliza-visual img {
    width: 100%;
    max-width: 380px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(5, 38, 24, 0.1));
    transition: transform 0.4s ease;
}

.poliza-section:hover .poliza-visual img {
    transform: scale(1.03) translateY(-4px);
}

.poliza-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 22px;
    background: #eaf5ef;
    color: #0e633e;
}

.premium .poliza-icon {
    background: #052618;
    color: #ffffff;
}

.poliza-content h2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #052618;
    margin-bottom: 24px;
}

/* Prestaciones del Seguro */
.prestaciones-lista {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 35px;
}

.prestacion-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15.5px;
    color: #4a544f;
    line-height: 1.5;
}

.prestacion-item i {
    color: #148f5a;
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

.prestacion-item.heredada {
    font-weight: 600;
    color: #0e633e;
}

.prestacion-item.heredada i {
    color: #0e633e;
}

.btn-poliza {
    background-color: #f8faf9;
    color: #111613;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.04);
}

.poliza-section:hover .btn-poliza {
    background-color: #0e633e;
    color: #ffffff;
}

.btn-poliza i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.btn-poliza:hover i {
    transform: translateX(4px);
}

/* Flexbox Poliza Block */
.poliza-block { 
    display: flex; 
    align-items: center; 
    gap: 30px; 
    margin-bottom: 50px; 
    padding: 30px; 
    border: 1px solid #eee; 
    border-radius: 12px; 
    background: #fff;
}

.poliza-block.reverse { 
    flex-direction: row-reverse; 
}

.poliza-text { 
    flex: 1.5; 
}

.poliza-img { 
    flex: 1.5; 
    text-align: center; 
}

.poliza-img img { 
    width: 60%; 
    border-radius: 8px; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}

.price-tag { 
    font-weight: bold; 
    color: #0e633e; 
    font-size: 1.2rem; 
    margin: 15px 0; 
    display: block; 
}


.intro-servicios {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 60px auto;
}

.intro-servicios h1 { 
    color: #0e633e; 
    margin-bottom: 20px; 
    font-weight: 900; 
    font-size: 2.5rem;
}

.intro-servicios p {
    font-size: 16px;
    color: #555;
}

.servicio-destacado-izq {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #ffffff;
    border: 1px solid #eef2f0;
    border-radius: 16px;
    padding: 45px;
    margin-bottom: 35px;
    box-shadow: 0 4px 15px rgba(5, 38, 24, 0.02);
    transition: all 0.3s ease;
}

.servicio-destacado-izq:hover {
    border-color: #0e633e;
    box-shadow: 0 10px 25px rgba(14, 99, 62, 0.06);
}

.servicio-destacado-izq .servicio-img {
    flex: 1;
    text-align: center;
}

.servicio-destacado-izq .servicio-img img {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.servicio-destacado-izq:hover .servicio-img img {
    transform: scale(1.02);
}

.servicio-destacado-izq .servicio-text {
    flex: 1.5;
}

.servicios-grid-dos-columnas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.servicio-card-horizontal {
    display: block;
    background: #ffffff;
    border: 1px solid #eef2f0;
    border-radius: 14px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(5, 38, 24, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.servicio-card-horizontal:hover {
    transform: translateY(-4px);
    border-color: #0e633e;
    box-shadow: 0 12px 30px rgba(14, 99, 62, 0.08);
}

.servicio-text h2 {
    color: #0e633e;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.servicio-text h2 i {
    background: #eaf5ef;
    color: #0e633e;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.servicio-text p {
    font-size: 14px;
    color: #4a544f;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 0;
}


.disclaimer {
    font-size: 80%;
    line-height: 1.6;
    color: #4a544f;
    opacity: 0.75;
}

.poliza-content .disclaimer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.disclaimer-final-box {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 30px 40px;
    margin-top: 40px;
}

.nota-outsourcing {
    background: #f4f7f5;
    border-left: 4px solid #0e633e;
    padding: 25px;
    border-radius: 0 8px 8px 0;
    margin-top: 50px;
    font-size: 14px;
    color: #444;
}

.exception {
    font-size: 80%;
}


/* ====== FOOTER Y MODALES ===== */
.footer {
    margin-top: 40px;
    border-top: 1px solid #eef2f0;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

.footer2 p {
    color: #77837f;
    margin: 0 0 15px 0;
}

.footer3 {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.open-legal-modal {
    color: #0e633e;
    text-decoration: none;
    font-weight: 700;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    display: inline;
    margin-top: 20px;
}

.footer3 .open-legal-modal {
    font-weight: 600;
}

.open-legal-modal:hover {
    text-decoration: underline;
}

.legal-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 24, 16, 0.45);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.legal-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.legal-modal-card {
    background: #ffffff;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.legal-modal-overlay.active .legal-modal-card {
    transform: translateY(0);
}

.legal-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #eef2f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-modal-header h3 {
    margin: 0;
    color: #0e633e;
    font-size: 18px;
    font-weight: 800;
}

.legal-modal-close {
    background: none;
    border: none;
    font-size: 22px;
    color: #77837f;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.legal-modal-close:hover {
    color: #cc3333;
}

.legal-modal-body {
    padding: 25px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.6;
    color: #4a544f;
}

.legal-modal-body .contenido-legal h1 {
    display: none; 
}

.flujo-profesional {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0e633e;
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.flujo-item {
    text-align: center;
    font-weight: 500;
}

.flujo-item i {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
}

.flujo-linea {
    flex-grow: 1;
    border-top: 2px dashed rgba(255, 255, 255, 0.3);
    margin: 0 15px;
}

.footer2 p a.enlace-footer-mapa {
    color: inherit; 
    text-decoration: none; 
    display: inline-flex; 
    align-items: center;
    gap: 8px;  
    transition: opacity 0.3s ease;
}

.footer2 p a.enlace-footer-mapa:visited {
    color: inherit;
}

.footer2 p a.enlace-footer-mapa:hover {
    opacity: 0.8; 
    text-decoration: underline;
}

.contenedor-donde-contratar {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: sans-serif;
}

.bloque-info-ubicacion {
    text-align: center;
    margin-bottom: 40px;
}

.bloque-info-ubicacion h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.bloque-info-ubicacion .subtitulo {
    color: #666;
    font-size: 16px;
}

.tarjeta-direccion {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #f9f9f9;
    padding: 20px 40px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.tarjeta-direccion .icono-mapa i {
    font-size: 40px;
    color: #1a73e8;
}

.tarjeta-direccion .datos-texto h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
}
.tarjeta-direccion .datos-texto p {
    margin: 2px 0;
    color: #555;
}

.marco-mapa-visual {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.accion-gmaps {
    text-align: center;
    margin-top: 25px;
}

.boton-ruta-gps {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #202124;
    color: #fff !important;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.boton-ruta-gps:hover {
    background-color: #1a73e8;
}

.contenedor-donde-contratar {
	max-width: 1200px;
	margin: 60px auto;
	padding: 0 20px;
}

.bloque-info-ubicacion {
	text-align: center;
	margin-bottom: 40px;
}

.bloque-info-ubicacion h1 {
	font-size: 36px;
	color: #333;
	margin-bottom: 10px;
}

.bloque-info-ubicacion .subtitulo {
	color: #666;
	font-size: 16px;
}

.cuadricula-contacto {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin: 40px 0;
}

.tarjeta-contacto-item {
	background: #ffffff;
	border: 1px solid #eef2f5;
	padding: 35px 25px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.tarjeta-contacto-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.tarjeta-contacto-item.destacada {
	border: 1px solid #1a73e8;
	background: linear-gradient(to bottom, #ffffff, #fcfdfe);
}

.icono-contacto {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 20px;
}
.icono-contacto.tel { background-color: #e8f0fe; color: #1a73e8; }
.icono-contacto.form { background-color: #e6f4ea; color: #137333; }
.icono-contacto.mail { background-color: #ffebee; color: #c5221f; }

.tarjeta-contacto-item h3 {
	font-size: 20px;
	color: #202124;
	margin: 0 0 12px 0;
}

.tarjeta-contacto-item p {
	font-size: 14px;
	color: #5f6368;
	line-height: 1.5;
	margin: 0 0 20px 0;
}

.enlace-contacto-dato {
	font-size: 18px;
	font-weight: 600;
	color: #1a73e8;
	text-decoration: none;
}
.enlace-contacto-dato:hover {
	text-decoration: underline;
}

.boton-contacto-formulario {
	background-color: #1a73e8;
	color: white !important;
	padding: 12px 24px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background-color 0.2s;
}
.boton-contacto-formulario:hover {
	background-color: #1557b0;
}

.bloque-info-postal {
	text-align: center;
	margin-bottom: 30px;
}
.tarjeta-direccion {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	background: #f8f9fa;
	padding: 15px 30px;
	border-radius: 30px;
	border: 1px solid #eee;
}
.tarjeta-direccion .icono-mapa i {
	color: #5f6368;
	font-size: 20px;
}
.tarjeta-direccion .datos-texto h3 {
	margin: 0;
	font-size: 15px;
	color: #333;
}

.marco-mapa-visual {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	border: 1px solid #eee;
}

.accion-gmaps {
	text-align: center;
	margin-top: 25px;
}

.boton-ruta-gps {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: #202124;
	color: #fff !important;
	padding: 14px 28px;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: background 0.3s ease;
}
.boton-ruta-gps:hover {
	background-color: #1a73e8;
}

/* ===== DISEÑO RESPONSIVO ======= */

@media (max-width: 1024px) {
    .poliza-section, 
    .poliza-section.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    .poliza-section.reverse .poliza-visual {
        order: 0;
    }
    .page-content {
        padding: 60px 30px;
    }
	.poliza-block,
    .poliza-block.reverse { 
        flex-direction: column; 
		flex-direction: column-reverse;
    }
	.page-content { 

		max-width: 700px; 

	}
	
}


@media (max-width: 768px) {
    .poliza-block,
    .poliza-block.reverse { 
        gap: 20px;
        padding: 20px;

    }

    .poliza-img {

        width: 100%;
    }

    .poliza-text {

        width: 100%;
        max-width: 500px;     
        margin: 0 auto;       
    
    }

    .poliza-img img { 
        width: 80%; 
        max-width: 250px;
    }

    .poliza-icon {
        display: none !important; 
    }

    .poliza-content h2 {
        text-align: left;
        margin-top: 15px;
        font-size: 24px;
    }

    .contact-page-container {
        padding: 0 20px;
        margin: 40px auto;
    }
    .info-channels-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .full-width {
        grid-column: span 1;
    }
    .contact-form-card {
        padding: 25px 20px;
    }
    .servicio-card-horizontal, 
    .servicio-card-horizontal.reverse {
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
		text-align: justify;
    	text-justify: inter-word;
    }
	
	.servicio-card-horizontal p, 
	.servicio-destacado-izq p {
		text-align: justify;
    	text-justify: inter-word;
    }
	

    .servicio-img img {
        max-width: 100%;
    }
    .legal-modal-card {
        width: 95%;
        max-height: 85vh;
    }
    .empresa-flex {
        flex-direction: column-reverse;
        gap: 25px;
        margin-bottom: 30px;
    }
    .empresa-text, .empresa-img {
        flex: initial;
        width: 100%;
    }
    .empresa-img img {
        max-width: 100%;
        height: auto;
    }
    .grid-dept {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }

    .flujo-profesional {
        display: flex !important;
        flex-wrap: nowrap !important;
        flex-direction: column;
        max-width: 40%;
        transform-origin: left center;
        margin: 20px auto !important;
    }
    .flujo-linea {
        display: block !important;
        flex-grow: 1;
    }
    .flujo-item {
        flex-shrink: 0;
    }

	
}

@media (max-width: 576px) {
    .servicios-grid-dos-columnas {
        grid-template-columns: 1fr; 
    }
    .servicio-destacado-izq {
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
    }
    .text-columns { 
        column-count: 1;
        column-gap: 0;
    }

    .page-title { 
        font-size: 36px; 
    }
    .poliza-content h2 { 
        font-size: 22px; 
    }
    .poliza-visual { 
        padding: 20px; 
    }

    .grid-dept {
        grid-template-columns: 1fr;
    }
	
	p{
		text-align: justify;
    	text-justify: inter-word;
	}
	
	
}