@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #111;
    background: #fff;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
.header {
    position: absolute;
    width: 100%;
    background: rgba(255,255,255,0.90);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    z-index: 50;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 58px;
}

.logo {
    font-weight: 800;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    color: #111;
}

.logo span {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.2px;
    color: #777;
    margin-top: 2px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    font-size: 13px;
    color: #111;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111;
    margin: 0 auto;
}

/* HERO */
.hero-sweco {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    /* CAMBIAR AQUI EL ZOOM BASE DEL HERO INICIAL */
    transform: scale(1);
    transition: opacity 1.6s ease-in-out, transform 7s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    /* CAMBIAR AQUI EL ZOOM ACTIVO DEL HERO INICIAL */
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.22) 0%,
        rgba(0,0,0,0.10) 40%,
        rgba(0,0,0,0.06) 70%,
        rgba(0,0,0,0.10) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content-wrap {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-box {
    max-width: 500px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    padding: 26px 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.hero-box h1 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.40);
}

.hero-box p {
    font-size: 14px;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 4px rgba(0,0,0,0.40);
    margin-bottom: 28px;
    line-height: 1.45;
}

.btn {
    border: 1px solid #ffffff;
    padding: 11px 18px;
    font-weight: 600;
    display: inline-block;
    color: #ffffff;
    margin-top: 10px;
    background: transparent;
    transition: all 0.25s ease;
}

.btn:hover {
    background: #ffffff;
    color: #111;
    transform: translateY(-1px);
}

/* FRANJA INFERIOR */
.hero-categories {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.hero-category {
    padding: 12px 18px;
    min-height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20,20,20,0.35);
    backdrop-filter: blur(6px);
    color: #fff;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.hero-category:last-child {
    border-right: none;
}

.hero-category span {
    font-size: 14px;
}

.hero-category .arrow {
    color: #8bc56a;
    font-size: 20px;
}

.hero-category-active {
    background: rgba(255,255,255,0.75);
    color: #222;
}

/* BLOQUE EDITORIAL */
.intro-editorial {
    background: #f7f7f4;
    padding: 110px 0 90px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 70px;
    align-items: center;
}

.eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: #7a7a7a;
    margin-bottom: 18px;
}

.intro-left h2 {
    font-size: 52px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.8px;
    margin-bottom: 24px;
    max-width: 820px;
    transition: 0.3s ease;
}

.intro-left:hover h2 {
    transform: translateX(4px);
}

.intro-left p {
    font-size: 19px;
    line-height: 1.65;
    color: #4c4c4c;
    max-width: 760px;
}

.intro-right {
    display: flex;
    justify-content: flex-end;
}

.impact-card {
    max-width: 330px;
    padding-left: 34px;
    border-left: 1px solid rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-4px);
}

.impact-number {
    font-size: 88px;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 10px;
    line-height: 0.9;
    color: #111;
}

.impact-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    max-width: 260px;
}

/* BLOQUE SECUNDARIO */
.intro-secondary {
    background: #fff;
    padding: 52px 0 92px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.intro-secondary-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.intro-secondary-text p {
    font-size: 20px;
    line-height: 1.65;
    color: #232323;
    max-width: 700px;
}

.intro-secondary-link {
    display: flex;
    justify-content: flex-end;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.text-link:hover {
    opacity: 0.65;
}

.text-link span {
    color: #8bc56a;
    font-size: 22px;
}

/* SERVICIOS */
.servicios-hero {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.servicios-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/hero/hero-07.jpg') center/cover no-repeat;
}

.servicios-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.28) 0%,
        rgba(0,0,0,0.12) 55%,
        rgba(0,0,0,0.08) 100%
    );
}

.servicios-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 360px;
    display: flex;
    align-items: center;
}

.servicios-hero-box {
    background: rgba(0,0,0,0.34);
    backdrop-filter: blur(6px);
    padding: 24px 32px;
    color: #fff;
    min-width: 280px;
}

.servicios-hero-box h2 {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.05;
}

.servicios-section {
    position: relative;
    overflow: hidden;
    background: #f4f4f1;
    padding: 48px 0 110px;
}

.servicios-section-bg {
    position: absolute;
    inset: 0;
    background: url('../img/hero/hero-08.jpg') center/cover no-repeat;
    opacity: 1;
    filter: saturate(0.92) brightness(1.00);
    z-index: 0;
}

.servicios-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.60);
    z-index: 1;
    pointer-events: none;
}

.servicios-wrap {
    position: relative;
    z-index: 2;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.servicio-card {
    min-height: 250px;
    padding: 28px 30px 26px;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.45);
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
    transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    color: #111;
    display: flex;
    flex-direction: column;
}

.servicio-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.72);
    border-color: rgba(255,255,255,0.52);
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.servicio-icon {
    font-size: 28px;
    line-height: 1;
    color: #3b3b3b;
    margin-bottom: 18px;
}

