.hero {
    position: relative;
    margin: 3vw 6vw;
    width: 88vw;
    height: 70vh;
    background: url('/../media/jpg/rad-vasc-medical-banner1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    border-radius: 16px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 30%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 60vw;
    padding: 0 6vw;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: .5vw;
}

.hero-subtitle {
    font-size: 1vw;
}

.hero-title {
    font-size: 3vw;
    font-weight: 700;
}

.hero-description {
    font-size: 1vw;
    font-weight: 500;
}

.hero-btn {
    display: inline-block;
    background: #F36C30;
    padding: 1vw 2vw;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1vw;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #d85a25;
    transform: translateY(-2px);
}

.with-bar {
    position: relative;
    padding-left: 16px;
}

.with-bar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background: var(--blueLight);

}



@media (max-width: 996px) {
    .hero-overlay {
        background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.589) 80%,
        rgba(0, 0, 0, 0.3) 90%,
        rgba(0, 0, 0, 0.1) 100%
    );
    }

    .hero-content {
        max-width: 100%;
        padding: 30vw 6vw 6vw 6vw;
        gap: 3vw;
    }

    .hero-subtitle{
        font-size: 4vw;
    }
    .hero-description{
        font-size: 4vw;
    }

    .hero {
        height: auto;
    }

    .hero-title {
        font-size: 5vw;
    }
}

.about-section {
    margin: 6vw;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 6vw;
}

.about-photos {
    flex: 0 0 40%;
    display: flex;
    gap: 1vw;
    height: 30vw;
}

.photo-col {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    flex: 1;
}

.photo-col-left .photo-item:first-child {
    flex: 1.4;
}
.photo-col-left .photo-item:last-child {
    flex: 1;
}

.photo-col-right .photo-item:first-child {
    flex: 1;
}
.photo-col-right .photo-item:last-child {
    flex: 1.4;
}

.photo-item {
    border-radius: 14px;
    overflow: hidden;
    min-height: 0;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.photo-item:hover img {
    transform: scale(1.04);
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.about-label {
    font-size: 1vw;
    color: var(--grey);
    font-weight: 500;
}

.about-title {
    font-size: 3vw;
    font-weight: 700;
    color: var(--blue);
}

.about-description {
    font-size: 1vw;
    color: var(--grey);
}

.about-description strong {
    color: var(--blue);
}

@media (max-width: 996px) {
    .about-container {
        flex-direction: column;
        gap: 6vw;
    }

    .about-section {
        margin: 12vw 6vw;
    }

    .photo-col {
        gap: 3vw;
    }
    .about-photos {
        gap: 3vw;
    }

    .about-photos {
        flex: unset;
        width: 100%;
        height: 80vw;
    }

    .about-label {
        font-size: 4vw;
    }

    .about-title {
        font-size: 6vw;
    }

    .about-description {
        font-size: 4vw;
    }

    .about-content {
        gap: 3vw;
    }
}


/* ===== OUR SERVICES ===== */
.services-section {
    padding: 0 6vw;
    overflow: hidden;
}

.services-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6vw;
    margin-bottom: 2.5vw;
}

.services-label {
    font-size: 1vw;
    color: var(--grey);
    font-weight: 500;
}

.services-title {
    font-size: 3vw;
    font-weight: 700;
    color: var(--blue);
}

.services-subtitle {
    font-size: 1vw;
    color: var(--grey);
}

/* Card */
.service-card {
    display: flex;
    flex-direction: column;
    gap: 0.8vw;
    cursor: grab;
}

.service-card-img {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.04);
}

/* Botón + */
.service-plus-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.service-plus-btn:hover {
    background: var(--blueLight);
    color: var(--white);
    transform: rotate(90deg);
}

.service-card-title {
    font-size: 1vw;
    font-weight: 700;
    color: var(--blue);
}

.service-card-desc {
    font-size: 1vw;
    color: var(--grey);
}

@media (max-width: 996px) {
    .services-section {
        padding: 6vw;
    }

    .services-header {
        gap: 3vw;
        margin-bottom: 6vw;
    }
 
    .services-label {
        font-size: 4vw;
    }

    .services-title {
        font-size: 6vw;
    }

    .services-subtitle {
        font-size: 4vw;
    }

    .service-card-title {
        font-size: 4vw;
    }

    .service-card-desc {
        font-size: 4vw;
    }

    .service-card {
        gap: 3vw;
    }
}


/* ===== WHY CHOOSE US ===== */
.choose-section {
    padding: 6vw 6vw 0vw 6vw;
}

.choose-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6vw;
    margin-bottom: 3vw;
}

.choose-label {
    font-size: 1vw;
    color: var(--grey);
    font-weight: 500;
}

.choose-title {
    font-size: 3vw;
    font-weight: 700;
    color: var(--blue);
}

.choose-subtitle {
    font-size: 1vw;
    color: var(--grey);
}

