@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    background: #f4f5f7;
}

/* ================= HERO ================= */

.hero-section {
    position: relative;
    min-height: 820px;
    padding-bottom: 120px;
    overflow: hidden;
    color: white;
    background: linear-gradient(115deg, #01193C 0%, #182B46 50%, #088682 100%);
}

.navbar {
    padding: 38px 0 20px;
    position: relative;
    z-index: 5;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-logo {
    height: 62px;
    width: auto;
    object-fit: contain;
    display: block;
}

.navbar .nav-link {
    color: #47EBDD;
    font-size: 15px;
    font-weight: 700;
    padding: 0;
}

.navbar .nav-link:hover {
    color: white;
}

.language {
    font-size: 13px;
    color: white;
}
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.btn-talk {
    background: rgba(85, 226, 214, 0.15);
    border: 1px solid rgba(85, 226, 214, 0.4);
    color: #55E2D6;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-talk:hover {
    background: #55E2D6;
    color: #06203f;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 105px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 32px;
}

.hero-content h1 span {
    color: #47EBDD;
}

.hero-slider p {
    min-height: 85px;
    font-size: 19px;
    color: #d7e1ea;
    font-weight: 400;
    margin-bottom: 35px;
    transition: opacity .3s ease;
}

.hero-slider p.fade-out {
    opacity: 0;
}

.slider-dot {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-bottom: 38px;
}

.slider-dot span {
    width: 7px;
    height: 7px;
    background: white;
    opacity: .9;
    border-radius: 50%;
    transition: all .3s ease;
}

.slider-dot span.active {
    width: 28px;
    height: 6px;
    background: #47EBDD;
    border-radius: 10px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 43px;
}

.hero-buttons .btn {
    border-radius: 30px;
    padding: 12px 25px;
    font-size: 13px;
    font-weight: 800;
}

.btn-primary-custom {
    background: #00998C;
    color: white;
}

.btn-primary-custom:hover {
    background: #00998C;
    color: white;
}

.btn-outline-custom {
    border: 1px solid white;
    color: white;
    background: rgba(255,255,255,.12);
}

.btn-outline-custom:hover {
    background: white;
    color: #00224a;
}

.btn-secondary-custom {
    background: #47EBDD;
    color: #006573;
}

.btn-secondary-custom:hover {
    background: white;
    color: #00676a;
}

.stats {
    position: relative;
    z-index: 5;
    margin: 40px auto 0;
    max-width: 680px;
    display: flex;
    justify-content: center;
    gap: 55px;
}

.stat-item {
    text-align: center;
    min-width: 100px;
}

.stat-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 2px;
}

.stat-item p {
    font-size: 16px;
    color: #c1d5db;
    margin: 0;
}

.wave {
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 100%;
    height: 140px;
    z-index: 2;
    pointer-events: none;
}

.wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.wave path {
    fill: #f4f5f7;
}

/* ================= SOLUCIONES ================= */

.solutions-section {
    background: #f4f5f7;
    padding: 135px 0 120px;
}

.solutions-section .container {
    max-width: 1780px;
}

.solutions-section h4 {
    color: #088682;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 130px;
}

.solutions-section h2 {
    color: #000;
    font-size: 50px;
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 32px;
}

.solutions-section h2 span {
    color: #21B8C1;
}

.solutions-description {
    color: #000;
    font-size: 32px;
    line-height: 1.28;
    font-weight: 400;
    margin: 0 auto;
}

.solutions-cards {
    margin-top: 90px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: nowrap;
}

.solution-card-wrapper {
    width: 25%;
    max-width: 430px;
    min-width: 0;
}
.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

/* sombra lateral más pro */
.solution-card:hover::before {
    background: #1ec6c3;
}
.solution-card {
    background: #f1f1f1;
    border-radius: 32px;
    padding: 55px 42px 35px;
    text-align: left;
    min-height: 570px;
    height: 100%;
    position: relative;
    transition: all .35s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.solution-card .btn-card {
    margin-top: auto;
}
.solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 8px;
    width: 100%;
    background: #000;
    border-radius: 32px 32px 0 0;
}

.solution-card.active {
    box-shadow: 0 12px 20px rgba(0,0,0,.18);
}

.solution-card.active::before {
    background: #1ec6c3;
}

.solution-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 30px;
}

.solution-card h3 {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
    color: #08295c;
    margin-bottom: 6px;
}

.solution-card span {
    color: #02AFBA;
    font-size: 20px;
    line-height: 1.2;
    display: block;
    margin-bottom: 28px;
}

.solution-card p {
    font-size: 17px;
    line-height: 1.25;
    color: #222;
    margin-bottom: 18px;
}

.solution-card ul {
    padding-left: 20px;
    margin-bottom: 35px;
}

.solution-card ul li {
    font-size: 16px;
    margin-bottom: 12px;
}

.btn-card {
    width: 250px;
    border: 1px solid #02AFBA;
    color: #21B8C1;
    border-radius: 22px;
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 700;
    display: block;
    text-align: center;
    margin: 0 auto;
}

.btn-card:hover {
    background: #00b8c4;
    color: white;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1400px) {
    .solution-card {
        padding: 50px 30px 35px;
    }

    .solution-card h3 {
        font-size: 21px;
    }

    .solution-card span {
        font-size: 18px;
    }

    .solution-card p,
    .solution-card ul li {
        font-size: 15px;
    }

    .btn-card {
        width: 220px;
    }
}

