/* ═══════════════════════════════════════════════
   COMPONENTS — Geociclos Lazy Blocks
   ═══════════════════════════════════════════════ */

/* ─── 1. HERO SLIDER ─────────────────────────── */
.gc-hero-slider {
    position: relative;
    overflow: hidden;
}

.gc-hero-slider .carousel-item {
    min-height: 580px;
    background-size: cover;
    background-position: center;
}

.gc-hero-slider__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
    display: flex;
    align-items: center;
}

.gc-hero-slider__content {
    max-width: 700px;
    padding: 60px 0;
}

.gc-hero-slider__title {
    font-size: var(--gc-fs-hero);
    font-weight: 700;
    color: var(--gc-white);
    line-height: var(--gc-lh-hero);
    margin-bottom: 20px;
}

.gc-hero-slider__text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
}

.gc-hero-slider .carousel-control-prev,
.gc-hero-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    opacity: 1;
    transition: var(--gc-transition);
}

.gc-hero-slider .carousel-control-prev { left: 20px; }
.gc-hero-slider .carousel-control-next { right: 20px; }

.gc-hero-slider .carousel-control-prev:hover,
.gc-hero-slider .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gc-hero-slider .carousel-indicators {
    bottom: 20px;
}

.gc-hero-slider .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    opacity: 1;
}

.gc-hero-slider .carousel-indicators .active {
    background: var(--gc-green);
}

/* ─── 2. ÁREAS DE IMPACTO ────────────────────── */
.gc-impact-title {
    text-align: center;
    padding: 60px 0 20px;
}

.gc-impact-title__icon {
    display: inline-block;
    width: 40px;
    height: auto;
    margin-bottom: 10px;
}

.gc-impact-title__sub {
    font-size: 18px;
    color: var(--gc-green);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.gc-impact-title__main {
    font-size: 48px;
    font-weight: 900;
    color: rgba(34, 61, 117, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ─── 3. SERVICE FEATURE ─────────────────────── */
.gc-service-feature {
    padding: 60px 0;
}

.gc-service-feature__image {
    border-radius: var(--gc-radius-lg);
    overflow: hidden;
    box-shadow: var(--gc-shadow);
}

.gc-service-feature__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gc-service-feature:hover .gc-service-feature__image img {
    transform: scale(1.03);
}

.gc-service-feature__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.gc-service-feature__title {
    font-size: var(--gc-fs-h2);
    font-weight: 700;
    color: var(--gc-dark);
    margin-bottom: 16px;
}

.gc-service-feature__text {
    font-size: var(--gc-fs-body);
    color: var(--gc-gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
}

.gc-service-feature__text strong {
    color: var(--gc-dark);
}

.gc-service-feature__badges {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.gc-service-feature__badges img {
    max-height: 80px;
    width: auto;
}

/* ─── 4. PRODUCTOS DESTACADOS ────────────────── */
.gc-featured-products {
    padding: var(--gc-section-py) 0;
    background: var(--gc-gray-100);
}

.gc-featured-products__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.gc-featured-products__title {
    font-size: var(--gc-fs-h2);
    font-weight: 700;
    margin: 0;
}

.gc-featured-products__nav {
    display: flex;
    gap: 12px;
}

.gc-featured-products__nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gc-green);
    background: var(--gc-white);
    color: var(--gc-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--gc-transition);
}

.gc-featured-products__nav button:hover {
    background: var(--gc-green);
    color: var(--gc-white);
}

/* Product card */
.gc-product-card {
    background: var(--gc-white);
    border-radius: var(--gc-radius-lg);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: var(--gc-transition);
    height: 100%;
}

.gc-product-card:hover {
    box-shadow: var(--gc-shadow-lg);
    transform: translateY(-4px);
}

.gc-product-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--gc-gray-100);
}

.gc-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gc-product-card:hover .gc-product-card__image img {
    transform: scale(1.05);
}

.gc-product-card__body {
    padding: 16px;
}

.gc-product-card__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--gc-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.gc-product-card__name a {
    color: inherit;
}

.gc-product-card__name a:hover {
    color: var(--gc-green);
}

.gc-product-card__price {
    font-size: var(--gc-fs-h4);
    font-weight: 700;
    color: var(--gc-dark);
    margin-bottom: 12px;
}

.gc-product-card__price del {
    font-size: var(--gc-fs-small);
    color: var(--gc-gray-500);
    font-weight: 400;
    margin-left: 8px;
}

.gc-product-card__actions {
    display: flex;
    gap: 8px;
}

/* ─── 5. NOTICIAS CAROUSEL ────────────────────── */
.gc-news-section {
    padding: var(--gc-section-py) 0;
}

.gc-news-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.gc-news-card {
    border-radius: var(--gc-radius-lg);
    overflow: hidden;
    position: relative;
    height: 320px;
}

.gc-news-card__image {
    position: absolute;
    inset: 0;
}

.gc-news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gc-news-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: var(--gc-white);
}

