:root {
    --azul: #0069ff;
    --azul-claro: #4d94ff;
    --gris: #f5f7fa;
    --gris-texto: #6b7280;
    --blanco: #ffffff;
    --negro: #111827;
    --acento: #00c2ff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--negro);
    background: var(--blanco);
    line-height: 1.6;
}

.contenedor {
    width: 92%;
    max-width: 1180px;
    margin: auto;
}

.topbar {
    background: var(--azul);
    color: white;
    font-size: 14px;
    padding: 8px 0;
}

.topbar-grid,
.nav-grid,
.hero-grid,
.franja-grid,
.footer-grid,
.contacto-grid,
.empresa-grid {
    display: grid;
    gap: 24px;
    align-items: center;
}

.topbar-grid {
    grid-template-columns: 1fr 1fr;
}

.topbar-grid div:last-child {
    text-align: right;
}

.navbar {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 20;
}

.nav-grid {
    grid-template-columns: 260px 1fr;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--azul);
    font-weight: bold;
    font-size: 22px;
}

.logo img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.menu {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.menu a {
    display: block;
    padding: 24px 12px;
    text-decoration: none;
    color: var(--negro);
    font-weight: 600;
}

.menu a:hover,
.menu a.activo {
    color: var(--azul-claro);
}

.hero {
    background: linear-gradient(135deg, var(--azul), var(--azul-claro));
    color: white;
    padding: 70px 0;
}

.hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
}

.hero h1 {
    font-size: 46px;
    line-height: 1.1;
    margin: 15px 0;
	text-align: center;
}

.hero p {
    font-size: 19px;
    max-width: 620px;
}

.etiqueta {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 14px;
    border-radius: 30px;
    font-weight: bold;
}

.hero-img img,
.empresa-grid img {
    width: 70%;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.botones {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid transparent;
}

.btn.principal {
    background: var(--acento);
    color: white;
}

.btn.secundario {
    border-color: white;
    color: white;
}

.btn.claro {
    background: white;
    color: var(--azul);
}

.btn.mini {
    background: var(--azul-claro);
    color: white;
    padding: 10px 16px;
}

.bloque,
.pagina {
    padding: 70px 0;
}

.bloque h2,
.pagina h1 {
    font-size: 36px;
    color: var(--azul);
    margin-top: 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 35px;
	text-align: center;
}

.card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 18px;
}

.card h3 {
    color: var(--azul);
    margin-top: 0;
}

.franja {
    background: var(--azul);
    color: white;
    padding: 42px 0;
}

.franja-grid {
    grid-template-columns: 1fr auto;
}

.servicios-lista {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.servicios-lista div {
    background: var(--gris);
    padding: 24px;
    border-radius: 16px;
    border-left: 5px solid var(--azul-claro);
}

.empresa-grid {
    grid-template-columns: 1fr 1fr;
}

.lista-check {
    padding-left: 0;
    list-style: none;
}

.lista-check li {
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.lista-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--azul-claro);
    font-weight: bold;
}

.tabla-precios {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}

.tabla-precios div {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 18px 22px;
    border-bottom: 1px solid #e5e7eb;
}

.tabla-precios div:nth-child(even) {
    background: var(--gris);
}

.tabla-precios span {
    font-weight: bold;
    color: var(--azul);
}

.aviso {
    margin-top: 25px;
    background: #fff8e1;
    border-left: 5px solid #e6a700;
    padding: 18px;
    border-radius: 10px;
}

.texto-legal h2 {
    color: var(--azul);
    margin-top: 30px;
}

.contacto-grid {
    grid-template-columns: 1fr 1fr;
}

.formulario {
    background: var(--gris);
    padding: 28px;
    border-radius: 18px;
}

.formulario label {
    font-weight: bold;
    display: block;
    margin-bottom: 6px;
}

.formulario input,
.formulario textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #cfd8dc;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 16px;
}

.formulario button {
    background: var(--azul-claro);
    color: white;
    border: none;
    padding: 14px 22px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

footer {
    background: #101820;
    color: white;
    padding-top: 45px;
}

.footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
}

footer a {
    display: block;
    color: #dbeafe;
    text-decoration: none;
    margin-bottom: 7px;
}

.copy {
    margin-top: 35px;
    padding: 16px;
    text-align: center;
    background: #0b1117;
    color: #b0bec5;
}