@media (max-width: 1200px) {
    .solutions-cards {
        flex-wrap: wrap;
    }

    .solution-card-wrapper {
        width: calc(50% - 16px);
        max-width: none;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-slider p {
        font-size: 16px;
        min-height: 95px;
    }

    .navbar-collapse {
        background: rgba(0, 20, 50, .95);
        padding: 25px;
        border-radius: 18px;
        margin-top: 15px;
    }

    .stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .solutions-section {
        padding: 100px 0 90px;
    }

    .solutions-section h4 {
        margin-bottom: 90px;
    }

    .solutions-section h2 {
        font-size: 40px;
    }

    .solutions-description {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .solution-card-wrapper {
        width: 100%;
    }

    .solution-card {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 850px;
    }

    .hero-content {
        padding-top: 70px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-slider p {
        font-size: 14px;
        min-height: 120px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
    }

    .stats {
        gap: 22px;
    }

    .stat-item {
        width: 45%;
        min-width: auto;
    }

    .solutions-section {
        padding: 75px 0;
    }

    .solutions-section h4 {
        font-size: 18px;
        margin-bottom: 60px;
    }

    .solutions-section h2 {
        font-size: 32px;
    }

    .solutions-description {
        font-size: 19px;
    }
}
/* ================= ECOSISTEMA ================= */

.ecosystem-section {
    background: #ffffff;
    padding: 100px 0 100px;
}

.ecosystem-section h4 {
    color: #088682;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 100px;
}

.ecosystem-section h2 {
    color: #000;
    font-size: 50px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 70px;
}

.ecosystem-section h2 span {
    color: #21B8C1;
}

.ecosystem-section p {
    color: #000;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 400;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .ecosystem-section {
        padding: 120px 0 100px;
    }

    .ecosystem-section h4 {
        margin-bottom: 90px;
    }

    .ecosystem-section h2 {
        font-size: 40px;
        margin-bottom: 45px;
    }

    .ecosystem-section p {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .ecosystem-section {
        padding: 85px 0;
    }

    .ecosystem-section h4 {
        font-size: 18px;
        margin-bottom: 60px;
    }

    .ecosystem-section h2 {
        font-size: 32px;
    }

    .ecosystem-section p {
        font-size: 19px;
    }
}
/* ================= SERVICIOS ================= */

.services-section {
    background: #ffffff;
    padding: 100px 0 120px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 40px;
    margin-top: 60px;
}

.service-card {
    background: #f3f3f3;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    transition: all .3s ease;
    box-shadow: 0 8px 14px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 28px rgba(0,0,0,0.15);
}

.service-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #182B46;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.4;
}

/* BOTON */
.services-btn {
    text-align: center;
    margin-top: 60px;
}

.btn-all-services {
    border: 1px solid #63C1D8;
    color: #02AFBA;
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    transition: all .3s ease;
}

.btn-all-services:hover {
    background: #00b8c4;
    color: white;
}

/* ================= METRICS ================= */

.metrics-section {
    background: #f4f5f7;
    padding: 120px 0 120px;
}

.metrics-section h5 {
    color: #088682;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
}

.metrics-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
}

.metrics-section h2 span {
    color: #21B8C1;
}

.metrics-desc {
    font-size: 22px;
    color: #333;
    margin-bottom: 70px;
}

/* GRID */

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

/* CARD */

.metric-card {
    background: #f1f1f1;
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    transition: all .3s ease;
    box-shadow: 0 8px 14px rgba(0,0,0,0.08);
}

/* CARD DESTACADA (la primera) */
.metric-card.highlight {
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

/* HOVER */
.metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.18);
}

/* ICONO PNG */
.metric-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}
/* TEXTO */

.metric-card h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 5px;
}

.metric-card span {
    font-size: 16px;
    color: #000;
    display: block;
    margin-bottom: 5px;
}

.metric-card p {
    font-size: 14px;
    color: #666;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .metrics-section h2 {
        font-size: 34px;
    }

    .metrics-desc {
        font-size: 18px;
    }
}
/* ================= INDUSTRIAS ================= */

.industries-section {
    background: #ffffff;
    padding: 70px 0 85px;
}

.industries-section .container {
    max-width: 1220px;
}

.industries-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.industries-left {
    max-width: 460px;
}

.industries-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 35px;
}

.industries-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.industries-title h3 {
    font-size: 23px;
    font-weight: 800;
    color: #000;
    margin: 0;
}

.industries-left p {
    font-size: 28px;
    line-height: 1.18;
    color: #111;
    margin: 0;
}

.industries-tags {
    max-width: 570px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 18px;
}

.industries-tags span {
    min-width: 115px;
    background: #1d6b814b;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    border-radius: 20px;
    padding: 7px 22px;
    text-align: center;
    line-height: 1;
}

/* responsive */
@media (max-width: 992px) {
    .industries-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 45px;
    }

    .industries-tags {
        width: 100%;
        max-width: none;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .industries-left p {
        font-size: 22px;
    }

    .industries-title h3 {
        font-size: 20px;
    }

    .industries-tags {
        grid-template-columns: 1fr;
    }
}
/* ================= WHY ================= */

.why-section {
    background: #f4f5f7;
    padding: 130px 0;
}

.why-section .container {
    max-width: 1280px;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 95px;
    align-items: center;
}

.why-left h5 {
    color: #088682;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 70px;
}

.why-left h2 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    color: #000;
    margin-bottom: 25px;
}

.why-left h2 span {
    color: #21B8C1;
}

.why-main-text {
    font-size: 25px;
    line-height: 1.1;
    color: #111;
    margin-bottom: 36px;
}

.why-main-text strong {
    font-weight: 800;
}

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
}

.why-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    position: relative;
    font-size: 20px;
    line-height: 1.08;
    color: #222;
    margin-bottom: 15px;
    padding-left: 26px;
}

.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 16px;
    height: 16px;
    border: 2px solid #008fa0;
    border-radius: 50%;
    color: #008fa0;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-right {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 45px;
}

.why-right::before {
    content: "";
    position: absolute;
    inset: 35px;
    background: radial-gradient(circle, rgba(40, 185, 194, .25), transparent 65%);
    filter: blur(12px);
    z-index: 0;
}

.why-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 18px;
    padding: 26px 28px;
    min-height: 190px;
    box-shadow: 0 8px 13px rgba(0,0,0,.18);
    transition: all .3s ease;
}

.why-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 30px rgba(0,0,0,.18);
}

