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

* { box-sizing: border-box; }
html {
    font-size: 20px;
    line-height: 35px;
}
:root {
    --background: var(--ocean-10);
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background-color: var(--background);
    color: var(--stone-50);
}
hr {
    border: none;
    border-bottom: 10px dotted var(--ocean-40);
    max-width: 75px;
    margin: 50px auto;
}
img { max-width: 100%; }
img.image-container {
    object-fit: cover;
    width: 100%;
    min-width: 420px;
}
i {
    font-family: serif;
}
.work img, .insight img {
    object-fit: cover;
    width: 100%;
}
:where(article, section.with-aside) { 
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    flex-direction: row;
}
:where(article, section.with-aside) .content { 
    flex: 1 1 calc(70% - 20px);
}
:where(article, section.with-aside) .content > img {
    margin: 30px 0 0;
    border-radius: 20px;
}
:where(article, section.with-aside) aside {
    min-width: 280px;
    flex: 1 1 calc(30% - 20px);
}
:where(article, section.with-aside) aside .shell + .shell {
    margin-top: 20px;
}
img.border {
    padding: 10px;
    border-radius: 20px;
    border: 1px solid var(--ocean-40);
}

a, a:visited, a:active {
    text-decoration: none;
    color: var(--seaweed-10);
    transition: color .5s ease;
}
a:hover {
    text-decoration: underline;
}
blockquote {
    border-left: 1px solid var(--coral-40);
    margin: 0;
    padding: 5px 15px;
    color: var(--coral-40);
}
blockquote.alt {
    color: var(--tropic-40);
    border-left: 1px solid var(--tropic-40);
}
#page {
    max-width: 1280px;
    margin: 40px auto;
}
#header {
    margin-bottom: 100px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
