/*============================================
  PROYECTOS CSS - MOBILE FIRST APPROACH
  ============================================
  Estilos base para móvil, mejorando progresivamente
  con media queries para tablets y desktops.
*/

/* ============================================
   HERO SECTION - Mobile First
   ============================================ */
.hero-section-reduced {
    height: 30vh;
    min-height: 200px;
}

.hero-title-custom {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.hero-subtitle-custom {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.4;
}

/* ============================================
   PROJECTS INTRO SECTION - Mobile First
   ============================================ */
.projects-intro {
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ffc933);
    margin: 12px auto 0;
    border-radius: 2px;
}

.intro-text {
    font-size: 14px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   PROJECT SECTION - Mobile First
   ============================================ */
.project-section {
    background: #ffffff;
    position: relative;
}

.project-section-alt {
    background: #f9f9f9;
}

.project-info {
    padding: 0;
}

.project-category {
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.project-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.2;
}

.project-location {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-description-center {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.project-highlights {
    background: rgba(255, 182, 0, 0.05);
    padding: 15px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.project-highlights h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.project-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 12px;
    color: #555;
    line-height: 1.4;
}

.project-highlights li i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   PROJECT IMAGE WRAPPER - Mobile First
   ============================================ */
.project-gallery {
    margin-bottom: 0;
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    height: 100%;
    min-height: 180px;
    aspect-ratio: 4 / 3;
}

.project-image-wrapper:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(255, 182, 0, 0.2);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   PROJECT CARDS - Mobile First
   ============================================ */
.project-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 182, 0, 0.15);
}

.project-card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 182, 0, 0.1), rgba(255, 201, 51, 0.1));
    aspect-ratio: 16 / 10;
}

.project-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-card-image {
    transform: scale(1.06);
}

.project-card-content {
    padding: 18px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-card-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.project-card-location {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.project-card-description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

/* ============================================
   RENCO SELVA SECTION - Mobile First
   ============================================ */
.renco-selva-section {
    background: #ffffff;
    position: relative;
}

.renco-selva-badge {
    text-align: center;
}

.badge-logo {
    max-width: 140px;
    height: auto;
}

.renco-selva-intro {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}

.renco-selva-intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    height: 160px;
    aspect-ratio: 1 / 1;
}

.renco-selva-intro-image:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 35px rgba(255, 182, 0, 0.2);
}

.renco-selva-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 28px 0;
}

.renco-selva-project-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
    margin-bottom: 15px;
}

.renco-selva-text {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

.renco-selva-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: capitalize;
    margin-bottom: 15px;
    padding-left: 12px;
    border-left: 4px solid var(--primary-color);
}

.renco-selva-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    aspect-ratio: 16 / 10;
    min-height: 140px;
}

.renco-selva-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 182, 0, 0.15);
}

.renco-selva-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.renco-selva-gallery-item:hover img {
    transform: scale(1.06);
}

.renco-selva-large-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    aspect-ratio: 16 / 9;
    height: 200px;
}

.renco-selva-large-image:hover {
    box-shadow: 0 12px 35px rgba(255, 182, 0, 0.2);
}

.renco-selva-large-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   AGREGADOS GALLERY - Mobile First
   ============================================ */
.agregados-section {
    width: 100%;
}

.agregados-header {
    width: 100%;
}

.agregados-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
}

.agregados-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    aspect-ratio: 16 / 10;
    min-height: 140px;
    width: 100%;
}

.agregados-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.agregados-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 182, 0, 0.15);
}

.agregados-gallery-item:hover img {
    transform: scale(1.06);
}

/* ============================================
   ELECTROGENOS GALLERY - Mobile First
   ============================================ */
.electrogenos-section {
    width: 100%;
}

.electrogenos-header {
    width: 100%;
}

.electrogenos-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
}

.electrogenos-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    aspect-ratio: 16 / 10;
    min-height: 140px;
    width: 100%;
}

.electrogenos-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.electrogenos-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 182, 0, 0.15);
}

.electrogenos-gallery-item:hover img {
    transform: scale(1.06);
}

/* ============================================
   LINEA GORILA GALLERY - Mobile First
   ============================================ */
.linea-gorila-section {
    width: 100%;
}

.linea-gorila-header {
    width: 100%;
}

.linea-gorila-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
}

.linea-gorila-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    aspect-ratio: 16 / 10;
    min-height: 140px;
    width: 100%;
}

.linea-gorila-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.linea-gorila-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 182, 0, 0.15);
}

.linea-gorila-gallery-item:hover img {
    transform: scale(1.06);
}

/* ============================================
   CASAS APUESTAS GALLERY - Mobile First
   ============================================ */
.casas-apuestas-section {
    width: 100%;
}

.casas-apuestas-header {
    width: 100%;
}

.casas-apuestas-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
}

.casas-apuestas-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    aspect-ratio: 16 / 10;
    min-height: 140px;
    width: 100%;
}

.casas-apuestas-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.casas-apuestas-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 182, 0, 0.15);
}

.casas-apuestas-gallery-item:hover img {
    transform: scale(1.06);
}

