/* Hero Styles - FarmaciaDG */

.hero-clinical {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

.hero-clinical .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image .image-placeholder {
    width: 500px;
    height: 350px;
    background-color: #e9ecef;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-weight: 600;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    /* Aumentado un poco para que se vea mejor centrado */
    height: auto;
    border-radius: 20px;
    border: 1px solid var(--brand-blue);
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-clinical {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-clinical .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-image .image-placeholder {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}