.why-card img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin-bottom: 22px;

    /* clave para que TODOS se vean iguales */
    display: block;
}

.why-card h3 {
    color: #122744;
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 10px;
}

.why-card p {
    color: #111;
    font-size: 16px;
    line-height: 1.45;   /* 👈 MÁS AIRE */
    margin-top: 10px;
}

@media (max-width: 992px) {
    .why-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-left h5 {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .why-section {
        padding: 85px 0;
    }

    .why-left h2 {
        font-size: 34px;
    }

    .why-main-text {
        font-size: 20px;
    }

    .why-list,
    .why-right {
        grid-template-columns: 1fr;
    }
}
/* ================= CASOS DE USO ================= */

.usecases-section {
    background: #ffffff;
    padding: 120px 0 130px;
}

.usecases-section .container {
    max-width: 1220px;
}

.usecases-section h5 {
    color: #088682;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 80px;
}

.usecases-section h2 {
    color: #000;
    font-size: 50px;
    line-height: 1.08;
    font-weight: 700;
    margin-bottom: 24px;
}

.usecases-section h2 span {
    color: #21B8C1;
}

.usecases-desc {
    color: #111;
    font-size: 31px;
    line-height: 1.18;
    font-weight: 400;
    margin: 0 auto 95px;
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 45px;
}

.usecase-card {
    background: #f8f8f8;
    border-radius: 18px;
    padding: 22px 26px;
    min-height: 150px;
    text-align: left;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: 0 8px 13px rgba(0,0,0,.18);
    transition: all .3s ease;
    border: 1px solid transparent;
}

.usecase-card.active {
    border-color: #00aeb9;
}

.usecase-card:hover {
    transform: translateY(-7px);
    border-color: #00aeb9;
    box-shadow: 0 18px 30px rgba(0,0,0,.18);
}

.usecase-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.usecase-card h3 {
    color: #182B46;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.usecase-card p {
    color: #111;
    font-size: 15px;
    line-height: 1.18;
    margin-bottom: 12px;
}

.usecase-card span {
    color: #088682;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .usecases-section h2 {
        font-size: 40px;
    }

    .usecases-desc {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .usecases-grid {
        grid-template-columns: 1fr;
    }

    .usecases-section {
        padding: 85px 0;
    }

    .usecases-section h5 {
        margin-bottom: 50px;
    }

    .usecases-section h2 {
        font-size: 32px;
    }

    .usecases-desc {
        font-size: 19px;
        margin-bottom: 55px;
    }
}
/* ================= CONTACTO ================= */

.contact-section {
    background: #ffffff;
    padding: 120px 0 130px;
}

.contact-section .container {
    max-width: 1250px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 90px;
    align-items: center;
}

.contact-left h5 {
    color: #088682;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 60px;
}

.contact-left h2 {
    color: #000;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 35px;
}

.contact-left h2 span {
    color: #21B8C1;
}

.contact-left > p {
    color: #111;
    font-size: 24px;
    line-height: 1.12;
    margin-bottom: 35px;
}

.contact-info {
    margin-top: 35px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 25px;
}

.contact-info-item img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
}

.contact-info-item span {
    display: block;
    font-size: 21px;
    color: #222;
    line-height: 1.1;
}

.contact-info-item strong {
    display: block;
    font-size: 21px;
    color: #000;
    font-weight: 800;
    text-decoration: underline;
    line-height: 1.1;
}

/* FORM */

.contact-form-card {
    background: #fff;
    border-radius: 34px;
    padding: 40px 48px;
    box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

.contact-form-card h3 {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-form-card > p {
    color: #222;
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;
    color: #000;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1.5px solid #02AFBA;
    border-radius: 22px;
    padding: 8px 14px;
    font-size: 15px;
    color: #111;
    outline: none;
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group textarea {
    height: 98px;
    resize: none;
    border-radius: 20px;
}

.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(0,184,196,.15);
}

.btn-contact {
    width: 100%;
    border: none;
    background: #088682;
    color: #fff;
    border-radius: 8px;
    padding: 9px 20px;
    font-size: 19px;
    font-weight: 700;
    transition: all .3s ease;
}

.btn-contact:hover {
    background: #00b8c4;
    transform: translateY(-2px);
}

/* responsive */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-left h5 {
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 85px 0;
    }

    .contact-left h2 {
        font-size: 34px;
    }

    .contact-left > p {
        font-size: 19px;
    }

    .contact-form-card {
        padding: 30px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info-item span,
    .contact-info-item strong {
        font-size: 18px;
    }
}
/* ================= FOOTER ================= */

.footer {
    background: #1A2D49;
    color: #dce6ef;
    padding: 85px 0 45px;
}

.footer .container {
    max-width: 1280px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.1fr 1.1fr 1.2fr .7fr;
    gap: 65px;
    align-items: start;
    margin-bottom: 75px;
}

.footer-logo {
    width: 175px;
    margin-bottom: 28px;
}

.footer-brand p {
    max-width: 260px;
    font-size: 15px;
    line-height: 1.25;
    color: #e8eef4;
    margin-bottom: 25px;
}

.footer-badges {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-badges li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    margin-bottom: 18px;
    color: #e8eef4;
}

.footer-badges img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.footer-col h4 {
    font-size: 22px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 22px;
    margin-top: 80px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 17px;
    font-size: 16px;
    color: #e8eef4;
}

.footer-col a {
    color: #e8eef4;
    text-decoration: none;
}

.footer-col a:hover {
    color: #42eee4;
}

.footer-cert img {
    display: block;
    width: 90px;
    margin-bottom: 12px;
}
.footer-col.footer-cert{
    margin-top: 80px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.45);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #fff;
}

.footer-bottom div {
    display: flex;
    gap: 42px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    margin: 0;
}

.footer-bottom a:hover {
    color: #42eee4;
}
.about-hero {
     min-height: 650px;
    padding-bottom: 120px;
    background:
        linear-gradient(rgba(0, 45, 55, .35), rgba(0, 115, 120, .35)),
        url("/img/fondopeype.png") center center / cover no-repeat;
}

/* TITULO IZQUIERDA */
.about-content {
    margin-top: 80px;
    text-align: left;
}

.about-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: #dfe6ea;
    margin-bottom: 50px;
}