/* ============================================
   CAROUSEL CUSTOMIZATION - Mobile First
   ============================================ */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--secondary-color);
    border-radius: 50%;
    padding: 6px;
    width: 28px;
    height: 28px;
}

.carousel-inner {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.carousel-item {
    height: 220px;
    aspect-ratio: 16 / 10;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

/* Project Carousel */
.project-carousel {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.project-carousel .carousel-item {
    height: 100%;
}

.project-carousel .project-image-wrapper {
    min-height: 100%;
    aspect-ratio: 16 / 10;
}

/* ============================================
   MEDIA QUERIES - TABLET START (576px+)
   ============================================ */
@media (min-width: 576px) {
    .hero-section-reduced {
        height: 35vh;
    }

    .hero-title-custom {
        font-size: 28px;
    }

    .hero-subtitle-custom {
        font-size: 15px;
    }

    .section-divider {
        width: 70px;
        height: 3px;
        margin: 14px auto 0;
    }

    .intro-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .project-title {
        font-size: 26px;
    }

    .project-location {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .project-description {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .project-highlights {
        padding: 18px;
    }

    .project-highlights h4 {
        font-size: 14px;
        margin-bottom: 13px;
    }

    .project-highlights li {
        font-size: 13px;
        margin-bottom: 9px;
    }

    .project-image-wrapper {
        min-height: 200px;
    }

    .project-card-image-wrapper {
        height: 200px;
    }

    .carousel-item {
        height: 260px;
    }

    .project-carousel .carousel-item {
        height: 100%;
    }

    .renco-selva-intro-image {
        height: 180px;
    }

    .renco-selva-gallery-item {
        min-height: 180px;
    }

    .renco-selva-large-image {
        height: 240px;
    }

    .badge-logo {
        max-width: 160px;
    }

    .renco-selva-project-title {
        font-size: 20px;
        margin-bottom: 17px;
    }

    .renco-selva-subtitle {
        font-size: 15px;
        margin-bottom: 17px;
    }

    .renco-selva-text {
        font-size: 14px;
    }

    .section-hr {
        margin: 32px 0;
    }

    .agregados-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .agregados-gallery-item {
        min-height: 160px;
    }

    .electrogenos-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .electrogenos-gallery-item {
        min-height: 160px;
    }

    .linea-gorila-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .linea-gorila-gallery-item {
        min-height: 160px;
    }

    .casas-apuestas-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .casas-apuestas-gallery-item {
        min-height: 160px;
    }
}

/* ============================================
   MEDIA QUERIES - SMALL DESKTOP (768px+)
   ============================================ */
@media (min-width: 768px) {
    .hero-section-reduced {
        height: 38vh;
    }

    .hero-title-custom {
        font-size: 32px;
    }

    .hero-subtitle-custom {
        font-size: 16px;
    }

    .section-divider {
        width: 75px;
        margin: 16px auto 0;
    }

    .intro-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .project-info {
        padding: 10px 0;
    }

    .project-category {
        font-size: 12px;
        margin-bottom: 9px;
    }

    .project-title {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .project-location {
        font-size: 15px;
    }

    .project-description {
        font-size: 15px;
    }

    .project-description-center {
        font-size: 15px;
    }

    .project-highlights {
        padding: 20px;
    }

    .project-highlights h4 {
        font-size: 15px;
    }

    .project-highlights li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .project-highlights li i {
        font-size: 17px;
    }

    .project-image-wrapper {
        min-height: 220px;
    }

    .project-card-image-wrapper {
        height: 220px;
    }

    .project-card-content {
        padding: 20px 17px;
    }

    .project-card-title {
        font-size: 13px;
    }

    .project-card-location {
        font-size: 16px;
    }

    .carousel-item {
        height: 420px;
    }

    .project-carousel .carousel-item {
        height: 100%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 7px;
        width: 32px;
        height: 32px;
    }

    .renco-selva-intro {
        font-size: 15px;
    }

    .renco-selva-intro-image {
        height: 200px;
    }

    .renco-selva-gallery-item {
        min-height: 200px;
    }

    .renco-selva-large-image {
        height: 280px;
    }

    .badge-logo {
        max-width: 190px;
    }

    .renco-selva-project-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .renco-selva-subtitle {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .renco-selva-text {
        font-size: 14px;
    }

    .section-hr {
        margin: 36px 0;
    }

    .agregados-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .agregados-gallery-item {
        min-height: 180px;
    }

    .electrogenos-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .electrogenos-gallery-item {
        min-height: 180px;
    }

    .linea-gorila-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .linea-gorila-gallery-item {
        min-height: 180px;
    }

    .casas-apuestas-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .casas-apuestas-gallery-item {
        min-height: 180px;
    }
}

/* ============================================
   MEDIA QUERIES - TABLET LANDSCAPE (992px+)
   ============================================ */
@media (min-width: 992px) {
    .hero-section-reduced {
        height: 42vh;
    }

    .hero-title-custom {
        font-size: 36px;
    }

    .hero-subtitle-custom {
        font-size: 17px;
    }

    .section-divider {
        width: 80px;
        height: 4px;
        margin: 18px auto 0;
    }

    .intro-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .project-category {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .project-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .project-location {
        font-size: 16px;
        margin-bottom: 20px;
        gap: 8px;
    }

    .project-description {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .project-description-center {
        font-size: 16px;
    }

    .project-highlights {
        padding: 22px;
    }

    .project-highlights h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .project-highlights li {
        font-size: 15px;
        margin-bottom: 11px;
        gap: 12px;
    }

    .project-highlights li i {
        font-size: 18px;
    }

    .project-image-wrapper {
        min-height: 240px;
    }

    .project-card-image-wrapper {
        height: 240px;
    }

    .project-card-content {
        padding: 23px 20px;
    }

    .project-card-title {
        font-size: 14px;
    }

    .project-card-location {
        font-size: 17px;
        margin-bottom: 13px;
    }

    .project-card-description {
        font-size: 14px;
    }

    .carousel-item {
        height: 350px;
    }

    .project-carousel .carousel-item {
        height: 350px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 8px;
        width: 36px;
        height: 36px;
    }

    .renco-selva-intro {
        font-size: 16px;
        line-height: 1.8;
    }

    .renco-selva-intro-image {
        height: 240px;
    }

    .renco-selva-gallery-item {
        min-height: 240px;
    }

    .renco-selva-large-image {
        height: 320px;
    }

    .badge-logo {
        max-width: 210px;
    }

    .renco-selva-project-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .renco-selva-subtitle {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .renco-selva-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .section-hr {
        margin: 40px 0;
    }

    .agregados-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .agregados-gallery-item {
        min-height: 200px;
    }

    .electrogenos-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .electrogenos-gallery-item {
        min-height: 200px;
    }

    .linea-gorila-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .linea-gorila-gallery-item {
        min-height: 200px;
    }

    .casas-apuestas-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .casas-apuestas-gallery-item {
        min-height: 200px;
    }
}

/* ============================================
   MEDIA QUERIES - DESKTOP (1199px+)
   ============================================ */
@media (min-width: 1199px) {
    .hero-section-reduced {
        height: 46vh;
    }

    .hero-title-custom {
        font-size: 40px;
    }

    .hero-subtitle-custom {
        font-size: 18px;
    }

    .section-divider {
        width: 85px;
        height: 4px;
        margin: 20px auto 0;
    }

    .intro-text {
        font-size: 17px;
    }

    .project-info {
        padding: 15px 0;
    }

    .project-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .project-location {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .project-category {
        font-size: 14px;
    }

    .project-description {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .project-highlights {
        padding: 25px;
    }

    .project-highlights h4 {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .project-highlights li {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .project-image-wrapper {
        min-height: 260px;
    }

    .project-card-image-wrapper {
        height: 260px;
    }

    .carousel-item {
        height: 400px;
    }

    .project-carousel .carousel-item {
        height: 400px;
    }

    .renco-selva-intro-image {
        height: 260px;
    }

    .renco-selva-gallery-item {
        min-height: 260px;
    }

    .renco-selva-large-image {
        height: 360px;
    }

    .badge-logo {
        max-width: 240px;
    }

    .renco-selva-project-title {
        font-size: 28px;
        margin-bottom: 22px;
    }

    .renco-selva-subtitle {
        font-size: 18px;
        margin-bottom: 22px;
    }

    .renco-selva-text {
        font-size: 16px;
    }

    .renco-selva-intro {
        font-size: 16px;
    }

    .section-hr {
        margin: 45px 0;
    }

    .agregados-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .agregados-gallery-item {
        min-height: 220px;
    }

    .electrogenos-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .electrogenos-gallery-item {
        min-height: 220px;
    }

    .linea-gorila-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .linea-gorila-gallery-item {
        min-height: 220px;
    }

    .casas-apuestas-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .casas-apuestas-gallery-item {
        min-height: 220px;
    }
}

/* ============================================
   MEDIA QUERIES - LARGE DESKTOP (1440px+)
   ============================================ */
@media (min-width: 1440px) {
    .hero-section-reduced {
        height: 50vh;
    }

    .hero-title-custom {
        font-size: 48px;
    }

    .hero-subtitle-custom {
        font-size: 19px;
    }

    .intro-text {
        font-size: 18px;
    }

    .project-title {
        font-size: 40px;
    }

    .project-description {
        font-size: 17px;
    }

    .project-image-wrapper {
        min-height: 280px;
    }

    .carousel-item {
        height: 450px;
    }

    .project-carousel .carousel-item {
        height: 450px;
    }

    .renco-selva-intro-image {
        height: 280px;
    }

    .renco-selva-gallery-item {
        min-height: 280px;
    }

    .renco-selva-large-image {
        height: 400px;
    }

    .renco-selva-project-title {
        font-size: 32px;
    }

    .section-hr {
        margin: 50px 0;
    }

    .agregados-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .agregados-gallery-item {
        min-height: 240px;
    }

    .electrogenos-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .electrogenos-gallery-item {
        min-height: 240px;
    }

    .linea-gorila-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .linea-gorila-gallery-item {
        min-height: 240px;
    }

    .casas-apuestas-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .casas-apuestas-gallery-item {
        min-height: 240px;
    }
}