/* Cards compartidas desktop + swiper */
.choose-card {
    width: 30%;
    background-color: var(--blueLight2);
    border-radius: 16px;
    padding: 2vw;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.choose-card-top {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.choose-num {
    flex-shrink: 0;
    width: 2.2vw;
    height: 2.2vw;
    background: var(--blueLight);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75vw;
    font-weight: 700;
}

.choose-card-title {
    font-size: 1vw;
    font-weight: 700;
    color: var(--blue);
}

.choose-card-desc {
    font-size: 1vw;
    color: var(--grey);
}

/* --- Grid desktop: fila 1 = 3 cols, fila 2 = 2 cols centradas --- */
.choose-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5vw;
}

/* Swiper only visible on mobile */
.choose-swiper {
    display: none;
}

/* --- Responsive --- */
@media (max-width: 996px) {
    .service-card-img {
        height: 60vw;
    }
    .choose-section {
        padding: 12vw 6vw;
    }

    .choose-header {
        gap: 3vw;
        margin-bottom: 6vw;
    }

    .choose-label {
        font-size: 4vw;
    }

    .choose-title {
        font-size: 6vw;
    }

    .choose-subtitle {
        font-size: 4vw;
    }

    /* Ocultar grid, mostrar swiper */
    .choose-grid {
        display: none;
    }

    .choose-swiper {
        display: block;
    }

    .choose-card {
        width: 100%;
        border-radius: 14px;
        padding: 6vw;
        gap: 3vw;
        height: 100%;
    }

    .choose-card-top {
        gap: 3vw;
        align-items: flex-start;
    }

    .choose-num {
        width: 9vw;
        height: 9vw;
        font-size: 3.5vw;
        flex-shrink: 0;
    }

    .choose-card-title {
        font-size: 4vw;
    }

    .choose-card-desc {
        font-size: 4vw;
    }
}


/* ===== CTA BANNER ===== */
.ctabanner-section {
    padding: 6vw 6vw 0vw 6vw;
}

.ctabanner-container {
    height: 60vh;
    display: flex;
    align-items: center;
    gap: 6vw;
    overflow: hidden;
}

/* --- Columna texto (izquierda) --- */
.ctabanner-content {
    flex: 0 0 36%;
    display: flex;
    flex-direction: column;
    gap: 1.2vw;
}

.ctabanner-label {
    font-size: 0.85vw;
    color: var(--grey);
    font-weight: 500;
}

.ctabanner-title {
    font-size: 2.6vw;
    font-weight: 700;
    color: var(--blue);
}

.ctabanner-desc {
    font-size: 0.9vw;
    color: var(--grey);
}

/* --- Mosaico (derecha) --- */
.ctabanner-mosaic {
    flex: 1;
    position: relative;
    height: 20vw;
}

/* Cuadros decorativos */
.mosaic-deco {
    position: absolute;
    border-radius: 10px;
}

.mosaic-deco--blue  { background-color: var(--blueLight); }
.mosaic-deco--light { background-color: var(--blueLight2); }

.mosaic-deco--sm { width: 3.5vw;  height: 3.5vw; }
.mosaic-deco--md { width: 5vw;    height: 5vw; }
.mosaic-deco--lg { width: 7vw;    height: 7vw; }

/* Fotos del mosaico */
.mosaic-img {
    position: absolute;
    border-radius: 14px;
    overflow: hidden;
}

.mosaic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Posiciones individuales de cada foto */
.mosaic-img--a {
    width: 10vw;
    height: auto;
    top: 18%;
    left: 5%;
}

.mosaic-img--b {
    width: 10vw;
    height: auto;
    top: 50%;
    left: 30%;
}

.mosaic-img--c {
    width: 10vw;
    height: auto;
    bottom: 40%;
    left: 40%;
}

.mosaic-img--d {
    width: 8vw;
    height: auto;
    bottom: 50%;
    right: 0%;
}

.mosaic-img--e {
    width: 9vw;
    height: auto;
    bottom: 0%;
    right: 0%;
}

/* --- Responsive --- */
@media (max-width: 996px) {
    .ctabanner-section {
        padding: 0 6vw;
    }

    .ctabanner-container {
        flex-direction: column;
        align-items: flex-start;
        min-height: unset;
    }

    .ctabanner-content {
        flex: unset;
        width: 100%;
        gap: 4vw;
    }

    .ctabanner-label {
        font-size: 4vw;
    }

    .ctabanner-title {
        font-size: 6vw;
    }

    .ctabanner-desc {
        font-size: 4vw;
    }

    /* Ocultar mosaico en mobile */
    .ctabanner-mosaic {
        display: none;
    }
}


/* ===== CONTACT US ===== */
.contact-section {
    padding: 3vw 6vw 5vw;
}

/* Header centrado */
.contact-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8vw;
    margin-bottom: 3vw;
}

.contact-label {
    font-size: 1vw;
    color: var(--grey);
    font-weight: 500;
}

.contact-title {
    font-size: 3vw;
    font-weight: 700;
    color: var(--blue);
}

.contact-subtitle {
    font-size: 1vw;
    color: var(--grey);
    line-height: 1.7;
}

/* Grid de 3 tarjetas */
.contact-locations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5vw;
}

/* Cada location card */
.location-card {
    background-color: var(--blueLight2);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.location-card-header {
    display: flex;
    align-items: center;
    gap: 0.8vw;
    padding: 1.2vw 1.5vw;
}

.location-pin {
    flex-shrink: 0;
    width: 2.2vw;
    height: 2.2vw;
    background: var(--blueLight);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85vw;
}

.location-address {
    font-size: 1vw;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.3;
}

/* Contenedor del mapa */
.location-map {
    width: 100%;
    height: 14vw;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* --- Responsive --- */
@media (max-width: 996px) {
    .contact-section {
        padding: 12vw 6vw;
    }

    .contact-header {
        gap: 3vw;
        margin-bottom: 6vw;
    }

    .contact-label {
        font-size: 4vw;
    }

    .contact-title {
        font-size: 8vw;
    }

    .contact-subtitle {
        font-size: 4vw;
    }

    .contact-locations {
        grid-template-columns: 1fr;
        gap: 5vw;
    }

    .location-card-header {
        gap: 3vw;
        padding: 4vw 5vw;
    }

    .location-pin {
        width: 9vw;
        height: 9vw;
        font-size: 4vw;
    }

    .location-address {
        font-size: 4vw;
    }

    .location-map {
        height: 55vw;
    }
}