.about-content h1 span {
    color: #47EBDD;
}

/* CARD */
.about-card {
    max-width: 1050px; /* 👈 más ancha */
    background: linear-gradient(145deg, #0f7b84, #0c6a74);
    padding: 35px 55px;
    border-radius: 28px;

    /* sombra más suave y larga */
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);

    margin-top: 30px;
}

.about-card p {
    color: #d7e1ea;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.mision-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;

    background:
        linear-gradient(
            rgba(226, 245, 250, 0.55),
            rgba(226, 245, 250, 0.55)
        ),
        url("/img/bg-mision.png");

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mision-content,
.vision-content {
    max-width: 1220px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mision-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #003941;
    margin-bottom: 18px;
    line-height: 1;
}

.mision-content p,
.vision-content p {
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
    max-width: 1200px;
}
.mision-content p {
    color: #284255;
}

.vision-content p {
    color: rgba(255,255,255,.96);
}
/* responsive */
@media (max-width: 992px) {

    .mision-content {
        margin-left: 0;
        max-width: 100%;
    }

    .mision-content h2 {
        font-size: 38px;
    }

    .mision-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {

    .mision-section {
        padding: 70px 0;
    }

    .mision-content h2 {
        font-size: 32px;
    }

    .mision-content p {
        font-size: 15px;
        line-height: 1.6;
    }
}
/* =========================
   VISIÓN
========================= */

.vision-section {
   background: linear-gradient(
        90deg,
        #003941 0%,
        #016674 31%,
        #0192A7 100%
    );
    padding: 95px 0;
    position: relative;
    overflow: hidden;
}


.vision-content h2 {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 26px;
    line-height: 1;
}



/* RESPONSIVE */

@media (max-width: 992px) {

    .vision-section {
        padding: 70px 0;
    }

    .vision-content h2 {
        font-size: 48px;
    }

    .vision-content p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {

    .vision-content h2 {
        font-size: 38px;
    }

    .vision-content p {
        font-size: 16px;
        line-height: 1.5;
    }
}
/* =========================
   POLITICA CALIDAD
========================= */

.quality-section {
    background: #eef2f4;
    padding: 90px 0 110px;
    position: relative;
    overflow: hidden;
}

.quality-section .container {
    max-width: 1220px;
}

.quality-section h2 {
    font-size: 54px;
    font-weight: 800;
    color: #006573;
    margin-bottom: 55px;
    line-height: 1;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 42px;
}

.quality-card {
    background: #003941;
    border-radius: 24px;
    padding: 28px 26px 26px;
    min-height: 175px;
    box-shadow: 0 10px 18px rgba(0,0,0,.18);
    transition: all .3s ease;
}

.quality-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(0,0,0,.22);
}

.quality-card-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 16px;
    display: block;
}

.quality-card p {
    color: white;
    font-size: 16px;
    line-height: 1.35;
    margin: 0;
    font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quality-section h2 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {

    .quality-section {
        padding: 70px 0 80px;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .quality-section h2 {
        font-size: 34px;
    }

    .quality-card {
        min-height: auto;
    }

    .quality-card p {
        font-size: 15px;
    }
}
/* =========================
   VALORES
========================= */

.values-section {
    background: #DEF4FF;
    padding: 70px 0 85px;
    position: relative;
    overflow: hidden;
}

.values-section .container {
    max-width: 1220px;
}

.values-content {
    max-width: 1220px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 58px;
    font-weight: 800;
    color: #003941;
    line-height: 1;
    margin-bottom: 22px;
}

.values-content p {
    max-width: 1380px;
    font-size: 22px;
    line-height: 1.35;
    color: #214657;
    font-weight: 500;
    margin: 0;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .values-section {
        padding: 60px 0 70px;
    }

    .values-content h2 {
        font-size: 46px;
    }

    .values-content p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {

    .values-section {
        padding: 50px 0 60px;
    }

    .values-content h2 {
        font-size: 36px;
    }

    .values-content p {
        font-size: 16px;
        line-height: 1.6;
    }
}
/* =========================
   VALUES CARDS
========================= */

.values-cards-section {
    width: 100%;
    overflow: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.value-card {
    min-height: 790px;
    padding: 95px 44px 70px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.value-card-1 {
    background: #006573;
}

.value-card-2 {
    background: #006E7D;
}

.value-card-3 {
    background: #02AFBA;
}

.value-card-4 {
    background: #1D6B81;
}

.value-card-5 {
    background: #003941;
}

.value-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin-bottom: 48px;
}

.value-card h3 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 34px;
    color: #ffffff;
}

.value-card p {
    font-size: 18px;
    line-height: 1.34;
    color: rgba(255,255,255,0.95);
    margin-bottom: 22px;
    font-weight: 400;
}

/* RESPONSIVE */

@media (max-width: 1400px) {

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 60px 32px;
    }

    .value-card h3 {
        font-size: 26px;
    }

    .value-card p {
        font-size: 16px;
    }
}
/* =========================
   PRIVACY HERO
========================= */

.privacy-hero {
    min-height: 720px;
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            rgba(4, 18, 35, 0.55),
            rgba(4, 18, 35, 0.55)
        ),
        url("/img/privacy-bg.png") center center / cover no-repeat;
}

/* TOP BAR */

.privacy-topbar {
    width: 100%;
    position: relative;
    z-index: 5;

    background: linear-gradient(
    90deg,
    #1A2D49 24%,
    rgba(115,115,115,0) 100%
);

    backdrop-filter: blur(2px);
}

.privacy-topbar .navbar {
    padding: 22px 0 42px;
}
/* CONTENT */

.privacy-content {
    position: relative;
    z-index: 3;
    height: calc(720px - 120px);
margin-top: -35px;

    display: flex;
    align-items: center;
}

.privacy-text {
    max-width: 430px;
    margin-left: 120px;
}

.privacy-text h1 {
    font-size: 64px;
    line-height: 0.95;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 42px;
}

.privacy-text h1 span {
    color: #47EBDD;
}

.privacy-text p {
    font-size: 22px;
    line-height: 1.15;
    color: rgba(255,255,255,0.96);
    font-weight: 400;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .privacy-content {
        height: auto;
        padding: 120px 0 90px;
    }

    .privacy-text {
        margin-left: 0;
        max-width: 100%;
    }

    .privacy-text h1 {
        font-size: 52px;
    }

    .privacy-text p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {

    .privacy-hero {
        min-height: auto;
    }

    .privacy-text h1 {
        font-size: 42px;
    }

    .privacy-text p {
        font-size: 16px;
        line-height: 1.5;
    }
}
/* =========================
   PRIVACY TEXT
========================= */

.privacy-text-section {
    background: #162d56;
    padding: 95px 0 110px;
    position: relative;
}

.privacy-text-section .container {
    max-width: 1280px;
}

.privacy-text-wrapper {
    max-width: 1220px;
    margin: 0 auto;
}

.privacy-text-wrapper p {
    font-size: 25px;
    line-height: 1.22;
    color: rgba(255,255,255,0.96);
    font-weight: 400;
    margin-bottom: 48px;
}

.privacy-text-wrapper p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: #47EBDD !important;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .privacy-text-section {
        padding: 70px 0 80px;
    }

    .privacy-text-wrapper p {
        font-size: 19px;
        line-height: 1.45;
    }
}

@media (max-width: 576px) {

    .privacy-text-wrapper p {
        font-size: 16px;
    }
}
/* =========================
   PRIVACY CONTACT
========================= */

.privacy-contact-section {
    background: #F8FAFB;
    padding: 42px 0 48px;
    border-top: 5px solid #162d56;
    border-bottom: 5px solid #162d56;
}

.privacy-contact-section .container {
    max-width: 1280px;
}

.privacy-contact-text {
    max-width: 1220px;
    margin: 0 auto;
}

.privacy-contact-text p {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
    color: #1A2D49;
    font-weight: 400;
}

.privacy-contact-text strong {
    font-weight: 800;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .privacy-contact-text p {
        font-size: 21px;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {

    .privacy-contact-section {
        padding: 35px 0 40px;
    }

    .privacy-contact-text p {
        font-size: 17px;
    }
}
@media (max-width: 992px) {
    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .services-section .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .services-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        width: 100% !important;
        margin-top: 40px;
    }

    .service-card {
        width: 100% !important;
        max-width: 420px;
        margin: 0 auto;
        padding: 28px 26px;
    }

    .service-card h3 {
        font-size: 22px;
    }

    .service-card p {
        font-size: 16px;
        line-height: 1.45;
    }
}
@media (max-width: 992px) {
    .navbar {
        padding: 24px 0 16px;
    }

    .navbar-logo {
        height: 56px;
    }

    .navbar-toggler {
        border: 1px solid rgba(71, 235, 221, .45);
        border-radius: 12px;
        padding: 8px 10px;
        box-shadow: none !important;
    }

    .navbar-collapse {
        background: rgba(1, 25, 60, .96);
        border: 1px solid rgba(71, 235, 221, .18);
        border-radius: 18px;
        margin-top: 18px;
        padding: 22px;
    }

    .navbar-nav {
        gap: 14px !important;
    }

    .navbar .nav-link {
        font-size: 16px;
        padding: 7px 0;
    }

    .navbar-actions {
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid rgba(255,255,255,.12);
    }
}
.form-alert {
    display: none;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 700;
}

.form-alert-success {
    display: block;
    background: #d8f8e7;
    color: #0d6b39;
    border: 1px solid #5ed68f;
}

.form-alert-error {
    display: block;
    background: #ffe0e0;
    color: #9b1c1c;
    border: 1px solid #ff8c8c;
}
/* ================= CREDIT REPORT ================= */

.credit-report-section {
    background: #ffffff;
    padding: 110px 0 120px;
}

.credit-report-section .container {
    max-width: 1280px;
}

.credit-report-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 95px;
    align-items: center;
}

.credit-report-left h5 {
    color: #088682;
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 75px;
}

.credit-report-left h2 {
    color: #000;
    font-size: 50px;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 38px;
}

.credit-report-left h2 span {
    color: #21B8C1;
}

.credit-report-text {
    color: #111;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 34px;
}

.credit-report-text strong {
    color: #007b88;
    font-size: 24px;
    line-height: 1.2;
    display: block;
    font-weight: 800;
    margin-top: 2px;
}

.credit-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 55px;
    margin-bottom: 40px;
}

