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

:root {
    --dg: #032D19;
    --lg: #65B307;
    --bg: #F2F2F2;
    --wh: #FFFFFF;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 14pt;
    color: var(--dg);
    font-family: 'Bellota';
    box-sizing: border-box;
}

a {
    color: var(--dg);
    text-decoration: none;
}

body {
    margin: auto;
    max-width: 1024px;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

header {
    top: 0px;
    display: flex;
    z-index: 1000;
    padding: 24px;
    flex-direction: row;
    align-items: center;
    background: var(--wh);
    justify-content: space-between;
}

#logo {
    max-width: 184px;
}

main {
    flex: 1;
}

section {
    gap: 48px;
    padding: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

article {
    padding: 0px;
}

article img {
    transition: 0.3s;
}

article img:hover {
    transform: scale(1.1);
}

.dg {
    background: var(--dg);
    border-radius: 0px 0px 12px 12px;
}

.dg p {
    color: var(--wh);
}

.dg button {
    background: var(--lg);
}

.wh {
    gap: 20px;
    padding: 48px;
    background: var(--wh);
    flex-direction: column;
    border-radius: 12px 12px 0px 0px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    color: var(--lg);
    font-size: 2.0rem;
    margin-bottom: 12px;
}

h2 {
    color: var(--lg);
    padding: 0px 48px;
    font-size: 1.4rem;
}

h3 {
    color: var(--lg);
    font-size: 1.4rem;
}

p {
    line-height: 150%;
    text-align: justify;
}

button {
    padding: 12px;
    cursor: pointer;
    color: var(--wh);
    transition: 0.3s;
    font-weight: bold;
    border-radius: 8px;
    background: var(--dg);
}

button i {
    color: var(--wh);
    margin-right: 8px;
    font-size: 1.1rem;
}

button:hover {
    transform: scale(1.05);
}

figure {
    width: 100%;
    padding: 24px;
    transition: 0.3s;
    border-radius: 12px;
    background: var(--wh);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

figure:hover {
    transform: translateY(-8px);
}

figure i {
    color: var(--lg);
    font-size: 1.5rem;
}

figcaption {
    cursor: default;
    margin-top: 8px;
    font-weight: bold;
    font-size: 0.8rem;
}

footer {
    display: flex;
    padding: 24px;
    align-items: center;
    background: var(--lg);
    justify-content: space-between;
}

footer p {
    color: var(--wh);
    font-size: 0.7rem;
}

footer p i {
    color: var(--wh);
    font-size: 0.8rem;
    margin-right: 8px;
}

footer a {
    color: var(--wh);
    font-size: 0.7rem;
    font-weight: bold;
}

form {
    gap: 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

input,
select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
}

@media only screen and (max-width: 480px) {

    #logo {
        max-width: 160px;
    }

    section {
        gap: 32px;
        padding: 32px;
        flex-direction: column;
    }

    .dg {
        padding-bottom: 40px;
    }

    .wh {
        padding: 32px;
    }

    h2 {
        padding: 0px 48px;
    }

    footer {
        gap: 12px;
        flex-direction: column;
    }

    #terapia {
        display: none;
    }

}