/* Error de minimización. Devolviendo el contenido no minimizado.
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(12,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(20,23): run-time error CSS1039: Token not allowed after unary operator: '-font-body'
(21,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(27,23): run-time error CSS1039: Token not allowed after unary operator: '-font-heading'
(28,17): run-time error CSS1039: Token not allowed after unary operator: '-navy-900'
(53,23): run-time error CSS1039: Token not allowed after unary operator: '-font-heading'
(61,17): run-time error CSS1039: Token not allowed after unary operator: '-orange-500'
(66,17): run-time error CSS1039: Token not allowed after unary operator: '-orange-500'
(80,46): run-time error CSS1039: Token not allowed after unary operator: '-teal-600'
(80,63): run-time error CSS1039: Token not allowed after unary operator: '-orange-500'
(98,59): run-time error CSS1039: Token not allowed after unary operator: '-navy-800'
(98,76): run-time error CSS1039: Token not allowed after unary operator: '-navy-900'
(123,17): run-time error CSS1039: Token not allowed after unary operator: '-orange-500'
(172,17): run-time error CSS1039: Token not allowed after unary operator: '-orange-500'
(197,17): run-time error CSS1039: Token not allowed after unary operator: '-orange-500'
(204,23): run-time error CSS1039: Token not allowed after unary operator: '-font-heading'
(218,28): run-time error CSS1039: Token not allowed after unary operator: '-gray-100'
(228,17): run-time error CSS1039: Token not allowed after unary operator: '-teal-600'
(237,17): run-time error CSS1039: Token not allowed after unary operator: '-orange-500'
(251,17): run-time error CSS1039: Token not allowed after unary operator: '-gray-600'
(266,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(271,17): run-time error CSS1039: Token not allowed after unary operator: '-teal-600'
(289,28): run-time error CSS1039: Token not allowed after unary operator: '-gray-300'
(302,46): run-time error CSS1039: Token not allowed after unary operator: '-teal-600'
(302,63): run-time error CSS1039: Token not allowed after unary operator: '-orange-500'
(314,17): run-time error CSS1039: Token not allowed after unary operator: '-gray-600'
(325,28): run-time error CSS1039: Token not allowed after unary operator: '-gray-300'
(341,46): run-time error CSS1039: Token not allowed after unary operator: '-teal-600'
(341,63): run-time error CSS1039: Token not allowed after unary operator: '-orange-500'
(353,17): run-time error CSS1039: Token not allowed after unary operator: '-gray-600'
(360,46): run-time error CSS1039: Token not allowed after unary operator: '-navy-900'
(360,63): run-time error CSS1039: Token not allowed after unary operator: '-navy-800'
(375,17): run-time error CSS1039: Token not allowed after unary operator: '-orange-500'
(396,23): run-time error CSS1039: Token not allowed after unary operator: '-font-heading'
(418,17): run-time error CSS1039: Token not allowed after unary operator: '-teal-600'
(423,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(428,17): run-time error CSS1039: Token not allowed after unary operator: '-teal-600'
(436,28): run-time error CSS1039: Token not allowed after unary operator: '-gray-300'
(455,22): run-time error CSS1039: Token not allowed after unary operator: '-navy-900'
(464,23): run-time error CSS1039: Token not allowed after unary operator: '-font-heading'
(472,17): run-time error CSS1039: Token not allowed after unary operator: '-orange-500'
(512,17): run-time error CSS1039: Token not allowed after unary operator: '-orange-500'
 */
:root {
    /* Brand palette from official Solutec RowSe S.A. logo guide (Pantone 138 / Pantone 314) */
    --navy-900: #16191C;
    --navy-800: #22272B;
    --teal-600: #007DA5;
    --orange-500: #E27C00;
    --gray-100: #F4F7FB;
    --gray-300: #D9E2EC;
    --gray-600: #5B6B82;
    --text-dark: #191E21;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy-900);
}

section, header.hero {
    scroll-margin-top: 76px;
}

/* Navbar */
.solutec-navbar {
    background-color: rgba(22, 25, 28, 0.88);
    backdrop-filter: blur(8px);
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
    padding-top: .75rem;
    padding-bottom: .75rem;
}

.solutec-navbar.scrolled {
    background-color: rgba(22, 25, 28, 0.97);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff !important;
    letter-spacing: .3px;
}

.brand-mark {
    color: var(--orange-500);
    flex-shrink: 0;
}