.credit-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.credit-feature img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    flex-shrink: 0;
}

.credit-feature span {
    color: #00677c;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.15;
}

.btn-credit-report {
    background: #00998C;
    color: #ffffff;
    border-radius: 32px;
    padding: 14px 34px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-credit-report:hover {
    background: #00b8c4;
    color: #ffffff;
    transform: translateY(-3px);
}

.credit-report-right img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .credit-report-content {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .credit-report-left h5 {
        margin-bottom: 38px;
    }

    .credit-report-left h2 {
        font-size: 40px;
    }

    .credit-report-text {
        font-size: 22px;
    }

    .credit-report-text strong {
        font-size: 20px;
    }

    .credit-report-right img {
        height: 320px;
    }
}

@media (max-width: 576px) {
    .credit-report-section {
        padding: 80px 0;
    }

    .credit-report-left h2 {
        font-size: 34px;
    }

    .credit-report-text {
        font-size: 19px;
    }

    .credit-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .btn-credit-report {
        width: 100%;
        text-align: center;
    }

    .credit-report-right img {
        height: 260px;
    }
}
/* ================= PRICING ================= */

.pricing-section {
    background: #006573;
    padding: 105px 0 120px;
}

.pricing-section .container {
    max-width: 1280px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 64px;
}

.pricing-card {
    background: #f1f1f1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 10px rgba(0,0,0,.22);
}

.pricing-card-header {
    background: #ffffff;
    padding: 18px 26px 12px;
    border-radius: 18px 18px 0 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.pricing-card-header h3 {
    color: #006573;
    font-size: 22px;
    font-weight: 800;
    margin: 0;
}

.pricing-card-body {
    padding: 22px 26px 18px;
}

.price {
    color: #006573;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 22px;
}

.price span {
    color: #1A2D49;
    font-size: 17px;
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.pricing-card ul li {
    color: #006573;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 11px;
}

.btn-buy {
    width: 210px;
    display: block;
    margin: 0 auto;
    background: #02AFBA;
    color: #ffffff;
    text-align: center;
    border-radius: 22px;
    padding: 7px 18px;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-buy:hover {
    background: #00998C;
    color: #ffffff;
    transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .pricing-section {
        padding: 75px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pricing-card-header h3 {
        font-size: 20px;
    }

    .btn-buy {
        width: 100%;
    }
}

/* ================= UPDATE HERO ================= */

.update-hero {
    position: relative;
    min-height: 100vh;

    background-image: url("img/update-bg.png");
    background-size: cover;
    background-position: center;

    overflow: hidden;
}

/* OVERLAY TOP */
/* OVERLAY GENERAL OSCURO */

.update-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 18, 28, 0.78) 0%,
            rgba(0, 28, 38, 0.72) 22%,
            rgba(0, 38, 50, 0.52) 45%,
            rgba(0, 0, 0, 0.12) 100%
        );
}

/* DEGRADE SUPERIOR */

.update-overlay-top {
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            180deg,
            rgba(0, 175, 186, 0.58) 0%,
            rgba(0, 120, 135, 0.32) 18%,
            rgba(0, 0, 0, 0) 42%
        );
}

/* DEGRADE INFERIOR */

.update-overlay-bottom {
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            0deg,
            rgba(0, 175, 186, 0.68) 0%,
            rgba(0, 95, 105, 0.34) 20%,
            rgba(0, 0, 0, 0) 42%
        );
}