.gc-news-card__date {
    display: inline-block;
    background: var(--gc-green);
    padding: 4px 12px;
    border-radius: var(--gc-radius-pill);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gc-news-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gc-white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.gc-news-card__link {
    color: var(--gc-white);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.gc-news-card__link:hover {
    color: var(--gc-green-light);
}

/* ─── 6. STATS COUNTER ───────────────────────── */
.gc-stats {
    background: var(--gc-green);
    background: var(--gc-green);
    padding: 30px 0;
}

.gc-stats__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.gc-stats__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gc-white);
}

.gc-stats__logo img {
    height: 50px;
    width: auto;
    border-radius: 50%;
}

.gc-stats__logo span {
    font-weight: 700;
    font-size: 18px;
}

.gc-stats__item {
    text-align: center;
    color: var(--gc-white);
}

.gc-stats__number {
    font-size: var(--gc-fs-h2);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.gc-stats__label {
    font-size: var(--gc-fs-small);
    opacity: 0.85;
}

.gc-stats__cta .gc-btn {
    border-radius: var(--gc-radius-pill);
}

/* ─── 7. PARTNERS & MIEMBROS ────────────────── */
.gc-partners {
    padding: var(--gc-section-py) 0;
}

.gc-partners__section-title {
    font-size: var(--gc-fs-h3);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.gc-partners__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.gc-partners__logos img {
    max-height: 50px;
    width: auto;
    filter: grayscale(30%);
    transition: var(--gc-transition);
}

.gc-partners__logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Línea divisoria entre Partners y Miembros */
.gc-partners .row > .col-md-6:first-child {
    border-right: 1px solid var(--gc-gray-300);
}

@media (max-width: 767.98px) {
    .gc-partners .row > .col-md-6:first-child {
        border-right: none;
        border-bottom: 1px solid var(--gc-gray-300);
        padding-bottom: 30px;
    }
}

/* ─── 8. CARDS GENÉRICAS ─────────────────────── */
.gc-card {
    background: var(--gc-white);
    border-radius: var(--gc-radius-lg);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: var(--gc-transition);
    height: 100%;
}

.gc-card:hover {
    box-shadow: var(--gc-shadow-lg);
    transform: translateY(-2px);
}

.gc-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gc-card__body {
    padding: 20px;
}

.gc-card__title {
    font-size: var(--gc-fs-h5);
    font-weight: 700;
    margin-bottom: 10px;
}

.gc-card__title a {
    color: var(--gc-dark);
}

.gc-card__title a:hover {
    color: var(--gc-green);
}

.gc-card__excerpt {
    font-size: var(--gc-fs-small);
    color: var(--gc-gray-600);
    margin-bottom: 16px;
}

/* ─── PAGE HERO ──────────────────────────────── */
.gc-page-hero {
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gc-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
}

.gc-page-hero__title {
    color: var(--gc-white);
    font-size: var(--gc-fs-h1);
}

/* ─── CONTENT (Gutenberg) ────────────────────── */
.gc-content h2 { margin-top: 2rem; margin-bottom: 1rem; }
.gc-content h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; }
.gc-content p  { margin-bottom: 1rem; }
.gc-content ul, .gc-content ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.gc-content img { border-radius: var(--gc-radius); }
.gc-content blockquote {
    border-left: 4px solid var(--gc-green);
    padding: 16px 24px;
    background: var(--gc-gray-100);
    border-radius: 0 var(--gc-radius) var(--gc-radius) 0;
    margin: 1.5rem 0;
    font-style: italic;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 991.98px) {
    .gc-hero-slider .carousel-item {
        min-height: 450px;
    }

    .gc-service-feature__image img {
        aspect-ratio: 3 / 2;
    }

    .gc-stats__inner {
        gap: 24px;
    }
}

@media (max-width: 767.98px) {
    .gc-hero-slider .carousel-item {
        min-height: 400px;
    }

    .gc-hero-slider__content {
        padding: 30px 0;
    }

    .gc-hero-slider .carousel-control-prev,
    .gc-hero-slider .carousel-control-next {
        display: none;
    }

    .gc-service-feature__image img {
        height: 250px;
    }

    .gc-news-card {
        height: 260px;
    }

    .gc-stats__inner {
        flex-direction: column;
        gap: 16px;
    }
}

/* ─── DECORATIVE ELEMENTS — Puntos y círculos de fondo ─── */
.gc-impact-title {
    position: relative;
    overflow: hidden;
}

.gc-impact-title::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, var(--gc-green) 3px, transparent 3px);
    background-size: 16px 16px;
    opacity: 0.3;
}

