:root {
    --blue: #003DA6;
    --blue-dark: #071E4A;
    --coral: #ff5b51;
    --coral-hover: #ee4d44;
    --bg: #f5f7fb;
    --text: #1f2937;
    --muted: #667085;
    --border: #d9e0ea;
    --white: #ffffff;
    --radius-xl: 28px;
    --radius-lg: 18px;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: Poppins;
    font-weight: 600;
}

p, label{
  font-family: Inter;
  font-weight: 500;
}

.login-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.login-bg-slider {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.login-bg-slider .swiper-slide,
.login-bg-slider .o-swiper-login__slide {
    height: 100vh;
}

.login-bg-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px);
    transform: scale(1.06);
    opacity: 0.45;
}

.login-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(120deg, rgba(247, 249, 253, 0.96) 0%, rgba(247, 249, 253, 0.9) 45%, rgba(247, 249, 253, 0.78) 100%);
}

.login-header {
    position: relative;
    z-index: 5;
    width: 100%;
    min-height: 96px;
    padding: 10px 50px;
    display: block;
    max-width: 1470px;
    margin: 0 auto;
}
.home-header{
  position: relative;
    width: 100%;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff !important;
    box-shadow: var(--shadow-soft);
}

.logo img {
    max-width: 200px;
    height: auto;
    display: block;
}

.login-header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.login-main {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 48px 64px;
}

.login-card {
    width: min(1380px, 100%);
    min-height: 720px;
    display: grid;
    grid-template-columns: minmax(480px, 0.95fr) minmax(520px, 1.05fr);
    gap: 36px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(18px);
}

.login-card__content {
    padding: 36px 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.home-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.login-brand-mobile {
    display: none;
}

.login-illustration {
    width: 138px;
    height: 64px;
    margin-bottom: 22px;
    position: relative;
}

.login-illustration__mountain {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 38px;
    border-bottom: 2px solid rgba(0, 61, 166, 0.38);
}

.login-illustration__mountain::before {
    content: "";
    position: absolute;
    left: 12px;
    bottom: 0;
    width: 110px;
    height: 48px;
    background:
        linear-gradient(135deg, transparent 48%, rgba(0, 61, 166, 0.45) 49%, rgba(0, 61, 166, 0.45) 51%, transparent 52%),
        linear-gradient(45deg, transparent 48%, rgba(0, 61, 166, 0.45) 49%, rgba(0, 61, 166, 0.45) 51%, transparent 52%);
}

.login-illustration__camera {
    position: absolute;
    left: 48%;
    bottom: 0;
    width: 40px;
    height: 30px;
    transform: translateX(-50%);
    border: 2px solid rgba(0, 61, 166, 0.7);
    border-radius: 8px;
    background: #fff;
}

.login-illustration__camera::before {
    content: "";
    position: absolute;
    left: 9px;
    top: -8px;
    width: 18px;
    height: 8px;
    border: 2px solid rgba(0, 61, 166, 0.7);
    border-bottom: 0;
    border-radius: 6px 6px 0 0;
}

.login-illustration__camera::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%);
    border: 3px solid var(--coral);
    border-radius: 50%;
}

.login-title {
    margin: 0;
    max-width: 600px;
    color: var(--blue);
    font-size: 36px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin: 20px;
    text-align: center;
}

.login-form {
    max-width: 100%;
    margin: 0 0 0 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: flex;
    margin-bottom: 5px;
    color: #344054;
    font-size: 15px;
    font-weight: 400;
}

.input-wrap {
    position: relative;
}
.ordino-arcals input, .ordino-arcals select {
    border: 0px;
}
.input {
    height: 45px;
    padding-left: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl) !important;
    background-color: #fff;
    color: var(--text);
    font-size: 16px;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input::placeholder {
    color: #98a2b3;
}

.input:focus {
    border-color: rgba(0, 61, 166, 0.45);
    box-shadow: 0 0 0 4px rgba(0, 61, 166, 0.1);
    outline: none;
}

.input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    opacity: 0.55;
}

.input-icon--mail::before {
    content: "";
    position: absolute;
    inset: 3px 1px;
    border: 2px solid #667085;
    border-radius: 4px;
}

.input-icon--mail::after {
    content: "";
    position: absolute;
    left: 3px;
    right: 3px;
    top: 6px;
    height: 9px;
    border-left: 2px solid #667085;
    border-bottom: 2px solid #667085;
    transform: rotate(-45deg);
}

.input-icon--lock::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 12px;
    height: 9px;
    border: 2px solid #667085;
    border-radius: 3px;
}