.servicio-card h3 {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.servicio-card p {
    font-size: 16px;
    line-height: 1.68;
    color: #404040;
    margin-bottom: 20px;
}

.servicio-card span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-top: auto;
}

/* SECTORES */
.sectores-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: #0f1418;
}

.sectores-section-bg {
    position: absolute;
    inset: 0;
    background: url('../img/hero/hero-05.jpg') center/cover no-repeat;
    opacity: 0.20;
    transform: scale(1.05);
}

.sectores-section-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(9, 14, 18, 0.78) 0%,
        rgba(10, 16, 20, 0.70) 45%,
        rgba(10, 16, 20, 0.82) 100%
    );
}

.sectores-wrap {
    position: relative;
    z-index: 2;
}

.eyebrow-light {
    color: rgba(255,255,255,0.72);
}

.sectores-header {
    max-width: 920px;
    margin-bottom: 46px;
}

.sectores-header h2 {
    font-size: 52px;
    margin-bottom: 16px;
    line-height: 1.08;
    color: #ffffff;
}

.sectores-header p {
    font-size: 20px;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    max-width: 820px;
}

.sectores-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.sector-card {
    position: relative;
    min-height: 320px;
    padding: 0;
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(255,255,255,0.10);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.sector-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-position: center;
    background-size: cover;
    transform: scale(1);
    transition: transform 0.9s ease;
}

.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 46px rgba(0,0,0,0.24);
    border-color: rgba(255,255,255,0.18);
}

.sector-card:hover::before {
    transform: scale(1.06);
}

.sector-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(7, 12, 16, 0.18) 0%,
        rgba(7, 12, 16, 0.34) 45%,
        rgba(7, 12, 16, 0.84) 100%
    );
    z-index: 1;
}

.sector-card-content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 28px 28px 26px;
}

.sector-kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.70);
    margin-bottom: 12px;
}

.sector-card h3 {
    font-size: 26px;
    line-height: 1.18;
    margin-bottom: 16px;
    color: #ffffff;
    max-width: 360px;
}

.sector-card ul {
    list-style: none;
    padding: 0;
}

.sector-card li {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.86);
    line-height: 1.65;
    padding-left: 16px;
    position: relative;
}

.sector-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8bc56a;
}

/* PROYECTOS */
.proyectos-section {
    padding: 110px 0 120px;
    background: #ffffff;
}

.proyectos-wrap {
    position: relative;
}

.proyectos-header {
    max-width: 920px;
    margin-bottom: 38px;
}

.proyectos-header h2 {
    font-size: 52px;
    line-height: 1.08;
    margin-bottom: 16px;
    color: #111;
}

.proyectos-header p {
    font-size: 19px;
    line-height: 1.65;
    color: #4c4c4c;
    max-width: 820px;
}

.proyectos-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 34px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.proyectos-categorias {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-filter-btn {
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    color: #111;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
}

.project-filter-btn:hover {
    border-color: rgba(0,0,0,0.22);
    transform: translateY(-1px);
}

.project-filter-btn.is-active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.proyectos-selects {
    display: flex;
    gap: 12px;
}

.proyectos-selects select {
    min-width: 170px;
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    color: #111;
    padding: 10px 14px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.project-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.14);
}

.project-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #1b2730 0%, #2d3d47 100%);
    overflow: hidden;
}

.project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.project-card:hover .project-media img {
    transform: scale(1.04);
}

.project-media-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
    background: linear-gradient(135deg, rgba(15,20,24,0.92) 0%, rgba(48,69,82,0.86) 100%);
}

