* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
}

.container {
    width: 70%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Hero Section */
.hero {
    margin-bottom: 50px;
}

.hero-supertitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 0;
}

.hero-supertitle a {
    text-decoration: none;
    padding: 8px;
    margin-left: -8px;
    background: rgba(220, 220, 220, 0);
    border-radius: 8px;
    color: #666;
    transition: background 0.25s ease-in-out;
}

.hero-supertitle a:hover {
    background: rgba(220, 220, 220, 1);
    transition: background 0.25s ease-in-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-top: -8px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.intro {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    width: 60%;
}

.intro a {
    color: #1a1a1a;
}

.hero-links {
    margin-top: 16px;
}

.contact-link {
    text-decoration: none;
    padding: 8px;
    background: rgba(220, 220, 220, 0);
    border-radius: 8px;
    color: rgb(0, 0, 0);
    font-size: 1rem;
    transition: background 0.25s ease-in-out;
}

.contact-link:hover {
    background: rgba(220, 220, 220, 1);
    transition: background 0.25s ease-in-out;
}

/* Sections */
.section {
    margin-bottom: 50px;
}

.section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.section h2 + .subsection-header {
    margin-top: -16px;
}

/* Grid Layout */
.grid {
    display: grid;
    row-gap: 40px;
    column-gap: 16px;
    margin-bottom: 40px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Cards */
.card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.caption-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 10px;
    padding-left: 4px;
}

.caption-row-center {
    justify-content: center;
}

.caption {
    font-size: 0.875rem;
    color: #666;
}

/* Subsections */
.subsection {
    margin-bottom: 32px;
}

.subsection-header {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.subsection-header strong {
    font-weight: 700;
}

/* Footer */
.footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.footerText {
    font-size: 0.875rem;
    color: #888;
}

/* Card Subtitle */
.card-subtitle {
    font-size: 0.8rem;
    color: #888;
    padding-left: 4px;
    margin-top: 2px;
}

/* Link Outros */
.card .video-link {
    font-size: 0.8rem;
    color: #888;
    text-decoration: none;
    flex-shrink: 0;
}

.card .video-link:hover {
    color: #555;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .intro {
        width: 100%;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer p {
        font-size: 1.25rem;
    }
}

@media (max-width: 500px) {
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .caption-row {
        flex-direction: column;
    }
}
