/* =========================
   Puertos (pt-*)
   ========================= */

.pt-page {
    background: #fff;
    min-height: 100vh;
}

.pt-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (min-width: 1024px) {
    .pt-container {
        padding: 0 64px;
    }
}

.pt-section {
    padding: 128px 0;
}

.pt-section--soft {
    background: #fafaf8;
}

.pt-center {
    text-align: center;
}

/* Kicker */
.pt-kicker {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .90);
    font-size: 12px;
    letter-spacing: .20em;
    text-transform: uppercase;
}

.pt-kicker--dark {
    color: rgba(0, 0, 0, .40);
}

/* Typography */
.pt-h2 {
    margin: 0;
    font-family: ui-serif, Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: rgba(0, 0, 0, .92);
}

.pt-h3 {
    margin: 0;
    font-family: ui-serif, Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: rgba(0, 0, 0, .92);
}

.pt-muted {
    margin: 0;
    color: rgba(0, 0, 0, .60);
    font-size: .9375rem;
    line-height: 1.7;
}

/* Hero */
.pt-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.pt-heroMedia {
    position: absolute;
    inset: 0;
}

.pt-heroMedia img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pt-heroOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .65), rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0));
}

.pt-heroInner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 64px;
}

.pt-heroTitle {
    margin: 0;
    max-width: 48rem;
    font-family: ui-serif, Georgia, "Times New Roman", serif;
    color: #fff;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1;
}

/* Intro */
.pt-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
}

.pt-introRight {
    color: rgba(0, 0, 0, .70);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.pt-introRight p {
    margin: 0 0 18px;
}

.pt-introRight p:last-child {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .pt-intro {
        grid-template-columns: 2fr 3fr;
    }
}

/* Wide image */
.pt-wide {
    padding: 64px 0;
}

.pt-wideMedia {
    aspect-ratio: 21 / 9;
    overflow: hidden;
}

.pt-wideMedia img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features */
.pt-features {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .pt-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pt-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pt-feature {
    display: grid;
    gap: 16px;
}

.pt-featureIcon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(168, 197, 209, .20);
    color: rgba(0, 0, 0, .60);
}

.pt-featureIcon svg {
    width: 20px;
    height: 20px;
}

/* Comunidades */
.pt-comms {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: left;
}

.pt-comm {
    border: 1px solid rgba(0, 0, 0, .10);
    padding: 40px;
    transition: border-color .25s ease;
}

.pt-comm:hover {
    border-color: rgba(0, 0, 0, .20);
}

.pt-commTitle {
    margin: 0 0 10px;
    font-family: ui-serif, Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, .92);
}

.pt-commText {
    margin: 0;
    color: rgba(0, 0, 0, .70);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* CTA */
.pt-cta {
    text-align: center;
}

.pt-ctaText {
    max-width: 720px;
    margin: 18px auto 0;
    color: rgba(0, 0, 0, .70);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.pt-btn {
    display: inline-block;
    margin-top: 32px;
    background: #0b0b0b;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    transition: background .25s ease;
    letter-spacing: .05em;
    font-size: .875rem;
}

.pt-btn:hover {
    background: rgba(0, 0, 0, .90);
}