nav {
    display: flex;
    align-items: center;
    gap: 5px;
}
nav a {
    display: block;
    padding: 5px 10px;
    border-radius: 20px;
    transition: .5s background-color, color ease;
}
nav a:hover {
    background-color: var(--ocean-30);
    color: var(--coral-60);
    text-decoration: none;
}
section+section {
    margin: 250px auto 250px;
}
.flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.flex.gap-10 {
    gap: 10px;
}
.flex.gap-80 { 
    gap: 80px; 
    row-gap: 40px;
}
.fifth { flex: 1 1 20% }
.quarter { flex: 1 1 calc(25% - 20px); }
.half { flex: 1 1 calc(50% - 20px); }
.two-third { flex: 1 1 calc(62% - 20px); }
.third { flex: 1 1 calc(33% - 20px); }
a.arrow {
    display: flex;
    text-align: right;
    margin-top: 15px;
    align-items: center;
    justify-content: flex-end;
}
a.arrow::after {
    content: '';
    display: block;
    background-image: url('/images/icons/read-more.svg');
    background-size: cover;
    height: 1.25em;
    width: 1.25em;
    margin-right: 10px;
    margin-left: 5px;
    transition: margin .25s ease;
}
a.arrow:hover::after {
    margin-right: 0;
    margin-left: 15px;
}
a.button, button {
    font-family: 'Manrope', sans-serif;
    background-color: var(--seaweed-10);
    color: var(--background);
    display: block;
    text-align: center;
    padding: 5px 15px;
    font-weight: 700;
    border-radius: 10px;
    margin-top: 15px;
    transition: background-color .5s ease;
    border: none;
}
a.button.fit {
    width: fit-content;
}
a.button.pill, button.pill { border-radius: 200px; }
a.button.pill:hover, button.pill:hover {
    background-color: var(--seaweed-20);
}
a.button.medium, button.medium {
    padding: 10px 30px;
}
a.button.white, button.white {
    background-color: var(--coral-60);
}
a.button.coral, button.coral {
    background-color: var(--coral-40);
}
a.button.tropic, button.tropic {
    background-color: var(--tropic-40);
}
a.button:hover, button:hover  {
    background-color: var(--seaweed-10);
    text-decoration: none;
    cursor: pointer;
}
.tile a.button:last-child, .tile button:last-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.mouse, h4, h5, footer {
    font-size: 12px;
    line-height: 20px;
}
.small, table, #header, nav, .social {
    font-size: clamp(14px, 0.75rem, 15px);
    line-height: 25px;
}
.regular, a.arrow {
    font-size: 1rem;
    line-height: 1.75rem;
}
.medium, blockquote, h3 {
    font-size: 1.25rem;
    line-height: 2.15rem;
}
.large, h2 {
    font-size: 1.7rem;
    line-height: 2.25rem;
}
.larger {
    font-size: 1.75rem;
    line-height: 2.5rem;
}
.largest {
    font-size: 2rem;
    line-height: 2.75rem;
}
.maximum, h1 {
    font-size: clamp(35px, 2.5vw, 50px);
    line-height: clamp(55px, 3.5vw, 70px);
}
.balance { text-wrap: balance; }
.spacer {
    height: 20px;
}
.gradient-text {
    background: linear-gradient(114.44deg, var(--coral-40) 0%, var(--tropic-40) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
h1, h2, h3, h4, h5 {
    color: var(--stone-60);
    margin: 0 0 5px;
}
h3 + p { margin-top: 0; }
h1 {
    font-weight: 300;
    margin: 0 0 30px 0;
}
h1.front-page {
    font-weight: 700;
    text-align: left;
    text-wrap: balance;
}
h4 { 
    text-transform: uppercase;
    color: var(--coral-40);
}
h5 {
    margin: 0;
}
.heading-with-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

article .content h2 { margin: 40px 0 5px; }
article .content h3 { margin-top: 25px 0 5px; }
article :is(h1, h2, h3, h4) + p {
    margin-top: 0;
}
article h1 {
    background: linear-gradient(45deg, #CFF7A7 0%, #F3C6B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.shell {
    background-color: var(--ocean-50);
    border-radius: 20px;
    padding: 1px;
    transition: background .5s ease;
    position: relative;
    overflow: hidden;
}
.shell::before {
    content: '';
    background: linear-gradient(114.44deg, var(--coral-40) 0%, var(--tropic-30) 100%);
    position: absolute;
    z-index: 0;
    inset: 0;
    border-radius: 19px;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.shell:hover::before { opacity: 1; }
.shell .tile, .panel {
    position: relative;
    border-radius: 19px;
    background-color: var(--background);
    padding: 15px;
    z-index: 10;
}
.panel {
    border: 1px solid var(--ocean-50);
    border-radius: 20px;
    z-index: auto;
}
.alert {
    display: flex;
    font-size: clamp(14px, 0.75rem, 15px);
    line-height: 25px;
    gap: 10px;
    align-content: flex-start;
    color: var(--stone-60);
}
.alert.info {
    border-left: 1px solid var(--info);
}
.shell .tile h4 {
    margin: 25px 0 10px;
}
.shell .tile img.top {
    border-radius: 10px 10px 5px 5px;
}

ul.tasks {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

ul.tasks li {
    display: flex;
    align-items: center;
}
ul.tasks li:not(:last-child) {
    margin-bottom: 5px;
}
ul.tasks.space-15 li:not(:last-child) {
    margin-bottom: 15px;
}
ul.tasks li::before {
    content: '';
    display: block;
    height: 25px;
    width: 25px;
    background-image: url('/images/icons/chevron.svg');
    background-size: cover;
}
ul.tasks.outlinks li::before {
    background-image: url('/images/icons/outlink.svg');
}
.issuer { color: var(--tropic-30); }
table {
    border-collapse: collapse;
}
table tr td, table tr th {
    text-align: left;
    border: 1px solid var(--ocean-30);
    padding: 10px;
    vertical-align: top;
}

footer {
    margin-top: 150px;
    color: var(--stone-30);
}
.socials, .benefits, .plans, .works, .insights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 20px;
}
.works, .insights {
    justify-content: flex-start;
}
.social { min-width: 220px; }
.benefits, .plans, .quotes {
    margin-top: 20px;
}
.benefits {
    align-items: stretch;
}
.benefit, .plan {
    min-width: 220px;
    align-self: stretch;
}
.plan {
    min-width: 300px;
}
.quote {
    min-width: 320px;
}
.quote .tile { height: 100%; }
.work {
    min-width: 340px;
    flex: 1 1 calc(33.3% - 20px);
    max-width: 640px;
}
.insight {
    min-width: 340px;
    width: 33.3%;
}
.work .tile, .plan .tile, .quote {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.quote { gap: 20px; }
:where(.benefit, .plan, .work) .shell, :where(.benefit, .plan, .work)  .tile {
    height: 100%;
}
.profile-mini {
    object-fit: cover;
    border-radius: 5px;
    border-bottom-left-radius: 10px;
    width: 50px;
    height: 50px;
}
.profile-mini.top-left {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 10px;
}
.social {
    border-top: 1px solid var(--ocean-40);
    padding-top: 10px;
    transition: border .5s ease;
}
.social:has(a:hover) {
    border-top: 1px solid var(--seaweed-10);
}

/* Logo animation */
.brands, .logos-mobile {
    margin-top: 20px;
}
.logos-mobile {
    display: none;
    overflow: hidden;
    margin-left: -15px;
    margin-right: -15px;
}
.logos-mobile img {
    height: 90px;
    max-width: none;
}
.logos-track, .logos-slide {
    text-wrap: nowrap;
}
.logos-slide {
    display: inline-block;
    animation: 15s slide linear infinite;
}
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Floating whatsapp*/
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}
.floating-whatsapp img {
    height: 50px;
}
.floating-whatsapp .whatsapp-text {
    display: none;
}
.trees-container {
    z-index: -1;
}
.trees {
    max-width: none;
    width: 140%;
    margin-left: -20%;
    margin-top: -140px;
}
/* Mobile styles */
@media screen and (max-width: 1320px) {
    #page {
        margin: 40px 15px;
    }
}

@media screen and (max-width: 720px) {
    html {
        font-size: 18px;
        line-height: 28px;
    }
    .logos-mobile {
        display: block;
    }
    .brands, .profile-front { display: none; }
    .hero-wrap {
        flex-direction: column;
    }
    .trees-container {
        min-width: 100vw;
        max-width: 100vw;
        width: 100vw;
        margin-left: -15px;
        overflow-x: hidden;
    }
    .trees {
        transform-origin: center;
        transform: scale(1.15);
        margin-top: 10%;
        margin-bottom: 10%;
    }
}
@media screen and (max-width: 580px) {
    .floating-whatsapp {
        position: fixed;
        bottom: 10px;
        right: 10px;
        left: 10px;
        border-radius: 15px;
        background-color: rgba(0, 0, 0, .5);
        backdrop-filter: blur(12px);
        color: var(--coral-60);
        display: flex;
        gap: 10px;
        align-items: center;
        padding: 15px;
        text-align: center;
    }
    .floating-whatsapp img { height: 30px; }
    .floating-whatsapp .whatsapp-text {
        display: block;
    }
}