/* =========================================================
   SERTEFLON
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Quicksand", sans-serif;
    color: #0D3B66;
    background: #F7F9FA;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================================================
   TOP BAR
   ========================================================= */

.topbar {
    height: 36px;
    background: #0D3B66;
    color: white;
    font-size: 12px;
}

.topbar-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.topbar a {
    color: #F2C14E;
    font-weight: 700;
}

.separator {
    width: 1px;
    height: 15px;
    background: rgba(255,255,255,.35);
}


/* =========================================================
   NAVBAR
   ========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: white;

    border-bottom: 1px solid #E5EAEE;

    box-shadow:
        0 4px 20px rgba(13, 59, 102, .08);
}

.navbar {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Logo */

.logo {
    display: block;
}

.logo img {
    display: block;

    width: 150px;
    height: auto;
}


/* Desktop nav */

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a {
    color: #0D3B66;

    font-size: 13px;
    font-weight: 700;

    transition: color .2s ease;
}

nav a:hover {
    color: #18A7A1;
}


/* CTA */

.nav-cta {
    background: #F2C14E;

    padding: 13px 20px;

    border-radius: 8px;

    color: #0D3B66 !important;

    box-shadow:
        0 6px 18px rgba(242, 193, 78, .25);
}

.nav-cta:hover {
    color: #0D3B66 !important;
}


/* Mobile button */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 8px;

    background: transparent;

    cursor: pointer;

    padding: 8px;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: #0D3B66;

    transition: .25s;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 600px;

    overflow: hidden;

    background:
        url("assets/hero.png")
        center / cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            #062B48F5 0%,
            #0D3B66D9 42%,
            #0D3B6640 100%
        );
}

.hero-content {
    position: relative;
    z-index: 1;

    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    max-width: 680px;

    color: white;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: #18A7A1;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.eyebrow.light {
    color: #F2C14E;
}

.hero h1 {
    margin: 0 0 22px;

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.03;

    letter-spacing: -2px;
}

.hero h1 em {
    display: block;

    color: #18A7A1;

    font-style: normal;
}

.hero p {
    max-width: 610px;

    margin: 0 0 30px;

    color: #E4EEF3;

    font-size: 18px;

    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


/* Hero symbol */

.hero-symbol {
    width: 155px;
    height: 155px;

    margin-right: 5%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    border: 2px solid #18A7A1;

    border-radius: 28px 28px 28px 6px;

    background: rgba(13, 59, 102, .75);

    transform: rotate(-7deg);
}

.hero-symbol strong {
    color: white;

    font-size: 55px;

    line-height: 1;
}

.hero-symbol span {
    margin-top: 10px;

    color: #F2C14E;

    font-size: 12px;
    font-weight: 700;

    text-align: center;

    transform: rotate(7deg);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 21px;

    border-radius: 8px;

    border: 1px solid transparent;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-yellow {
    background: #F2C14E;

    color: #0D3B66;
}

.btn-yellow:hover {
    box-shadow:
        0 8px 20px rgba(242, 193, 78, .3);
}

.btn-outline {
    border-color: white;

    color: white;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    padding: 95px 0;

    background: white;
}

.section-heading {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 40px;

    margin-bottom: 45px;
}

.section-heading.center {
    display: block;

    max-width: 760px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-heading h2 {
    margin: 0;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -1px;
}

.section-heading p {
    

    margin: 20px;

    color: #6B7280;

    line-height: 1.6;
}


/* =========================================================
   PROBLEMS
   ========================================================= */

.problems {
    background: #F7F9FA;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.problem-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid #E1E7EB;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(13, 59, 102, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(13, 59, 102, .12);
}

.problem-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #0D3B66;
}

.problem-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.problem-card:hover .problem-image img {
    transform: scale(1.04);
}

.problem-content {
    flex: 1;
    padding: 26px 22px 24px;
    text-align: center;
}

.problem-icon {
    width: 58px;
    height: 58px;
    margin: -55px auto 16px;
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    background: #E7F7F6;
    border: 5px solid white;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(13, 59, 102, .12);
}

.problem-icon svg {
    width: 30px;
    height: 30px;
}

.problem-card h3 {
    margin: 0 0 10px;
    color: #0D3B66;
    font-size: 19px;
    font-weight: 800;
}

.problem-underline {
    width: 38px;
    height: 4px;
    margin: 0 auto 14px;
    background: #18A7A1;
    border-radius: 99px;
}

.problem-card p {
    margin: 0;
    color: #6B7280;
    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   SOLUTIONS / INDUSTRIES
   ========================================================= */

.industries {
    background: white;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.industry-card {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: white;
    background: #0D3B66;
    border: 0;
    border-radius: 16px;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(13, 59, 102, .12);
    transition: transform .25s ease, box-shadow .25s ease;
}

.industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,59,102,.05) 20%, rgba(6,30,50,.92) 100%);
}

.industry-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    top: -35px;
    right: -30px;
    border: 2px solid rgba(24,167,161,.55);
    border-radius: 50%;
}