/* NAVBAR */

.update-hero .navbar {
    position: relative;
    z-index: 5;
    padding-top: 28px;
}

.update-hero .navbar .container {
    max-width: 1500px;
}

.update-hero .navbar-brand img {
    width: 235px;
    object-fit: contain;
}


/* CONTENT */

.update-hero-content {
    position: relative;
    z-index: 5;

    max-width: 1500px;

    display: flex;
    align-items: center;

    min-height: calc(100vh - 110px);
}

.update-text {
    max-width: 760px;
    margin-left: 230px;
    margin-top: -40px;
}

.update-text h1 {
    color: #ffffff;
    font-size: 78px;
    line-height: 0.95;
    font-weight: 800;
    margin-bottom: 34px;
}

.update-text h1 span {
    color: #4CE7EA;
}

.update-text p {
    color: #ffffff;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 400;
}

/* MOBILE */

@media (max-width: 992px) {

    .update-hero {
        min-height: 850px;
    }

    .update-hero-content {
        align-items: flex-start;
        padding-top: 140px;
    }

    .update-text {
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
    }

    .update-text h1 {
        font-size: 52px;
    }

    .update-text p {
        font-size: 24px;
    }

    .update-hero .navbar-brand img {
        width: 180px;
    }

    .update-hero .navbar-collapse {
        background: rgba(4, 25, 58, 0.96);
        border-radius: 20px;
        padding: 24px;
        margin-top: 18px;
    }
}

@media (max-width: 576px) {

    .update-hero {
        min-height: 760px;
    }

    .update-text h1 {
        font-size: 40px;
    }

    .update-text p {
        font-size: 20px;
        line-height: 1.25;
    }

    .update-hero .nav-link {
        font-size: 17px;
    }

    .language-switch {
        margin-top: 14px;
    }
}
/* ================= UPDATE DOCS ================= */

.update-docs {
    position: relative;
    z-index: 5;
    background-color: #006573;
    padding-bottom: 30px;
    padding-top: 30px;
}

.update-docs-grid {
    display: flex;
    justify-content: center;
    gap: 42px;
    flex-wrap: nowrap;
}

.update-doc-card {
    width: 300px;
    min-height: 210px;

    background: #0897A5; /* CELESTE LLENO */

    border-radius: 22px;

    padding: 34px 28px;

    box-shadow:
        0 10px 18px rgba(0,0,0,.28);

    transition: all .3s ease;
}

.update-doc-card:hover {
    transform: translateY(-6px);
}

.update-doc-card h3 {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 800;

    margin-bottom: 18px;
}

.update-doc-card p {
    color: rgba(255,255,255,.95);

    font-size: 15px;
    line-height: 1.2;

    margin: 0;
}

/* MOBILE */