.gc-impact-title::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10%;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, var(--gc-green) 3px, transparent 3px);
    background-size: 16px 16px;
    opacity: 0.3;
}

.gc-service-feature {
    position: relative;
    overflow: hidden;
}

.gc-service-feature::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 30px solid rgba(67, 171, 59, 0.07);
    pointer-events: none;
    z-index: 0;
}

.gc-service-feature::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(67, 171, 59, 0.05);
    pointer-events: none;
    z-index: 0;
}

.gc-service-feature .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 767.98px) {
    .gc-impact-title::before,
    .gc-impact-title::after,
    .gc-service-feature::before,
    .gc-service-feature::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .gc-impact-title__main {
        font-size: 36px;
    }
}

/* ─── Service Feature: bold text = navy blue ─── */
.gc-service-feature__text strong,
.gc-service-feature__text b {
    color: rgba(34, 61, 117, 1);
    font-weight: 700;
}

/* ─── PAGE LAYOUT — Full-width content support ─── */
.gc-breadcrumb-bar {
    padding: 12px 0;
    background: var(--gc-white);
}

.gc-page-content {
    /* No container — allows alignfull blocks to go edge-to-edge */
}

.gc-page-content > .wp-block-group > .wp-block-group__inner-container {
    max-width: var(--gc-container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Full-width blocks inside page content */
.gc-page-content > .alignfull,
.gc-page-content > .wp-block-cover.alignfull,
.gc-page-content > .wp-block-group.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* (gc-service-card-block — replaced by gc-quote-card) */

/* ─── ¿Por qué GeoCiclos? icons grid (legacy) ─── */
.gc-porque__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
}

.gc-porque__item img {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}

.gc-porque__item h5 {
    color: var(--gc-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.gc-porque__item p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 767.98px) {
    .gc-porque__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}


/* ═══════════════════════════════════════════════
   NUEVOS BLOQUES + FIXES CONSOLIDADOS
   ═══════════════════════════════════════════════ */

/* ─── BREADCRUMB — Active item verde ──── */
.gc-breadcrumb span:last-child {
    color: rgba(67, 171, 59, 1);
    font-weight: 600;
}





.gc-breadcrumb .separator {
    color: var(--gc-gray-400);
    margin: 0 6px;
}

/* ─── GC PAGE HERO — spacing ──── */
.gc-page-hero-block .gc-breadcrumb-bar {
    padding: 0;
    border: none;
    background: transparent;
}

/* ─── GC QUOTE CARD — Cita con imagen overlap ──── */
.gc-quote-card {
    position: relative;
    overflow: visible;
    margin-bottom: 60px;
}

.gc-quote-card__img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: scale-down;
    
    display: block;
    border-radius: var(--gc-radius-lg, 12px);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gc-quote-card:hover .gc-quote-card__img {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.gc-quote-card .col-lg-7 {
    overflow: hidden;
    border-radius: var(--gc-radius-lg, 12px);
}

.gc-quote-card__text {
    background: var(--gc-white, #fff);
    border: 1px solid #E0E0E0;
    border-radius: var(--gc-radius-lg, 12px);
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gc-quote-card__text--right {
    margin-left: -120px;
    position: relative;
    z-index: 2;
}

.gc-quote-card__text--left {
    margin-right: -120px;
    position: relative;
    z-index: 2;
}

.gc-quote-card__text h4 {
    font-size: var(--gc-fs-h4, 20px);
    font-weight: 700;
    color: rgba(34, 61, 117, 1);
    margin-bottom: 16px;
}

.gc-quote-card__text p {
    font-size: 15px;
    color: var(--gc-gray-700, #555);
    line-height: 1.7;
    margin-bottom: 12px;
}

.gc-quote-card__text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .gc-quote-card__text--right,
    .gc-quote-card__text--left {
        margin-left: 16px;
        margin-right: 16px;
        margin-top: -40px;
    }

    .gc-quote-card__img {
        aspect-ratio: 3 / 2;
    }
}

@media (max-width: 575.98px) {
    .gc-quote-card__img {
        aspect-ratio: 4 / 3;
    }

    .gc-quote-card__text {
        padding: 24px;
    }

    .gc-quote-card__text--right,
    .gc-quote-card__text--left {
        margin-left: 12px;
        margin-right: 12px;
    }
}

/* ─── GC WHY SECTION — ¿Por qué GeoCiclos? ──── */
.gc-why-block {
    padding: 80px 0;
}

.gc-why-block .col-lg-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gc-why-block h5 {
    line-height: 1.3;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── GC TEAM GRID — Equipo ──── */
/* gc-team-grid: spacing via Bootstrap utility classes (py-4) */

.gc-team-area-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--gc-dark, #222);
    text-align: center;
    margin-bottom: 40px;
}

.gc-team-member {
    text-align: center;
    background: rgba(255, 255, 255, 1);
    border-radius: 20px;
    border-bottom: 5px solid rgba(67, 171, 59, 1);
    padding: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
    height: 100%;
}

.gc-team-member__photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    display: block;
    box-shadow: none;
}

.gc-team-member {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gc-team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.gc-team-member__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--gc-dark, #222);
    margin-bottom: 4px;
}

.gc-team-member__role {
    font-size: 14px;
    color: rgba(67, 171, 59, 1);
    font-weight: 500;
    line-height: 1.4;
}

/* ─── GC CONTACT — Contacto ──── */
.gc-contact-hero {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
}

.gc-contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
}

.gc-contact-hero .container {
    position: relative;
    z-index: 2;
}

.gc-contact-info {
    background: var(--gc-white, #fff);
    border-radius: var(--gc-radius-lg, 12px);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.gc-contact-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gc-dark, #222);
    margin-bottom: 24px;
}

.gc-contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.gc-contact-info__item svg {
    flex-shrink: 0;
    color: var(--gc-primary, #43AB3B);
    margin-top: 2px;
}


.gc-stagger.gc-visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.gc-stagger.gc-visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.gc-stagger.gc-visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.gc-stagger.gc-visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.gc-stagger.gc-visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* ─── SERVICIOS — Cards hover ──── */
.gc-service-feature .row img {
    transition: transform 0.4s ease;
}

.gc-service-feature .row:hover img {
    transform: scale(1.03);
}

.gc-service-feature .row .col-lg-6:first-child {
    overflow: hidden;
    border-radius: var(--gc-radius-lg, 12px);
}


/* ─── SERVICIOS — Cards grid fix ──── */
.gc-servicios-cards {
    margin-bottom: 80px;
}

.gc-servicios-cards .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none !important;
}

.gc-servicios-cards .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12) !important;
}

.gc-servicios-cards .card-img-top {
    height: 220px;
    object-fit: cover;
}

.gc-servicios-cards .card-body {
    padding: 20px;
}

.gc-servicios-cards .card-title {
    font-size: 18px;
    font-weight: 700;
}

.gc-servicios-cards .card-title a {
    color: var(--gc-dark, #222) !important;
    text-decoration: none !important;
    transition: color 0.2s;
}

.gc-servicios-cards .card-title a:hover {
    color: rgba(67, 171, 59, 1) !important;
}

/* ─── EQUIPO — Header con imagen ──── */
.gc-equipo-header {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    margin-bottom: 48px;
}

.gc-equipo-header::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(34, 61, 117, 0.7);
}

.gc-equipo-header .container {
    position: relative;
    z-index: 2;
}

.gc-equipo-header h1 {
    color: #fff;
}

.gc-equipo-header p {
    color: rgba(255,255,255,0.9);
    max-width: 700px;
}

/* ─── CONTACTO — Layout ──── */
.gc-contact-section {
    padding: 60px 0 80px;
}

.gc-contact-card {
    background: var(--gc-white, #fff);
    border-radius: var(--gc-radius-lg, 12px);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.gc-contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gc-dark, #222);
    margin-bottom: 24px;
}

.gc-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--gc-gray-700, #555);
}

.gc-contact-item svg {
    flex-shrink: 0;
    color: rgba(67, 171, 59, 1);
    margin-top: 3px;
}

.gc-contact-item a {
    color: var(--gc-dark, #222);
    text-decoration: none;
    transition: color 0.2s;
}

.gc-contact-item a:hover {
    color: rgba(67, 171, 59, 1);
}

.gc-contact-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(67, 171, 59, 1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
    margin-right: 8px;
    margin-bottom: 8px;
}

.gc-contact-wa:hover {
    background: rgba(50, 140, 45, 1);
    color: #fff;
}


/* Fix why-block grid */
.gc-why-block .row {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Equipo header - full width image */
.gc-equipo-header-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.gc-equipo-intro {
    padding: 40px 0 20px;
}

.gc-equipo-intro h1 {
    font-size: 35px;
    font-weight: 700;
    color: var(--gc-dark, #222);
    margin-bottom: 16px;
}

.gc-equipo-intro p {
    color: var(--gc-dark, #222);
    font-size: 16px;
    line-height: 1.7;
}

.gc-equipo-intro p strong {
    color: rgba(67, 171, 59, 1);
}

.gc-equipo-breadcrumb-over {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 3;
}


/* ═══ GLOBAL FIXES ═══ */

/* Párrafos 20px en todo el sitio */
.gc-page-content p,
.gc-equipo-intro p {
    font-size: 20px;
    line-height: 1.6;
    color: #3A3A3A;
}

/* Breadcrumb SOBRE imagen oscura: gris claro */


/* Margen inferior global antes del footer */
.gc-page-content {
    margin-bottom: 80px;
}

/* Equipo intro centrado */
.gc-equipo-intro {
    text-align: center;
}

.gc-equipo-intro p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Team member sizes Figma */
.gc-team-member__name {
    font-size: 20px !important;
}

.gc-team-member__role {
    font-size: 15px !important;
}

/* Quote card text 20px */
.gc-quote-card__text p {
    font-size: 20px !important;
}


/* Separación hero → primer quote card */
.gc-page-hero-block {
    margin-bottom: 60px !important;
}

/* Breadcrumb — specs Figma */
.gc-breadcrumb {
    font-size: 13px;
    font-weight: 400;
}

.gc-breadcrumb a {
    color: rgba(58, 58, 58, 1) !important;
    text-decoration: none;
    transition: color 0.2s;
}

.gc-breadcrumb a:hover {
    color: rgba(67, 171, 59, 1) !important;
}

.gc-breadcrumb .separator {
    color: rgba(150, 150, 150, 1);
    margin: 0 6px;
}

.gc-breadcrumb span:last-child {
    color: rgba(67, 171, 59, 1);
    font-weight: 600;
}





/* Breadcrumb sobre fondo oscuro (equipo + contacto) — CLEAN */
.gc-equipo-breadcrumb-over .gc-breadcrumb a,
.gc-equipo-header .gc-breadcrumb a {
    color: rgba(255, 255, 255, 0.85) !important;
}

.gc-equipo-breadcrumb-over .gc-breadcrumb a:hover,
.gc-equipo-header .gc-breadcrumb a:hover {
    color: #fff !important;
}

.gc-equipo-breadcrumb-over .gc-breadcrumb .separator,
.gc-equipo-header .gc-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5) !important;
}

.gc-equipo-breadcrumb-over .gc-breadcrumb span:last-child,
.gc-equipo-header .gc-breadcrumb span:last-child {
    color: rgba(67, 171, 59, 1) !important;
}


/* ─── CONTACTO — Split layout con imagen derecha ─── */
.gc-contact-split {
    position: relative;
    min-height: 600px;
}

.gc-contact-split__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45%;
    background-size: cover;
    background-position: center;
}

.gc-contact-split__info {
    padding: 60px 0 80px;
    position: relative;
    z-index: 2;
}

.gc-contact-split__info h1 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 8px;
}

.gc-contact-split__info .gc-contact-subtitle {
    color: var(--gc-gray-600, #666);
    margin-bottom: 32px;
    font-size: 16px;
}

.gc-contact-split__form {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    margin: 60px 0 80px;
    margin-left: -80px;
}

@media (max-width: 991.98px) {
    .gc-contact-split__bg {
        position: relative;
        width: 100%;
        height: 250px;
    }
    
    .gc-contact-split__form {
        margin-top: 24px;
    }
}


/* ─── ANIMACIONES — Fade in on scroll (global) ─── */
.gc-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.gc-animate.gc-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger para grillas (team, cards, etc.) */
.gc-animate-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gc-animate-children.gc-visible > *:nth-child(1) { transition-delay: 0.05s; }
.gc-animate-children.gc-visible > *:nth-child(2) { transition-delay: 0.10s; }
.gc-animate-children.gc-visible > *:nth-child(3) { transition-delay: 0.15s; }
.gc-animate-children.gc-visible > *:nth-child(4) { transition-delay: 0.20s; }
.gc-animate-children.gc-visible > *:nth-child(5) { transition-delay: 0.25s; }
.gc-animate-children.gc-visible > *:nth-child(6) { transition-delay: 0.30s; }
.gc-animate-children.gc-visible > *:nth-child(7) { transition-delay: 0.35s; }
.gc-animate-children.gc-visible > *:nth-child(8) { transition-delay: 0.40s; }

.gc-animate-children.gc-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* No animar el hero (ya visible al cargar) */
.gc-page-hero-block,
.gc-equipo-header-img {
    opacity: 1 !important;
    transform: none !important;
}


/* ─── ANIMACIONES — Fade in on scroll (global) ─── */
.gc-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.gc-animate.gc-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger para grillas (team, cards, etc.) */
.gc-animate-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gc-animate-children.gc-visible > *:nth-child(1) { transition-delay: 0.05s; }
.gc-animate-children.gc-visible > *:nth-child(2) { transition-delay: 0.10s; }
.gc-animate-children.gc-visible > *:nth-child(3) { transition-delay: 0.15s; }
.gc-animate-children.gc-visible > *:nth-child(4) { transition-delay: 0.20s; }
.gc-animate-children.gc-visible > *:nth-child(5) { transition-delay: 0.25s; }
.gc-animate-children.gc-visible > *:nth-child(6) { transition-delay: 0.30s; }
.gc-animate-children.gc-visible > *:nth-child(7) { transition-delay: 0.35s; }
.gc-animate-children.gc-visible > *:nth-child(8) { transition-delay: 0.40s; }

.gc-animate-children.gc-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* No animar el hero (ya visible al cargar) */
.gc-page-hero-block,
.gc-equipo-header-img {
    opacity: 1 !important;
    transform: none !important;
}


/* ═══ MOBILE FIXES ═══ */

/* 1. Menú hamburguesa alineado a la derecha */
@media (max-width: 991.98px) {
    .gc-header .navbar-toggler,
    .gc-header__hamburger {
        margin-left: auto !important;
        order: 99;
    }
    
    .gc-header__nav {
        justify-content: flex-end;
    }
}

/* 2. Botón CTA separado de la imagen en hero móvil */
@media (max-width: 991.98px) {
    .gc-page-hero-block .gc-btn {
        margin-bottom: 32px !important;
    }
}

/* 3. Contacto móvil: ocultar foto, info + form en col-12 */
@media (max-width: 991.98px) {
    .gc-contact-split__bg {
        display: none !important;
    }
    
    .gc-contact-split .col-lg-5,
    .gc-contact-split .col-lg-7 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .gc-contact-split__form {
        margin-left: 0 !important;
        margin-top: 24px;
    }
}