@media (max-width: 850px) {
    .topbar-grid,
    .nav-grid,
    .hero-grid,
    .cards,
    .franja-grid,
    .servicios-lista,
    .empresa-grid,
    .contacto-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .topbar-grid div:last-child {
        text-align: left;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .menu a {
        padding: 10px;
    }

    .hero h1 {
        font-size: 34px;
    }
}

.mensaje-ok {
    background: #e7f8ed;
    color: #166534;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-weight: bold;
}

.mensaje-error {
    background: #fde8e8;
    color: #991b1b;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-weight: bold;
}

.contacto-premium {
    background: #f5f7fb;
}

.contacto-header {
    margin-bottom: 40px;
}

.contacto-header h1 {
    font-size: 52px;
    margin-bottom: 10px;
    color: #0069ff;
}

.contacto-header p {
    max-width: 700px;
    color: #5b6770;
    font-size: 18px;
}

.mini-etiqueta {
    display: inline-block;
    background: rgba(0,105,255,0.08);
    color: #0069ff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 35px;
    align-items: start;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card,
.horario-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.info-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.icono {
    width: 55px;
    height: 55px;
    background: rgba(0,105,255,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.info-card span {
    display: block;
    color: #6b7280;
    margin-bottom: 5px;
}

.info-card strong {
    font-size: 18px;
    line-height: 1.5;
}

.horario-card h3 {
    margin-top: 0;
    color: #0069ff;
}

.horario-linea {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #edf2f7;
}

.formulario {
    background: white;
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.formulario h2 {
    margin-top: 0;
    color: #0069ff;
    margin-bottom: 25px;
}

.formulario input,
.formulario textarea {
    background: #f8fafc;
    border: 1px solid #dbe3ea;
}

.formulario button {
    width: 100%;
    background: #0069ff;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.formulario button:hover {
    background: #0052cc;
}

.mensaje-ok {
    background: #ecfdf3;
    border-left: 5px solid #16a34a;
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.icono-ok {
    width: 50px;
    height: 50px;
    background: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 900px) {

    .contacto-grid {
        grid-template-columns: 1fr;
    }

    .contacto-header h1 {
        font-size: 40px;
    }

}
.contacto-premium {
    padding: 90px 20px;
    background: linear-gradient(180deg, #f4f8ff 0%, #eef4ff 100%);
}

.contacto-caja-pro {
    max-width: 1250px;
    margin: auto;
    background: #ffffff;
    border-radius: 34px;
    padding: 55px;
    border: 1px solid #e1e8f5;
    box-shadow: 0 25px 70px rgba(0, 40, 100, 0.10);
}

.contacto-header {
    margin-bottom: 40px;
    max-width: 760px;
}

.contacto-header h1 {
    color: #0069ff;
    font-size: 54px;
    margin: 14px 0 12px;
}

.contacto-header p {
    color: #5f6b7a;
    font-size: 18px;
    line-height: 1.7;
}

.mini-etiqueta {
    display: inline-block;
    background: rgba(0, 105, 255, 0.09);
    color: #0069ff;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 34px;
    align-items: start;
}

.contacto-info {
    display: grid;
    gap: 18px;
}

.info-card,
.horario-card,
.contacto-form-pro {
    background: #f8fbff;
    border: 1px solid #e3ebf7;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 8px 24px rgba(0, 40, 100, 0.05);
}

.info-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.icono {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 16px;
    background: rgba(0, 105, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.info-card span {
    display: block;
    color: #667085;
    font-size: 14px;
    margin-bottom: 6px;
}

.info-card strong {
    color: #101828;
    font-size: 17px;
    line-height: 1.55;
}

.horario-card h3,
.contacto-form-pro h2 {
    color: #0069ff;
    margin-top: 0;
}

.horario-linea {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid #e3ebf7;
}

.horario-linea:last-child {
    border-bottom: none;
}

.contacto-form-pro {
    background: #ffffff;
    padding: 34px;
}

.contacto-form-pro label {
    display: block;
    font-weight: 700;
    margin: 18px 0 8px;
    color: #101828;
}

.contacto-form-pro input,
.contacto-form-pro textarea {
    width: 100%;
    border: 1px solid #d8e2f0;
    background: #f8fbff;
    border-radius: 14px;
    padding: 15px;
    font-size: 16px;
}

.contacto-form-pro input:focus,
.contacto-form-pro textarea:focus {
    outline: none;
    border-color: #0069ff;
    box-shadow: 0 0 0 4px rgba(0, 105, 255, 0.10);
}

.contacto-form-pro button {
    width: 100%;
    margin-top: 24px;
    background: linear-gradient(135deg, #0069ff, #0051c7);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 17px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
}

.mensaje-ok {
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    border-left: 5px solid #16a34a;
    padding: 20px;
    border-radius: 18px;
    margin-bottom: 30px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.icono-ok {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mensaje-error {
    background: #fef2f2;
    border-left: 5px solid #dc2626;
    padding: 18px;
    border-radius: 16px;
    margin-bottom: 30px;
    color: #991b1b;
    font-weight: 700;
}

@media (max-width: 950px) {
    .contacto-caja-pro {
        padding: 30px;
    }

    .contacto-grid {
        grid-template-columns: 1fr;
    }

    .contacto-header h1 {
        font-size: 42px;
    }
}

.titulo-servicio{
    text-align:center;
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:#0069ff;
}

.servicio-card{
    text-align:center;
}

.tarifas-premium {
    background: linear-gradient(180deg, #f4f8ff 0%, #eef4ff 100%);
}

.tarifas-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.tarifas-header h1 {
    font-size: 52px;
    color: var(--azul);
    margin: 12px 0;
}

.tarifas-header p {
    color: #5f6b7a;
    font-size: 18px;
    line-height: 1.7;
}

.tarifas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.tarifa-card {
    background: #ffffff;
    border: 1px solid #e1e8f5;
    border-radius: 24px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(0, 40, 100, 0.08);
    transition: 0.25s ease;
}

.tarifa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 45px rgba(0, 40, 100, 0.14);
}

.tarifa-card.destacada {
    border: 2px solid var(--azul-claro);
}

.tarifa-card.contrato {
    background: linear-gradient(135deg, #0069ff, #0052cc);
    color: white;
}

.tarifa-icono {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: rgba(0,105,255,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.tarifa-card.contrato .tarifa-icono {
    background: rgba(255,255,255,0.18);
}

.tarifa-card h3 {
    margin: 0 0 8px;
    color: var(--azul);
    font-size: 21px;
}

.tarifa-card.contrato h3 {
    color: white;
}

.tarifa-card p {
    color: #667085;
    min-height: 46px;
    margin: 0 0 15px;
}

.tarifa-card.contrato p {
    color: #dbeafe;
}

.tarifa-card strong {
    display: block;
    color: #111827;
    font-size: 24px;
    margin-bottom: 8px;
}

.tarifa-card.contrato strong {
    color: white;
}

.tarifa-card span {
    color: #6b7280;
    font-size: 13px;
    font-weight: bold;
}

.tarifa-card.contrato span {
    color: #dbeafe;
}

.tarifas-aviso {
    margin-top: 35px;
    background: #fff8e1;
    border-left: 5px solid #e6a700;
    padding: 20px 24px;
    border-radius: 16px;
    color: #5c4500;
    line-height: 1.6;
}

@media (max-width: 1050px) {
    .tarifas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .tarifas-grid {
        grid-template-columns: 1fr;
    }

    .tarifas-header h1 {
        font-size: 40px;
    }
}

.politicas-premium {
    background: linear-gradient(180deg, #f4f8ff 0%, #eef4ff 100%);
}

.politicas-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 45px;
}

.politicas-header h1 {
    font-size: 52px;
    color: var(--azul);
    margin: 12px 0;
}

.politicas-header p {
    color: #5f6b7a;
    font-size: 18px;
    line-height: 1.7;
}

.politicas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.politica-card {
    background: #ffffff;
    border: 1px solid #e1e8f5;
    border-radius: 24px;
    padding: 30px 26px;
    box-shadow: 0 14px 34px rgba(0, 40, 100, 0.08);
    transition: 0.25s ease;
}

.politica-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 45px rgba(0, 40, 100, 0.14);
}

.politica-icono {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: rgba(0,105,255,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 18px;
}

.politica-card h3 {
    margin: 0 0 12px;
    color: var(--azul);
    font-size: 22px;
	text-align: center;
}

.politica-card p {
    color: #5f6b7a;
    line-height: 1.7;
    margin: 0;
}

.politicas-aviso {
    margin-top: 35px;
    background: #fff8e1;
    border-left: 5px solid #e6a700;
    padding: 20px 24px;
    border-radius: 16px;
    color: #5c4500;
    line-height: 1.6;
}

@media (max-width: 1050px) {
    .politicas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .politicas-grid {
        grid-template-columns: 1fr;
    }

    .politicas-header h1 {
        font-size: 40px;
    }
}
.texto-importante{

    text-align:center;

    font-weight:bold;

}

.empresas-premium {

    background:
    linear-gradient(
    180deg,
    #f4f8ff 0%,
    #eef4ff 100%
    );

}

.empresas-header {

    text-align: center;

    max-width: 850px;

    margin: 0 auto 55px;

}

.empresas-header h1 {

    font-size: 54px;

    color: var(--azul);

    margin: 14px 0;

}

.empresas-header p {

    color: #5f6b7a;

    font-size: 18px;

    line-height: 1.8;

}

.empresas-grid-pro {
    display: flex;
    justify-content: center;
    align-items: center;
}

.empresa-info-pro {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}




.empresa-card-principal {
    background: white;
    border-radius: 32px;
    padding: 50px;
    border: 1px solid #e3ebf7;
    box-shadow: 0 25px 65px rgba(0,40,100,0.10);
    text-align: center;
    margin: 0 auto;
}


.empresa-card-principal h2 {
    text-align: center;
    font-size: 34px;
    color: var(--azul);
    margin-top: 0;
    margin-bottom: 18px;
}
.empresa-card-principal p {
    text-align: center;
    color: #5f6b7a;
    line-height: 1.8;
    font-size: 17px;
    max-width: 760px;
    margin: 0 auto;
}

.empresa-datos {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 35px;
}

.dato {
    text-align: center;
}

.dato strong {

    display: block;

    margin-bottom: 8px;

    color: #111827;

}

.dato span {

    color: #667085;

    font-size: 14px;

    line-height: 1.6;

}

.empresa-imagen-pro {

    position: relative;

}

.empresa-imagen-pro img {

    width: 100%;

    border-radius: 28px;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.16);

}

.empresa-box-flotante {

    position: absolute;

    bottom: 25px;

    left: -30px;

    background: white;

    padding: 22px;

    border-radius: 22px;

    width: 250px;

    box-shadow:
    0 15px 45px rgba(0,0,0,0.14);

}

.empresa-box-flotante strong {

    display: block;

    font-size: 34px;

    color: var(--azul);

    margin-bottom: 8px;

}

.empresa-box-flotante span {

    color: #5f6b7a;

    line-height: 1.6;

}

.empresa-beneficios {

    margin-top: 55px;

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 24px;

}

.beneficio-card {

    background: white;

    border-radius: 24px;

    padding: 28px;

    text-align: center;

    border: 1px solid #e3ebf7;

    box-shadow:
    0 10px 30px rgba(0,40,100,0.06);

    transition: 0.25s;

}

.beneficio-card:hover {

    transform: translateY(-5px);

    box-shadow:
    0 20px 40px rgba(0,40,100,0.12);

}

.beneficio-icono {

    width: 68px;

    height: 68px;

    margin: auto auto 18px;

    border-radius: 18px;

    background:
    rgba(0,105,255,0.10);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 32px;

}

.beneficio-card h3 {

    margin-top: 0;

    margin-bottom: 10px;

    color: var(--azul);

}

.beneficio-card p {

    color: #667085;

    line-height: 1.7;

}

@media (max-width: 1050px) {

    .empresas-grid-pro {

        grid-template-columns: 1fr;

    }

    .empresa-beneficios {

        grid-template-columns: repeat(2,1fr);

    }

}

@media (max-width: 700px) {

    .empresa-beneficios {

        grid-template-columns: 1fr;

    }

    .empresa-datos {

        grid-template-columns: 1fr;

    }

    .empresas-header h1 {

        font-size: 42px;

    }

    .empresa-box-flotante {

        position: relative;

        left: auto;

        bottom: auto;

        margin-top: 20px;

        width: 100%;

    }

}

.tarifas-rejilla-pro {
    background: linear-gradient(180deg, #f4f8ff 0%, #eef4ff 100%);
}

.rejilla-tarifas {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.fila-tarifa {
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-left: 6px solid var(--azul);
    border-radius: 20px;
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 18px;
    align-items: center;
    box-shadow: 0 12px 30px rgba(0, 40, 100, 0.07);
    transition: 0.25s ease;
}

.fila-tarifa:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 40, 100, 0.13);
}

.fila-tarifa.destacada {
    border-left-color: #0069ff;
    background: linear-gradient(90deg, #ffffff 0%, #f4f8ff 100%);
}

.fila-tarifa.premium {
    border-left-color: #7c3aed;
}

.fila-tarifa.verde {
    border-left-color: #16a34a;
}

.fila-tarifa.contrato {
    border-left-color: #00c2ff;
    background: linear-gradient(135deg, #0069ff, #0052cc);
    color: white;
}

.icono-tarifa {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(0, 105, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.fila-tarifa.contrato .icono-tarifa {
    background: rgba(255,255,255,0.18);
}

.fila-tarifa h3 {
    margin: 0 0 5px;
    color: var(--azul);
    font-size: 21px;
}

.fila-tarifa p {
    margin: 0;
    color: #667085;
    line-height: 1.5;
}

.fila-tarifa strong {
    background: #e0ecff;
    color: #1d4ed8;
    padding: 10px 14px;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 18px;
}

.fila-tarifa.premium strong {
    background: #ede9fe;
    color: #5b21b6;
}

.fila-tarifa.verde strong {
    background: #dcfce7;
    color: #166534;
}

.fila-tarifa.contrato h3,
.fila-tarifa.contrato p,
.fila-tarifa.contrato strong {
    color: white;
}

.fila-tarifa.contrato strong {
    background: rgba(255,255,255,0.18);
}

@media (max-width: 700px) {
    .fila-tarifa {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .icono-tarifa {
        margin: auto;
    }

    .fila-tarifa strong {
        justify-self: center;
    }
}

.packs-mantenimiento{

    margin-top:50px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.pack-card{

    position:relative;

    background:white;

    border-radius:28px;

    padding:35px;

    border:1px solid #dbeafe;

    box-shadow:
    0 18px 45px rgba(0,40,100,0.08);

    transition:0.25s;

    overflow:hidden;

}

.pack-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 28px 60px rgba(0,40,100,0.15);

}

.pack-card.destacado{

    background:
    linear-gradient(
    135deg,
    #0069ff,
    #0052cc
    );

    color:white;

    transform:scale(1.03);

}

.pack-badge{

    position:absolute;

    top:18px;

    right:-38px;

    background:#00c896;

    color:white;

    padding:8px 40px;

    font-size:12px;

    font-weight:bold;

    transform:rotate(45deg);

}

.pack-mini{

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    color:#6b7280;

}

.pack-card.destacado .pack-mini{

    color:#dbeafe;

}

.pack-top h3{

    margin:8px 0 0;

    font-size:30px;

}

.pack-precio{

    margin:28px 0;

    font-size:52px;

    font-weight:800;

    color:var(--azul);

}

.pack-card.destacado .pack-precio{

    color:white;

}

.pack-precio span{

    font-size:18px;

    font-weight:500;

}

.pack-lista{

    list-style:none;

    padding:0;

    margin:0;

}

.pack-lista li{

    padding:12px 0;

    border-bottom:1px solid rgba(0,0,0,0.08);

    font-weight:500;

}

.pack-card.destacado .pack-lista li{

    border-bottom:1px solid rgba(255,255,255,0.18);

}

@media (max-width:950px){

    .packs-mantenimiento{

        grid-template-columns:1fr;

    }

}


/* =====================================================
   OUTLET HOME
===================================================== */

.outlet-home{
    padding:70px 0;
}

.outlet-box{
    background:linear-gradient(
        135deg,
        #111827,
        #0069ff
    );

    border-radius:28px;
    padding:50px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;

    color:white;

    box-shadow:
    0 20px 45px rgba(0,0,0,.18);
}

.outlet-texto{
    max-width:650px;
}

.outlet-mini{
    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:8px 14px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    margin-bottom:15px;
}

.outlet-box h2{
    font-size:42px;
    margin:0 0 15px;
}

.outlet-box p{
    font-size:18px;
    line-height:1.7;
    color:#dbeafe;
}

.outlet-box ul{
    margin:25px 0;
    padding-left:20px;
}

.outlet-box li{
    margin-bottom:10px;
}

.outlet-icono{
    font-size:140px;
    opacity:.9;
}

@media(max-width:900px){

    .outlet-box{
        flex-direction:column;
        text-align:center;
        padding:35px;
    }

    .outlet-icono{
        font-size:90px;
    }

    .outlet-box h2{
        font-size:32px;
    }
}
.nav-grid{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

.menu{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:8px;
    flex-wrap:nowrap;
    list-style:none;
    margin:0;
    padding:0;
}

.menu li{
    list-style:none;
}

.menu a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:10px 12px;
    border-radius:12px;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    color:#111827;
    white-space:nowrap;
    transition:.2s;
}

.menu a:hover{
    background:#eff6ff;
    color:#2563eb;
}

.menu a.activo{
    background:#2563eb;
    color:white;
}

.menu a.menu-destacado{
    background:#00D2B2;
    color:white;
}

.menu a.menu-destacado:hover{
    background:#2563eb;
    color:white;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
    text-decoration:none;
}

.logo img{
    max-height:52px;
}

.logo span{
    white-space:nowrap;
}