.input-icon--lock::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 1px;
    width: 8px;
    height: 10px;
    border: 2px solid #667085;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
}

.forgot-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.forgot-link:hover {
    color: var(--coral);
    text-decoration: none;
}

.login-btn, .register-btn {
    width: 100%;
    height: 46px;
    margin-top: 8px;
    border: 0;
    border-radius: var(--radius-xl);
    background: var(--coral);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 12px 26px rgba(255, 91, 81, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.search-button{
    width: 100%;
    max-width: 200px;
    height: 46px;
    margin-top: 8px;
    border: 0;
    border-radius: var(--radius-xl);
    background: var(--coral);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 12px 26px rgba(255, 90, 81, 0.171);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}


.login-btn:hover,
.login-btn:focus,
.register-btn:hover,
.register-btn:focus {
    background: var(--coral-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(255, 91, 81, 0.38);
}

.login-register {
    margin-top: 24px;
    text-align: center;
    color: var(--muted);
    font-size: 15px;
}

.login-register a {
    margin-left: 4px;
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

.login-register a:hover {
    color: var(--coral);
}

.login-steps {
    max-width: 560px;
    margin-top: 50px;
}

.login-steps h2 {
    margin: 0 0 18px;
    color: var(--blue-dark);
    font-size: 22px;
    font-weight: 600;
}

.pasos {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.pasos li {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    gap: 14px;
    color: #475467;
    font-size: 15px;
    line-height: 1.45;
}

.pasos li span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--coral);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(255, 91, 81, 0.25);
}

.pasos li p {
    margin: 4px 0 0;
}

.login-card__image {
    min-height: 100%;
    overflow: hidden;
    position: relative;
    background: #d9e0ea;    
    border-top-right-radius: var(--radius-xl);
    border-bottom-right-radius: var(--radius-xl);
}

.login-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.18));
    pointer-events: none;
}

.login-card__image img {
    width: 100%;
    height: 100%;
    min-height: 656px;
    object-fit: cover;
    display: block;
}

