@import url('https://fonts.googleapis.com/css2?family=Ms+Madi&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.contenedor {
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

p, li {
    font-size: 1.2rem;
    line-height: 1.4em;
}

h1, h2 {
    font-size: 2rem;
}

header, footer, body {
    background-color: #4A4A4A;
}

/* HEADER */

header > div {
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 20px 20px;
    align-items: center;
}

.logo {
    text-align: center;
    line-height: normal;
    position: relative;
    margin-top: -0.5rem;
}

.maxima {
    font-family: "Ms Madi", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    color: #6CF7DC;
    text-shadow: 
        -1px -1px 2px #0A6D58,  
        1px -1px 2px #0A6D58,  
        -1px  1px 2px #0A6D58,  
        1px  1px 2px #0A6D58;
}

.farma {
    font-weight: 400;
    margin-left: 0.4rem;
    font-size: 2rem;
}

.parafarmacia {
    letter-spacing: 0.3rem;
    font-size: 0.8rem;
    font-weight: 200;
    margin-top: -0.8rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.contacto {
    display: flex;
    flex-direction: column;
}

.contacto p {
    text-align: right;
    margin-bottom: 0.2em;
}

i {
    margin-right: 0.5em;
}

/* SECCIONES */

section {
    overflow: hidden;
}

section > div {
    display: flex;
}

.col-text {
    flex: 0 0 65%;
    padding: 60px;
}

.col-img {
    flex: 0 0 35%;
    background-size: cover;
    background-position: center;
    height: auto;
    width: 100%;
    box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.2);
}

.col-img.img1 {
    background-image: url("/wp-content/uploads/2025/03/crema.jpg");
}

.col-img.img2 {
    background-image: url("/wp-content/uploads/2025/03/tobillo-lesionado.jpg");
}

.col-img.img3 {
    background-image: url("/wp-content/uploads/2025/03/medicina-natural.jpg");
}

section h2 {
    margin-bottom: 0.5em;
}

.intro {
    background-color: rgb(24, 24, 24);
    color: #6CF7DC;
    text-align: center;
    font-size: 18px;
    background-image: url("/wp-content/uploads/2025/03/crema.jpg");
    background-size: cover;
    background-position: center;
    background-blend-mode:multiply;
}

.vision {
    background: linear-gradient(to right, #4A4A4A 50%, white 50%);
}

.vision > div {
    background-color: white;
}

.vision h2 {
    color: #0A6D58;
}

.plan {
    background: linear-gradient(to right, #6CF7DC 50%, #4A4A4A 50%);
}

.plan > div {
    background-color: #6CF7DC;
    border-bottom: 15px solid #0A6D58;
}

.plan h2 {
    color: #0A6D58;
}

.plan ul {
    margin: 1em 2em 1em 2em;
    margin-top: 1em;
} 

.plan ul li {
    margin-bottom: 5px;
}

.separador {
    margin-top: -15px;
    height: 15px;
    background: linear-gradient(to right, #0A6D58 50%, #00000000 50%);
}

/* FOOTER */

footer {
    color: white;
    padding: 10px 20px;
}

footer p {
    margin: 0;
    padding: 10px 20px;
    text-align: center;
}

footer div {
    padding: 10px 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

@media screen and (max-width: 768px) {
    header > div {
        flex-direction: column;
        gap: 1.5rem;
    }

    .parafarmacia {
        margin-top: -1rem;
    }

    .contacto p {
        text-align: center;
    }

    .col-text {
        padding: 4rem 2rem;
    }

    .col-text, .col-img {
        flex: 1 1 100%;
    }

    .col-img {
        min-height: 250px;
    }

    section {
        padding: 0;
    }

    section .contenedor, footer div {
        flex-direction: column;
    }

    footer .maxima {
        font-size: 2rem;
    }

    footer .farma {
        font-size: 1.3rem;
    }
    
}