.project-media-fallback span {
    color: rgba(255,255,255,0.88);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.project-body {
    padding: 22px 22px 24px;
}

.project-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.project-category {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    background: #f3f5f6;
    color: #2b3942;
}

.project-year {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
}

.project-title {
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    color: #111;
}

.project-location {
    font-size: 15px;
    line-height: 1.6;
    color: #404040;
    margin-bottom: 8px;
}

.project-role {
    font-size: 15px;
    line-height: 1.6;
    color: #404040;
    margin-bottom: 10px;
}

.project-summary {
    font-size: 15px;
    line-height: 1.7;
    color: #4b4b4b;
}

.projects-empty {
    padding: 26px 0 4px;
    font-size: 16px;
    color: #666;
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* CONTACTO */
.contact-section {
    background: #f7f7f4;
    padding: 110px 0 120px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.contact-left h2 {
    font-size: 48px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.6px;
    margin-bottom: 24px;
    max-width: 760px;
}

.contact-intro {
    font-size: 19px;
    line-height: 1.65;
    color: #4c4c4c;
    max-width: 700px;
    margin-bottom: 42px;
}

.contact-data {
    display: grid;
    gap: 20px;
    margin-bottom: 34px;
}

.contact-item {
    display: grid;
    gap: 4px;
}

.contact-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #7a7a7a;
}

.contact-item a,
.contact-item span:last-child {
    font-size: 17px;
    line-height: 1.5;
    color: #1d1d1d;
}

.contact-map-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.contact-map-link:hover {
    opacity: 0.65;
}

.contact-map-link span {
    color: #8bc56a;
    font-size: 22px;
    line-height: 1;
}

.contact-form {
    background: #ffffff;
    padding: 34px 34px 30px;
    border: 1px solid rgba(0,0,0,0.08);
}

.form-row {
    margin-bottom: 18px;
}

.form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.18);
    padding: 16px 0 14px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #111;
    background: transparent;
    outline: none;
    appearance: none;
    border-radius: 0;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select {
    color: #666;
}

.contact-form select:invalid {
    color: #666;
}

.form-actions {
    margin-top: 26px;
}

.contact-btn {
    border: 1px solid #111;
    background: transparent;
    color: #111;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
}

.contact-btn:hover {
    background: #111;
    color: #fff;
}

/* TABLET */
@media (max-width: 1024px) {
    .hero-box {
        max-width: 460px;
    }

    .hero-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-grid,
    .intro-secondary-grid,
    .contact-grid,
    .proyectos-toolbar {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .intro-left h2,
    .contact-left h2,
    .sectores-header h2,
    .proyectos-header h2 {
        font-size: 40px;
        max-width: 100%;
    }

    .intro-left p,
    .intro-secondary-text p,
    .contact-intro,
    .sectores-header p,
    .proyectos-header p {
        max-width: 100%;
    }

    .intro-right,
    .intro-secondary-link {
        justify-content: flex-start;
    }

    .impact-card {
        max-width: 420px;
    }

    .servicios-grid,
    .sectores-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .servicios-hero-box h2 {
        font-size: 42px;
    }

    .proyectos-toolbar {
        display: grid;
        align-items: start;
    }

    .proyectos-selects {
        flex-wrap: wrap;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 58px;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        display: none;
        flex-direction: column;
        z-index: 60;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        padding: 16px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .hero-inner {
        min-height: 100vh;
        align-items: flex-start;
        padding-top: 110px;
        padding-bottom: 320px;
    }

    .hero-content-wrap {
        justify-content: center;
    }

    .hero-box {
        max-width: 100%;
        width: 100%;
        padding: 22px 20px 28px;
        background: rgba(0,0,0,0.35);
        backdrop-filter: blur(8px);
    }

    .hero-box h1 {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 16px;
        color: #ffffff;
        text-shadow: 0 2px 6px rgba(0,0,0,0.40);
    }

    .hero-box p {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 24px;
        color: rgba(255,255,255,0.95);
        text-shadow: 0 2px 8px rgba(0,0,0,0.75);
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 18px;
        margin-top: 0;
        border: 2px solid #ffffff;
        color: #ffffff;
        background: rgba(0,0,0,0.12);
        backdrop-filter: blur(3px);
    }

    .btn:hover {
        background: #ffffff;
        color: #111;
        transform: none;
    }

    .hero-categories {
        grid-template-columns: 1fr;
    }

    .hero-category {
        min-height: 56px;
        padding: 14px 16px;
    }

    .hero-category span {
        font-size: 14px;
    }

    .intro-grid,
    .intro-secondary-grid,
    .contact-grid,
    .sectores-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .intro-left h2,
    .contact-left h2,
    .sectores-header h2,
    .proyectos-header h2 {
        font-size: 32px;
    }

    .impact-number {
        font-size: 64px;
    }

    .contact-section {
        padding: 76px 0 84px;
    }

    .contact-intro {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 32px;
    }

    .contact-form {
        padding: 24px 22px 24px;
    }

    .form-row.two-cols {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
    }

    .servicios-hero {
        min-height: 190px;
    }

    .servicios-hero-inner {
        min-height: 190px;
        align-items: flex-end;
        padding-bottom: 20px;
    }

    .servicios-hero-box {
        padding: 14px 18px;
    }

    .servicios-hero-box h2 {
        font-size: 28px;
    }

    .servicios-section,
    .proyectos-section {
        padding: 70px 0;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .servicio-card {
        min-height: auto;
        padding: 24px 22px;
    }

    .servicio-card h3 {
        font-size: 22px;
    }

    .servicio-card p {
        font-size: 15px;
        max-width: 100%;
    }

    .sectores-section {
        padding: 78px 0;
    }

    .sectores-header {
        margin-bottom: 28px;
    }

    .sectores-header p,
    .proyectos-header p {
        font-size: 17px;
        line-height: 1.65;
    }

    .sector-card {
        min-height: 260px;
    }

    .sector-card-content,
    .project-body {
        padding: 22px 22px 20px;
    }

    .sector-card h3,
    .project-title {
        font-size: 22px;
        max-width: 100%;
    }

    .proyectos-toolbar {
        display: grid;
        gap: 18px;
    }

    .proyectos-selects {
        display: grid;
        gap: 10px;
    }

    .proyectos-selects select {
        width: 100%;
        min-width: 0;
    }
}