.industry-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 42px rgba(13, 59, 102, .18);
}

.industry-card > * {
    position: relative;
    z-index: 1;
}

.industry-number {
    margin-bottom: auto;
    color: #F2C14E;
    font-size: 70px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.industry-card h3 {
    margin: 0 0 9px;
    font-size: 23px;
    line-height: 1.15;
}

.industry-card p {
    margin: 0 0 18px;
    color: #D9E8EE;
    font-size: 13px;
    line-height: 1.5;
}

.industry-card .industry-link {
    color: #F2C14E;
    font-size: 13px;
    font-weight: 800;
}

/* Modal */

.solution-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(6, 30, 50, .72);
    backdrop-filter: blur(5px);
}

.solution-modal.is-open {
    display: flex;
}

body.modal-open {
    overflow: hidden;
}

.solution-modal-dialog {
    position: relative;
    width: min(1050px, 100%);
    max-height: min(850px, 92vh);
    overflow-y: auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.solution-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(13,59,102,.9);
    color: white;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.solution-modal-header {
    padding: 38px 42px 28px;
    border-bottom: 1px solid #E5EAEE;
}

.solution-modal-header .eyebrow {
    margin-bottom: 8px;
}

.solution-modal-header h3 {
    margin: 0;
    color: #0D3B66;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.solution-modal-body {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 34px;
    padding: 34px 42px 42px;
}

.solution-modal-image {
    min-height: 320px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    border-radius: 16px;
    background-position: center;
    background-size: cover;
}

.solution-modal-image span {
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(13,59,102,.82);
    color: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.solution-modal-image.alimentaria {
    background: linear-gradient(135deg, #0D3B66 0%, #18A7A1 100%);
}

.solution-modal-image.plastica {
    background: linear-gradient(135deg, #0D3B66 0%, #4E6578 100%);
}

.solution-modal-image.calzado {
    background: linear-gradient(135deg, #0D3B66 0%, #18A7A1 70%, #F2C14E 100%);
}

.solution-modal-image.textil {
    background: linear-gradient(135deg, #0D3B66 0%, #6B7280 100%);
}

.solution-modal-image.papelera {
    background: linear-gradient(135deg, #0D3B66 0%, #18A7A1 55%, #F2C14E 100%);
}

.solution-modal-info h4 {
    margin: 0 0 16px;
    color: #0D3B66;
    font-size: 20px;
}

.solution-modal-info > p {
    margin: 0 0 24px;
    color: #6B7280;
    font-size: 14px;
    line-height: 1.65;
}

.solution-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}

.solution-highlight {
    padding: 13px 14px;
    background: #F1F8F8;
    border: 1px solid #D9EEEE;
    border-radius: 9px;
    color: #0D3B66;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
}

.solution-highlight::before {
    content: "✓";
    margin-right: 7px;
    color: #18A7A1;
    font-weight: 900;
}

.solution-applications {
    padding-top: 24px;
    border-top: 1px solid #E5EAEE;
}

.solution-applications h4 {
    margin-bottom: 14px;
}

.application-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.application-tag {
    padding: 8px 11px;
    background: #F7F9FA;
    border: 1px solid #DDE5E9;
    border-radius: 7px;
    color: #4F6472;
    font-size: 12px;
    font-weight: 600;
}

.solution-modal-footer {
    display: flex;
    justify-content: flex-end;
    padding: 0 42px 36px;
}

.solution-modal-footer .btn {
    min-width: 190px;
}

/* =========================================================
   APPLICATIONS
   ========================================================= */

.application-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.application-card {
    position: relative;

    height: 390px;

    overflow: hidden;

    display: flex;
    align-items: flex-end;

    padding: 26px;

    color: white;

    border-radius: 16px;

    background-position: center;
    background-size: cover;

    box-shadow:
        0 12px 35px rgba(13, 59, 102, .12);
}

.application-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            transparent 20%,
            rgba(6, 30, 50, .9)
        );
}

.application-card > div {
    position: relative;
    z-index: 1;
}

.application-card span {
    color: #F2C14E;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.application-card h3 {
    margin: 8px 0 14px;

    font-size: 21px;
}

.application-card a {
    font-size: 13px;
    font-weight: 800;
}


/* Demo images */

.moldes {
    background-image:
        url("assets/aplicaciones-moldes.png");
}

.rodillos {
    background-image:
        url("assets/aplicaciones-rodillos.png");
}

.piezas {
    background-image:
        url("assets/aplicaciones-piezas.png");
}

.especiales {
    background-image:
        url("assets/aplicaciones-especiales.png");
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 15px;
}

.process-grid article {
    position: relative;
    font-size: 20px;
    text-align: center;

    padding: 15px;

    border: 0;
}

.process-grid article > span {
    width: 56px;
    height: 56px;

    margin: 0 auto 18px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #18A7A1;

    color: white;

    font-weight: 800;

    box-shadow:
        0 0 0 7px white,
        0 0 0 8px #CFE6E7;
}

.process-grid h3 {
    margin: 10px 0;

    font-size: 17px;
}

.process-grid p {
    margin: 0;

    color: #6B7280;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   TRUST
   ========================================================= */

.trust {
    padding: 90px 0;

    background: #0D3B66;

    color: white;
}

.trust-heading {
    max-width: 760px;

    margin: 0 auto 45px;

    text-align: center;
}

.trust-heading h2 {
    margin: 0 0 15px;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;
}

.trust-heading p {
    margin: 0;

    color: #C9DCE5;

    line-height: 1.6;
}

.trust-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.trust-grid article {
    padding: 25px;

    text-align: center;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 14px;
}

.trust-grid article > span {
    display: block;

    margin-bottom: 12px;

    color: #F2C14E;

    font-size: 30px;
}

.trust-grid h3 {
    margin: 0 0 8px;
}

.trust-grid p {
    margin: 0;

    color: #B9CED9;

    font-size: 13px;
}


/* =========================================================
   CASES
   ========================================================= */

.case-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.case-grid article {
    padding: 18px;

    background: white;

    border: 1px solid #E0E7EB;

    border-radius: 14px;
}

.case-placeholder {
    height: 190px;

    margin-bottom: 18px;

    display: grid;
    place-items: center;

    text-align: center;

    color: #18A7A1;

    font-weight: 800;

    border: 1px dashed #9CCFD0;

    border-radius: 10px;
}

.case-grid article > span {
    color: #18A7A1;

    font-size: 12px;
    font-weight: 800;
}

.case-grid h3 {
    margin: 8px 0 12px;
}

.case-grid p {
    margin: 6px 0;

    color: #6B7280;

    font-size: 13px;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-section {
    background: #F7F9FA;
}

.faq-list {
    max-width: 850px;

    margin: auto;

    border-top: 1px solid #D5DFE4;
}

.faq-item {
    border-bottom: 1px solid #D5DFE4;
}

.faq-question {
    width: 100%;

    padding: 20px 5px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border: 0;

    background: transparent;

    color: #0D3B66;

    font-family: inherit;

    font-size: 16px;
    font-weight: 700;

    text-align: left;

    cursor: pointer;
}

.faq-question span {
    color: #18A7A1;

    font-size: 22px;

    transition: transform .2s ease;
}

.faq-question.active span {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;

    padding: 0 5px 18px;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    margin: 0;

    color: #6B7280;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   QUOTE
   ========================================================= */

.quote {
    padding: 90px 0;

    background:
        linear-gradient(
            115deg,
            #0D3B66,
            #10576C
        );

    color: white;
}

.quote-grid {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 60px;

    align-items: start;
}

.quote-text h2 {
    margin: 0 0 18px;

    font-size: clamp(32px, 4vw, 50px);

    line-height: 1.1;
}

.quote-text p {
    color: #D8E7ED;

    line-height: 1.6;
}


/* Form */

#quote-form {
    padding: 28px;

    background: white;

    color: #0D3B66;

    border-radius: 16px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.15);
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;
}

#quote-form label {
    display: block;

    margin-bottom: 15px;

    font-size: 13px;
    font-weight: 700;
}

#quote-form input,
#quote-form textarea {
    width: 100%;

    margin-top: 7px;

    padding: 13px 14px;

    border: 1px solid #D9E1E5;

    border-radius: 8px;

    outline: none;

    font-size: 14px;
}

#quote-form textarea {
    resize: vertical;
}

#quote-form input:focus,
#quote-form textarea:focus {
    border-color: #18A7A1;

    box-shadow:
        0 0 0 3px rgba(24,167,161,.1);
}

.form-submit {
    display: flex;

    align-items: center;

    gap: 15px;
}

.form-submit small {
    color: #6B7280;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding-top: 65px;

    background: #062B48;

    color: white;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 45px;
}

.footer-logo img {
    display: block;

    width: 100px;

    margin-bottom: 18px;

    /*
    Si tu logo tiene fondo blanco, puedes cambiarlo
    por una versión SVG blanca posteriormente.
    */
}

.footer p {
    max-width: 350px;

    color: #BFD0DA;

    font-size: 13px;

    line-height: 1.6;
}

.footer h3 {
    margin-top: 0;
}

.footer-grid > div > a:not(.footer-logo) {
    display: block;

    margin: 9px 0;

    color: #DBE8EF;

    font-size: 14px;
}

.whatsapp {
    color: #F2C14E !important;

    font-weight: 800;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom .container {
    min-height: 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #A9BDC8;

    font-size: 12px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */


/* Tablet */

@media (max-width: 1050px) {

    nav {
        gap: 14px;
    }

    nav a {
        font-size: 12px;
    }

    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .application-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* Mobile */

@media (max-width: 768px) {

    .topbar {
        height: auto;
        min-height: 36px;
    }

    .topbar-content {
        justify-content: center;

        padding: 8px 0;

        flex-wrap: wrap;
    }


    /* Navbar */

    .navbar {
        height: 72px;
    }

    .logo img {
        width: 135px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;

        top: 72px;
        left: 0;

        width: 100%;

        padding: 15px 5%;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: white;

        border-top: 1px solid #E5EAEE;

        box-shadow:
            0 15px 30px rgba(13,59,102,.12);
    }

    nav.open {
        display: flex;
    }

    nav a {
        padding: 15px 10px;

        border-bottom: 1px solid #EEF1F3;

        font-size: 14px;
    }

    nav .nav-cta {
        margin-top: 10px;

        text-align: center;

        border-bottom: 0;
    }


    /* Hamburger animation */

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


    /* Hero */

    .hero {
        min-height: 650px;
    }

    .hero-content {
        min-height: 650px;
    }

    .hero-symbol {
        display: none;
    }

    .hero h1 {
        font-size: 44px;

        letter-spacing: -1px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }


    /* Sections */

    .section {
        padding: 75px 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading p {
        margin-top: 15px;
    }


    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problem-image {
        height: 155px;
    }

    .problem-card {
        min-height: 360px;
    }


    .solution-modal {
        padding: 15px;
    }

    .solution-modal-header {
        padding: 32px 24px 22px;
    }

    .solution-modal-body {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .solution-modal-image {
        min-height: 230px;
    }

    .solution-modal-footer {
        padding: 0 24px 28px;
    }

    .application-grid {
        grid-template-columns: 1fr;
    }


    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .process-grid {
        grid-template-columns: 1fr;
    }


    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .case-grid {
        grid-template-columns: 1fr;
    }


    .quote-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

}


/* Small mobile */

@media (max-width: 560px) {

    .topbar-content {
        font-size: 10px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .problem-grid,
    .industry-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .problem-image {
        height: 180px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .solution-highlights {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-submit {
        align-items: flex-start;

        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        min-height: auto;

        padding: 18px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

}

/* =========================================================
   SOLUCIONES - FONDO
   ========================================================= */

#soluciones {
    background: #d6f0ec;
}

#soluciones .section-heading h2 {
    color: #0D3B66;
}

#soluciones .section-heading p {
    color: #4F6878;
}

.solution-modal-image {
    overflow: hidden;
    border-radius: 16px;
    min-height: 320px;
}

.solution-modal-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: block;
    object-fit: cover;
    border-radius: 5px;
}


#quote-form select {
    width: 100%;

    margin-top: 7px;

    padding: 13px 14px;

    border: 1px solid #D9E1E5;

    border-radius: 8px;

    outline: none;

    background: white;

    color: #6B7280;

    font-size: 14px;

    font-family: inherit;
}

#quote-form select:focus {
    border-color: #18A7A1;

    box-shadow:
        0 0 0 3px rgba(24,167,161,.1);
}