@media (max-width: 1200px) {

    .update-docs-grid {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {

    .update-docs {
        margin-top: 120px;
    }

    .update-doc-card {
        width: 100%;
        max-width: 380px;
    }
}
/* ================= SOCIEDADES ================= */

.sociedades-section {
    background: #f2f2f2;

    padding: 80px 0 90px;
}

.sociedades-section .container {
    max-width: 1250px;
}

.sociedades-section h2 {
    font-size: 72px;
    line-height: 1;

    font-weight: 800;

    color: #006573;

    margin-bottom: 38px;
}

.sociedades-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sociedad-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.sociedad-letter {
    width: 42px;
    height: 42px;

    min-width: 42px;

    border-radius: 12px;

    background: #0886824f;

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    font-weight: 700;

    line-height: 1;
}

.sociedad-item p {
    margin: 0;

    font-size: 22px;
    line-height: 1.35;

    color: #1E1E1E;

    font-weight: 400;
}

/* MOBILE */

@media (max-width: 768px) {

    .sociedades-section {
        padding: 60px 0;
    }

    .sociedades-section h2 {
        font-size: 48px;
        margin-bottom: 30px;
    }

    .sociedad-item {
        gap: 14px;
    }

    .sociedad-letter {
        width: 36px;
        height: 36px;
        min-width: 36px;

        font-size: 22px;
    }

    .sociedad-item p {
        font-size: 18px;
    }
}
/* ================= CREDIT BUREAU ================= */

.credit-bureau-section {
    background: #1A2D49;

    padding: 110px 0 120px;
}

.credit-bureau-section .container {
    max-width: 1250px;
}

.credit-bureau-content {
    max-width: 720px;
}

.credit-bureau-content h2 {
    color: #47EBDD;

    font-size: 72px;
    line-height: 1;

    font-weight: 800;

    margin-bottom: 28px;
}

.credit-bureau-content p {
    color: #ffffff;

    font-size: 28px;
    line-height: 1.15;

    font-weight: 400;

    margin: 0;
}

/* MOBILE */

@media (max-width: 768px) {

    .credit-bureau-section {
        padding: 70px 0 80px;
    }

    .credit-bureau-content h2 {
        font-size: 46px;
        margin-bottom: 22px;
    }

    .credit-bureau-content p {
        font-size: 20px;
        line-height: 1.3;
    }
}
/* ================= UPDATE CONTACT ================= */

.update-contact-section {
    background: #006D78;

    padding: 95px 0 100px;
}

.update-contact-section .container {
    max-width: 1250px;
}

.update-contact-grid {
    display: grid;
    grid-template-columns: 1fr 600px;

    align-items: center;

    gap: 90px;
}

/* LEFT */

.update-contact-left h2 {
    color: #ffffff;

    font-size: 64px;
    line-height: 1.02;

    font-weight: 800;

    margin-bottom: 38px;
}

.update-contact-left h2 span {
    color: #42E8E0;
}

.update-contact-description {
    color: #ffffff;

    font-size: 28px;
    line-height: 1.18;

    font-weight: 400;

    max-width: 760px;

    margin-bottom: 52px;
}

/* INFO */

.update-contact-info {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.update-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 26px;
}

.update-contact-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.update-contact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.update-contact-text span {
    display: block;

    color: #ffffff;

    font-size: 20px;
    font-weight: 400;

    margin-bottom: 6px;
}

.update-contact-text a {
    display: block;

    color: #ffffff;

    font-size: 22px;
    line-height: 1.2;

    font-weight: 500;

    text-decoration: underline;

    transition: .2s;
}

.update-contact-text a:hover {
    color: #42E8E0;
}

/* RIGHT */

.update-contact-right img {
    width: 100%;
    height: 430px;

    object-fit: cover;

    border-radius: 28px;
}

/* MOBILE */

@media (max-width: 992px) {

    .update-contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .update-contact-right {
        order: -1;
    }
}

@media (max-width: 768px) {

    .update-contact-section {
        padding: 70px 0;
    }

    .update-contact-left h2 {
        font-size: 46px;
    }

    .update-contact-description {
        font-size: 21px;
        line-height: 1.35;
    }

    .update-contact-item {
        gap: 18px;
    }

    .update-contact-text a {
        font-size: 18px;
    }

    .update-contact-right img {
        height: 300px;
        border-radius: 22px;
    }
}
/* ================= CONSULTA HERO ================= */

.consulta-hero {
    min-height: 610px;
    position: relative;
    overflow: hidden;
    color: #ffffff;

    background: linear-gradient(
        115deg,
        #01193C 0%,
        #182B46 50%,
        #088682 100%
    );
}

.consulta-hero .navbar {
    position: relative;
    z-index: 5;
    padding: 26px 0 20px;
}

.consulta-hero-content {
    min-height: 470px;
    display: flex;
    align-items: center;
}
.consulta-text,
.consulta-form-card {
    margin-left: 145px;
}
.consulta-text {
    max-width: 980px;
    margin-left: 145px;
    margin-top: 30px;
}

.consulta-text h1 {
    font-size: 52px;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 24px;
}

.consulta-text h1 span {
    color: #47EBDD;
}

.consulta-text p {
    max-width: 820px;
    font-size: 31px;
    line-height: 1.18;
    font-weight: 400;
    margin: 0;
}

.consulta-text p strong {
    display: block;
    color: #47EBDD;
    font-weight: 800;
}

/* MOBILE */

@media (max-width: 992px) {
    .consulta-text {
        margin-left: 0;
    }

    .consulta-text h1 {
        font-size: 42px;
    }

    .consulta-text p {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .consulta-hero {
        min-height: 640px;
    }

    .consulta-hero-content {
        min-height: 460px;
    }

    .consulta-text h1 {
        font-size: 34px;
    }

    .consulta-text p {
        font-size: 20px;
    }
}
/* ================= CONSULTA FORM ================= */

.consulta-form-section {
    background: #f5f6f8;
    padding: 55px 0 85px;
}

.consulta-form-section .container {
    max-width: 1500px;
}

.consulta-form-card {
    max-width: 620px;
    margin-left: 145px;
}

.consulta-form-card h2 {
    color: #6d6d6d;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 34px;
}

.consulta-field {
    margin-bottom: 28px;
}
.consulta-hero .container,
.consulta-form-section .container {
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}
.consulta-field label,
.consulta-upload-group > label,
.consulta-bio-group > label {
    display: block;
    color: #008682;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 12px;
}

.consulta-field input {
    width: 250px;
    height: 43px;
    border: 1px solid #b9c0c8;
    border-radius: 5px;
    background: #ffffff;
    padding: 0 14px;
    font-size: 18px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,.12);
    outline: none;
}

.consulta-field input::placeholder {
    color: #9d9d9d;
}

.consulta-field input:focus {
    border-color: #00a8a5;
    box-shadow: 0 0 0 3px rgba(0,168,165,.12);
}

.consulta-upload-group {
    margin-bottom: 42px;
}

.consulta-upload-row {
    display: flex;
    gap: 20px;
}

.consulta-upload-box {
    width: 84px;
    height: 84px;
    border-radius: 16px;
    border: 1px solid #c7cdd3;
    background: #ffffff;
    box-shadow: 0 3px 5px rgba(0,0,0,.20);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all .25s ease;
}

.consulta-upload-box:hover {
    transform: translateY(-3px);
    border-color: #00a8a5;
}

.consulta-upload-box img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    opacity: .75;
}

.consulta-upload-box span {
    color: #9b9b9b;
    font-size: 11px;
    line-height: 1.05;
    text-align: center;
    font-weight: 700;
}

.consulta-bio-group {
    margin-bottom: 26px;
}

.consulta-bio-card {
    width: 112px;
    height: 82px;
    border: 1px solid #c7cdd3;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 3px 5px rgba(0,0,0,.20);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    cursor: pointer;
    transition: all .25s ease;
}

.consulta-bio-card:hover {
    transform: translateY(-3px);
    border-color: #00a8a5;
}

.consulta-bio-card img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.consulta-bio-card span {
    color: #9b9b9b;
    font-size: 8px;
    line-height: 1.05;
    text-align: center;
}

.btn-consulta-submit {
    width: 175px;
    height: 39px;
    border: none;
    border-radius: 24px;
    background: #00998C;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    transition: all .25s ease;
}

.btn-consulta-submit:hover {
    background: #00b8c4;
    transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 576px) {
    .consulta-form-card {
        max-width: 100%;
        margin-left: 0;
    }

    .consulta-field input {
        width: 100%;
    }
}
.consulta-form-section .container {
    max-width: 1500px;
}

.consulta-form-card {
    margin-left: 145px;
}
@media (max-width: 992px) {

    .consulta-form-card {
        margin-left: 0;
    }

}
/* ================= SCORE INFO ================= */

.score-info-section {
    background: #ffffff;
    padding: 120px 0 130px;
}

.score-info-content {
    text-align: center;
}

.score-info-content h2 {
    font-size: 50px;
    font-weight: 800;
    color: #000;
    margin-bottom: 48px;
}

.score-info-content h2 span {
    color: #02AFBA;
}

.score-info-content p {
    font-size: 26px;
    line-height: 1.18;
    color: #111;
    margin-bottom: 34px;
}

.score-info-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .score-info-section {
        padding: 80px 0;
    }

    .score-info-content h2 {
        font-size: 34px;
    }

    .score-info-content p {
        font-size: 19px;
        line-height: 1.4;
    }
}
/* ================= 7 PALANCAS ================= */