.navbar-brand span {
    color: var(--orange-500);
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    margin: 0 .4rem;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
}

.btn-cta {
    background: linear-gradient(135deg, var(--teal-600), var(--orange-500));
    border: none;
    color: #fff;
    font-weight: 600;
    padding: .65rem 1.4rem;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(30, 99, 233, 0.35);
}

/* Hero */
.hero {
    position: relative;
    background: radial-gradient(circle at top right, var(--navy-800), var(--navy-900));
    padding: 9.5rem 0 6rem;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-svg {
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--orange-500);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    color: #fff;
    font-weight: 700;
    font-size: 2.75rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-lead {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    max-width: 560px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: .5rem .9rem;
    border-radius: 30px;
    font-size: .85rem;
}

.hero-badge i {
    color: var(--orange-500);
}

.hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 1.75rem;
    backdrop-filter: blur(6px);
}

.hero-card-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: .9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-card-row:last-child {
    border-bottom: none;
}

.hero-card-row i {
    font-size: 1.5rem;
    color: var(--orange-500);
    margin-top: .1rem;
}

.hero-card-row strong {
    display: block;
    color: #fff;
    font-family: var(--font-heading);
}

.hero-card-row span {
    color: rgba(255,255,255,0.7);
    font-size: .9rem;
}

/* Sections */
.section {
    padding: 5.5rem 0;
}

.section-alt {
    background-color: var(--gray-100);
}

.section-heading {
    max-width: 680px;
    margin-bottom: 3rem;
}

.section-eyebrow {
    display: inline-block;
    color: var(--teal-600);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: .85rem;
    margin-bottom: .5rem;
}

.section-eyebrow-light {
    color: var(--orange-500);
}

.section-title {
    font-weight: 700;
    font-size: 2.1rem;
    margin-bottom: 1rem;
}

.section-title-light {
    color: #fff;
}

.section-text {
    color: var(--gray-600);
    font-size: 1.05rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.check-list i {
    color: var(--teal-600);
}

.illustration-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(14, 42, 77, 0.25);
}

.illustration-card svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Mission / Vision */
.mv-card {
    background: #fff;
    border: 1px solid var(--gray-300);
    border-radius: 16px;
    padding: 2.25rem;
    height: 100%;
}

.mv-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--teal-600), var(--orange-500));
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.mv-card h3 {
    font-size: 1.3rem;
    margin-bottom: .75rem;
}

.mv-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Service cards */
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(14, 42, 77, 0.06);
    border: 1px solid var(--gray-300);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(14, 42, 77, 0.14);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--teal-600), var(--orange-500));
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: .6rem;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: .95rem;
}

/* Why choose us */
.why-section {
    background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
}

.why-card {
    position: relative;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    color: rgba(255,255,255,0.85);
}

.why-card i {
    font-size: 1.75rem;
    color: var(--orange-500);
    margin-bottom: .75rem;
    display: block;
}

.why-card h3 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: .5rem;
}

.why-card p {
    font-size: .9rem;
    margin-bottom: 0;
    color: rgba(255,255,255,0.65);
}

.why-number {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.15);
}

/* Contact */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-info-list i {
    color: var(--teal-600);
    font-size: 1.1rem;
}

.contact-info-list a {
    color: var(--text-dark);
    text-decoration: none;
}

.contact-info-list a:hover {
    color: var(--teal-600);
}

.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 20px 45px rgba(14, 42, 77, 0.08);
    border: 1px solid var(--gray-300);
}

.form-status {
    margin-top: 1rem;
    font-weight: 500;
    font-size: .95rem;
}

.form-status.success {
    color: #1a7f4e;
}

.form-status.error {
    color: #c0392b;
}

/* Footer */
.solutec-footer {
    background: var(--navy-900);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 1.5rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    text-decoration: none;
}

.footer-brand span {
    color: var(--orange-500);
}

.text-muted-light {
    color: rgba(255,255,255,0.55);
    font-size: .92rem;
}

.solutec-footer h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.1rem;
    text-transform: uppercase;
    font-size: .85rem;
    letter-spacing: .5px;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: .65rem;
    font-size: .92rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}

.footer-links a, .footer-contact a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--orange-500);
}

.solutec-footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 2.5rem 0 1.5rem;
}

.small-print {
    font-size: .85rem;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 991.98px) {
    .hero {
        padding: 7.5rem 0 4rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .section {
        padding: 3.75rem 0;
    }
}