@media (max-width: 1199px) {
    .login-card {
        grid-template-columns: 1fr;
        max-width: 760px;
        min-height: auto;
    }

    .login-card__image {
        order: -1;
        min-height: 320px;
    }

    .login-card__image img {
        min-height: 320px;
        max-height: 420px;
    }

    .login-card__content {
        padding: 16px 14px 24px;
    }

    .login-illustration {
        margin-left: auto;
        margin-right: auto;
    }

    .login-title,
    .login-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .login-form,
    .login-divider,
    .login-steps {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1200px) {
    .login-header {
        padding: 22px 22px 8px;
        min-height: 78px;
    }

    .login-logo img {
        max-width: 140px;
    }

    .login-main {
        padding: 16px 16px 40px;
        align-items: flex-start;
    }

    .login-card {
        padding: 18px;
        border-radius: 22px;
        gap: 22px;
    }

    .login-card__image {
        border-radius: 18px;
        min-height: 220px;
    }

        .login-card__image img {
            min-height: 220px;
            max-height: 260px;
        }

    .login-title {
        font-size: 32px;
    }

    .login-subtitle {
        font-size: 16px;
        margin-bottom: 26px;
    }

    .login-input,
    .login-btn {
        height: 52px;
    }

    .pasos {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .login-header {
        padding: 18px;
    }

    .login-logo img {
        max-width: 128px;
    }

    .login-lang {
        width: 38px;
        height: 38px;
    }

    .login-card {
        padding: 14px;
    }

    .login-card__content {
        padding: 8px 4px 18px;
    }

    .login-title {
        font-size: 28px;
    }

    .login-subtitle {
        font-size: 15px;
    }

    .login-register {
        font-size: 14px;
    }
}

.password-register{
  display: flex;
  flex-direction: row;
}


.checkbox input{
  margin-right: 5px;
}

.navigation, .language{
  
  display: flex;
  flex-direction: row;
  gap: 35px
}

.language i{
  width: 50px;
  height: 50px;
}

.title{
  color: var(--blue);
    font-size: 36px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin: 20px;
    text-align: center;
}

.contacte-title{
  color: var(--blue);
    font-size: 36px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin: 20px;
    text-align: left;
}

.date-input-wrapper{
  background-color: #fff;
  box-shadow: var(--shadow-soft);
  padding: 30px;
  border-radius: 60px !important;
  margin: 20px;
}

.date-time, .download-steps{
  display: flex;
  flex-direction: row;
  color: #667085;
  font-weight: 400;
  padding-left: 10px;
}

.date-time-fields{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: none;
}

.ordino-arcals{
  width: 100%;
  min-width: 200px;
  text-align: center;
}
.steps-section {
    width: 100%;
    padding: 24px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    align-items: start;
}

.step-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--coral, #ff5b51);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    z-index: 2;
}

.step-image {
    height: 150px;
    margin-left: 28px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-end;
}

.step-image img {
    max-width: 350px;
    max-height: 150px;
    display: block;
    margin-top: 10px;
}

.step-text {
    margin: 0;
    color: #667085;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.15;
}

.step-text strong {
    color: #344054;
    font-weight: 800;
}

@media (max-width: 767px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .step-card {
        min-height: 88px;
        padding-left: 104px;
        justify-content: center;
    }

    .step-number {
        left: 0;
        top: 4px;
    }

    .step-image {
        position: absolute;
        left: 28px;
        top: 0;
        margin: 0;
        height: 76px;
    }

    .step-image img {
        max-width: 72px;
    }

    .step-text {
        font-size: 15px;
    }
}


.homepage {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(0, 61, 166, 0.06), transparent 34%),
        linear-gradient(180deg, #f8fafc 0%, #f4f7fb 100%);
}

.home-header {
    position: sticky;
    top: 0;
    z-index: 20;
    width: 100%;
    min-height: 84px;
    padding: 14px clamp(18px, 4vw, 64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
}

.logo img {
    max-width: 180px;
}

.navigation {
    align-items: center;
    gap: clamp(18px, 3vw, 42px);
}

.navigation p {
    margin: 0;
    color: var(--blue-dark);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.navigation p:hover {
    color: var(--coral);
}

.language {
    align-items: center;
    gap: 16px;
}

.language i {
    width: auto;
    height: auto;
    color: var(--blue-dark);
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.language i:hover {
    color: var(--coral);
    transform: translateY(-1px);
}

.date-input-wrapper {
    width: min(1100px, 100%);
    margin: 12px auto 0;
    padding: 0;
    border-radius: 999px !important;
    background: #fff;
    border: 1px solid rgba(217, 224, 234, 0.95);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.date-time {
    width: 100%;
    display: flex;
    align-items: stretch;
    padding: 0;
    color: var(--muted);
}

.date-time-fields {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
}

.ordino-arcals {
    position: relative;
    width: auto;
    min-width: 0;
    min-height: 64px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475467;
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.ordino-arcals:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: rgba(217, 224, 234, 0.95);
}

.search-button{margin-right: 10px;}

.steps-section {
    width: 100%;
    margin-top: clamp(34px, 5vw, 58px);
    padding: 30px;
    text-align: center;
}

.steps-section h2 {
    margin: 0 0 10px;
    color: var(--blue-dark);
    font-size: 28px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.dia {
    font-weight: 400;
    font-size: 18px;
    color: var(--text);
}



.introdueix-el-dia-container b {
    color: var(--blue);
}

.steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 56px);
    margin-top: 42px !important;
}

.step-card {
    min-width: 0;
    padding: 10px 18px 0;
    align-items: center;
    text-align: left;
}

.step-number {
    top: 4px;
    left: 18px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(255, 91, 81, 0.25);
}

.step-image {
    width: 100%;
    height: 132px;
    margin: 0 0 16px;
    justify-content: center;
    align-items: flex-end;
}

.step-image img {
    max-width: min(210px, 100%);
    max-height: 132px;
    object-fit: contain;
}

.step-text {
    width: 100%;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.22;
    text-align: left;
}

.step-text strong {
    color: #344054;
    font-weight: 700;
}

@media (max-width: 991px) {
    .home-header {
        min-height: 76px;
    }

    .logo img {
        max-width: 150px;
    }

    .navigation {
        display: none;
    }

    .home-card {
        padding: 34px 24px;
    }

    .date-input-wrapper {
        border-radius: 26px !important;
    }

    .date-time {
        flex-direction: column;
    }

    .date-time-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ordino-arcals {
        min-height: 58px;
        justify-content: flex-start;
        padding: 0 22px;
        text-align: left;
    }

    .ordino-arcals:not(:last-child)::after {
        display: none;
    }

    .ordino-arcals:nth-child(odd)::after {
        content: "";
        display: block;
        position: absolute;
        right: 0;
        top: 16px;
        bottom: 16px;
        width: 1px;
        background: rgba(217, 224, 234, 0.95);
    }

    .ordino-arcals:nth-child(1),
    .ordino-arcals:nth-child(2) {
        border-bottom: 1px solid rgba(217, 224, 234, 0.95);
    }

    .search-button {
        max-width: 100%;
        min-height: 58px;
        border-radius: 0 0 24px 24px;
    }

    .steps-grid {
        gap: 24px;
    }

    .step-image {
        height: 112px;
    }

    .step-image img {
        max-height: 112px;
    }
}

.language {
  order:1;
}
@media (max-width: 767px) {
    .content {
        padding: 22px 0px;
    }

        .home-header {
            padding: 12px 18px;
        }

        .language {
            order: inherit;
            gap: 12px;
        }

            .language i {
                font-size: 22px;
            }

        .title {
            font-size: 34px;
            margin-bottom: 24px;
        }

        .login-illustration {
            transform: scale(0.88);
            margin-bottom: 10px;
        }

        .date-time-fields {
            grid-template-columns: 1fr;
        }

        .ordino-arcals {
            min-height: 56px;
            justify-content: center;
            text-align: center;
            border-bottom: 1px solid rgba(217, 224, 234, 0.95);
        }

            .ordino-arcals:nth-child(odd)::after {
                display: none;
            }

            .ordino-arcals:last-child {
                border-bottom: 0;
            }

        .steps-section {
            padding: 32px 22px;
            text-align: left;
        }

            .steps-section h2,
            .introdueix-el-dia-container {
                text-align: center;
            }

        .steps-grid {
            grid-template-columns: 1fr;
            gap: 26px;
            margin-top: 34px !important;
        }

        .step-card {
            min-height: 108px;
            padding: 0 0 0 122px;
            justify-content: center;
            align-items: flex-start;
        }

        .step-number {
            left: 0;
            top: 2px;
            width: 26px;
            height: 26px;
            font-size: 14px;
        }

        .step-image {
            position: absolute;
            left: 28px;
            top: 0;
            width: 82px;
            height: 96px;
            margin: 0;
            align-items: center;
            justify-content: center;
        }

            .step-image img {
                max-width: 82px;
                max-height: 86px;
            }

        .step-text {
            font-size: 15px;
        }
    }

@media (max-width: 480px) {
    .logo img {
        max-width: 128px;
    }

    .home-card {
        padding: 28px 16px;
        border-radius: 22px;
    }

    .title {
        font-size: 29px;
        letter-spacing: -0.035em;
    }

    .date-input-wrapper {
        border-radius: 22px !important;
    }

    .search-button {
        border-radius: 0 0 22px 22px;
    }

    .steps-section {
        padding: 28px 16px;
        border-radius: 22px;
    }

    .steps-section h2 {
        font-size: 27px;
    }

    .introdueix-el-dia-container {
        font-size: 15px;
    }

    .step-card {
        padding-left: 104px;
    }

    .step-image {
        left: 22px;
        width: 72px;
    }

    .step-image img {
        max-width: 72px;
    }
}


.contacte {
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
    
}

.contact {
    margin: 50px auto;
    padding: 40px 80px;
    max-width: 1200px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(217, 224, 234, 0.8);
    box-shadow: var(--shadow-soft);
}
@media (max-width: 720px) {

    .contacte-title {
        font-size: 24px;
    }
    .contact {
        padding: 30px 10px;
    }
}

    .contact-form {
        max-width: 1000px;
    }


    .about-page {
        min-height: 100vh;
        padding: clamp(32px, 5vw, 72px) 16px;
        background: var(--bg);
    }



    .section-kicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
        color: var(--coral, #ff5b51);
        font-family: Inter, sans-serif;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

        .section-kicker span {
            width: 34px;
            height: 2px;
            border-radius: 999px;
            background: var(--coral, #ff5b51);
        }

    .about-hero {
        display: grid;
        grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
        gap: clamp(28px, 5vw, 64px);
        align-items: center;
    }

    .about-hero__content h1 {
        margin: 0;
        color: var(--blue);
        font-size: clamp(38px, 5vw, 60px);
        line-height: 1.02;
        font-weight: 600;
        letter-spacing: -0.055em;
    }



    .about-hero__content p {
        max-width: 520px;
        margin: 22px 0 0;
        color: var(--muted, #667085);
        font-family: Inter, sans-serif;
        font-size: 19px;
        line-height: 1.55;
    }

    .about-hero__image,
    .about-split__image,
    .solar-section__image {
        position: relative;
        overflow: hidden;
        border-radius: 24px;
        background: #d9e0ea;
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    }

        .about-hero__image::after,
        .about-split__image::after,
        .solar-section__image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.16));
            pointer-events: none;
        }

        .about-hero__image img {
            width: 100%;
            height: 460px;
            object-fit: cover;
            display: block;
        }

    .about-intro {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 220px;
        gap: 28px;
        align-items: center;
        margin-top: clamp(34px, 5vw, 64px);
        padding: 28px;
        border-radius: 22px;
        background: rgba(156, 156, 156, 0.062);
        border: 1px solid rgba(217, 224, 234, 0.7);
    }

    .about-text p,
    .about-split__content p,
    .solar-section__content p,
    .info-card p {
        color: var(--muted, #667085);
        font-family: Inter, sans-serif;
        font-size: 16px;
        line-height: 1.65;
    }

    .about-text p {
        margin: 0;
    }

        .about-text p + p {
            margin-top: 12px;
        }

    .about-highlight {
        min-height: 140px;
        padding: 22px;
        border-radius: 20px;
        background: var(--bg);
        box-shadow: var(--shadow-soft);
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .about-highlight__number {
        color: var(--coral, #ff5b51);
        font-size: 36px;
        line-height: 1;
        font-weight: 700;
        letter-spacing: -0.04em;
    }

    .about-highlight__label {
        margin-top: 8px;
        color: var(--blue-dark, #071E4A);
        font-family: Inter, sans-serif;
        font-size: 15px;
        font-weight: 600;
    }

    .about-split {
        display: grid;
        grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
        gap: clamp(28px, 5vw, 58px);
        align-items: center;
        margin-top: clamp(42px, 6vw, 78px);
    }

    .about-split--reverse {
        grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
    }

        .about-split--reverse .about-split__image {
            order: 2;
        }

        .about-split--reverse .about-split__content {
            order: 1;
        }

    .about-split__image img {
        width: 100%;
        height: 360px;
        object-fit: cover;
        display: block;
    }

    .about-split__content h2,
    .solar-section__content h2 {
        margin: 0 0 18px;
        color: var(--blue-dark, #071E4A);
        font-size: clamp(30px, 3vw, 42px);
        line-height: 1.12;
        font-weight: 600;
        letter-spacing: -0.04em;
    }

    .about-split__content p {
        margin: 0;
    }

        .about-split__content p + p {
            margin-top: 14px;
        }

    .about-info-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
        margin-top: clamp(42px, 5vw, 66px);
    }

    .info-card {
        padding: 26px;
        border-radius: 22px;
        background: #fff;
        border: 1px solid rgba(217, 224, 234, 0.8);
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    }

    .info-card__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
        border-radius: 16px;
        background: rgba(255, 91, 81, 0.1);
        color: var(--coral, #ff5b51);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .info-card h3 {
        margin: 0 0 10px;
        color: var(--blue-dark, #071E4A);
        font-size: 20px;
        font-weight: 600;
    }

    .info-card p {
        margin: 0;
        font-size: 15px;
    }

    .solar-section {
        margin-top: clamp(42px, 6vw, 78px);
        padding: clamp(26px, 4vw, 42px);
        border-radius: 28px;
        background: var(--blue-dark, #071E4A);
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
        gap: clamp(28px, 5vw, 56px);
        align-items: center;
        overflow: hidden;
    }

        .solar-section .section-kicker {
            color: #fff;
        }

            .solar-section .section-kicker span {
                background: var(--coral, #ff5b51);
            }

    .solar-section__content h2 {
        color: #fff;
    }

    .solar-section__content p {
        color: rgba(255, 255, 255, 0.78);
    }

        .solar-section__content p + p {
            margin-top: 14px;
        }

    .solar-section__image img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        display: block;
    }


    @media (max-width: 991px) {
        .about-hero,
        .about-intro,
        .about-split,
        .about-split--reverse,
        .solar-section {
            grid-template-columns: 1fr;
        }

        .about-hero__image img {
            height: 380px;
        }

        .about-highlight {
            min-height: auto;
        }

        .about-split--reverse .about-split__image,
        .about-split--reverse .about-split__content {
            order: initial;
        }

        .about-info-grid {
            grid-template-columns: 1fr;
        }

        .solar-section {
            background: linear-gradient(135deg, var(--blue-dark, #071E4A), #0b2f6f);
        }

        .solar-section__image img {
            height: 320px;
        }
    }

    @media (max-width: 767px) {
        .about-page {
            padding: 22px 0px;
        }

        .about-card {
            padding: 22px;
            border-radius: 22px;
        }

        .about-hero {
            gap: 24px;
        }

        .about-hero__content h1 {
            font-size: 38px;
        }

        .about-hero__content p {
            font-size: 16px;
        }

        .about-hero__image,
        .about-split__image,
        .solar-section__image {
            border-radius: 18px;
        }

            .about-hero__image img,
            .about-split__image img,
            .solar-section__image img {
                height: 260px;
            }

        .about-intro {
            padding: 22px;
        }

        .about-split,
        .solar-section {
            margin-top: 44px;
        }

        .about-split__content h2,
        .solar-section__content h2 {
            font-size: 30px;
        }

        .info-card {
            padding: 22px;
        }

        .solar-section {
            padding: 24px;
            border-radius: 22px;
        }
    }

    @media (max-width: 480px) {
        .about-card {
            padding: 3px;
        }

        .section-kicker {
            font-size: 12px;
        }

        .about-hero__content h1 {
            font-size: 32px;
        }

        .about-hero__image img,
        .about-split__image img,
        .solar-section__image img {
            height: 220px;
        }

        .about-text p,
        .about-split__content p,
        .solar-section__content p,
        .info-card p {
            font-size: 15px;
        }

        .about-highlight__number {
            font-size: 32px;
        }
    }

    .politica h1 {
        margin: 0;
        color: var(--blue);
        font-size: 38px;
        line-height: 1.2;
        font-weight: 600;
        letter-spacing: -0.035em;
    }

    .textllarg h3, .textllarg h2 {
        margin: 40px 0 15px 0;
        color: var(--blue);
        font-size: 32px;
        line-height: 1.2;
        font-weight: 600;
        text-transform: lowercase;
    }

        .textllarg h3::first-letter, .textllarg h2::first-letter {
            text-transform: uppercase;
        }

.site-footer {
    width: 100%;
    padding: 28px 16px;
    background: transparent;
    position: relative;
    z-index: 5;
}

    .site-footer__inner {
        width: min(1180px, 100%);
        margin: 0 auto;
        padding-top: 20px;
        border-top: 1px solid rgba(217, 224, 234, 0.9);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
    }

    .site-footer__copy {
        margin: 0;
        color: var(--muted, #667085);
        font-family: Inter, sans-serif;
        font-size: 14px;
        font-weight: 500;
    }

    .site-footer__nav {
        display: flex;
        align-items: center;
        gap: 18px;
        flex-wrap: wrap;
    }

        .site-footer__nav a {
            position: relative;
            color: var(--blue, #003DA6);
            font-family: Inter, sans-serif;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.2s ease;
        }

            .site-footer__nav a:not(:last-child)::after {
                content: "";
                position: absolute;
                right: -10px;
                top: 50%;
                width: 1px;
                height: 13px;
                background: rgba(102, 112, 133, 0.45);
                transform: translateY(-50%);
            }

            .site-footer__nav a:hover {
                color: var(--coral, #ff5b51);
            }

    @media (max-width: 767px) {
        .site-footer {
            padding: 24px 16px;
        }

        .site-footer__inner {
            flex-direction: column;
            justify-content: center;
            text-align: center;
        }

        .site-footer__nav {
            justify-content: center;
            gap: 12px 18px;
        }
    }


    .nav-link {
        padding: 0px 40px !important;

    background: #fff;
    margin: 0px;
    text-align: center;
    border-radius: 10px;
}

@media (max-width: 980px) {

    .nav-link {
        padding: 10px 15px !important;
        background: #fff;
    }
}
@media (max-width: 765px) {

    .nav-link {
        background: #e7edf6;
        margin: 2px;
    }
}


    .dropdown-toggle {
        white-space: nowrap;
        text-decoration: navajowhite;
        color: #071e4a;
    }




    .nav-link:focus, .nav-link:hover {
        color: var(--coral);
    }

.gallery__div {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(217, 224, 234, 0.8);
    box-shadow: var(--shadow-soft);overflow:hidden;
}

.gallery__date {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px;
    color: #003da6;
}




.gallery__div .gallery__img {
    position: relative;
    overflow: hidden;
    background: rgba(0,0,0,.6)
}

.gallery__div:hover img {
    transform: scale(1.25);
    transition: .5s all;
    mix-blend-mode: overlay
}

.gallery__div:hover svg{
    animation: descarrega 0.8s ease-in-out infinite;
}

@keyframes descarrega {
    0% {
        transform: translateY(-4px);
    }

    50% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(4px);
    }
}