.score-tips-section {
    background: #f3f3f3;
    padding: 110px 0 130px;
}

.score-tips-title {
    font-size: 64px;
    font-weight: 800;
    color: #000;
    margin-bottom: 70px;
    line-height: 1.05;
}

.score-tips-title span {
    color: #02AFBA;
}

.score-tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px;
}

.score-tip-card {
    background: #fff;
    border-radius: 26px;
    padding: 28px 28px 30px;
    box-shadow: 0 6px 12px rgba(0,0,0,.18);
    min-height: 340px;
}

.score-tip-number {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #c8ecee;
    color: #000;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.score-tip-card h3 {
    font-size: 25px;
    line-height: 1.08;
    font-weight: 800;
    color: #20314e;
    margin-bottom: 16px;
}

.score-tip-card p {
    font-size: 18px;
    line-height: 1.22;
    color: #222;
    margin: 0;
}

/* Responsive */

@media (max-width: 1400px) {

    .score-tips-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {

    .score-tips-title {
        font-size: 42px;
    }

    .score-tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .score-tips-section {
        padding: 80px 0;
    }

    .score-tips-title {
        font-size: 34px;
        margin-bottom: 40px;
    }

    .score-tips-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .score-tip-card {
        min-height: auto;
    }

    .score-tip-card h3 {
        font-size: 22px;
    }

    .score-tip-card p {
        font-size: 16px;
    }
}
/* ================= SCORE ERRORES ================= */

.score-errors-section {
    width: 100%;
}

.score-errors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.score-errors-left {
    background: #088682;
    min-height: 760px;
    display: flex;
    justify-content: center;
    padding: 70px 90px;
}

.score-errors-right {
    background: #000;
    min-height: 760px;
    display: flex;
    justify-content: center;
    padding: 70px 90px;
}

.score-errors-content {
    width: 100%;
    max-width: 720px;
}

.score-errors-content h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 60px;
}

.score-errors-content h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 45px;
}

.score-errors-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 50px;
}

.score-errors-content ul li {
    color: #fff;
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 4px;
}

.score-errors-content ul li::before {
    content: "• ";
}

.score-errors-content p {
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
    margin: 0;
}

.score-errors-text {
    margin-bottom: 45px !important;
}

.score-errors-text.bottom {
    margin-top: 50px !important;
}

/* ================= MOBILE ================= */

@media (max-width: 1200px) {

    .score-errors-content h2 {
        font-size: 52px;
    }

    .score-errors-content h3,
    .score-errors-content p,
    .score-errors-content ul li {
        font-size: 22px;
    }
}

@media (max-width: 992px) {

    .score-errors-grid {
        grid-template-columns: 1fr;
    }

    .score-errors-left,
    .score-errors-right {
        min-height: auto;
        padding: 70px 30px;
    }

    .score-errors-content h2 {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .score-errors-content h3,
    .score-errors-content p,
    .score-errors-content ul li {
        font-size: 20px;
    }
}

@media (max-width: 576px) {

    .score-errors-content h2 {
        font-size: 34px;
    }

    .score-errors-content h3,
    .score-errors-content p,
    .score-errors-content ul li {
        font-size: 18px;
    }
}
.payment-result {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    text-align: center;
}

.payment-result .container {
    max-width: 720px;
}

.payment-result h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.payment-result p {
    font-size: 18px;
    margin-bottom: 16px;
}