:root {
    --pink: #ff5a9d;
    --pink-light: #ffe1ee;
    --dark: #201a1d;
    --cream: #fff8f5;
    --text: #3a2e33;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text);
    background: var(--cream);
}

a {
    color: inherit;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--pink);
    color: #fff;
}

.site-header .brand {
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    color: #fff;
}

.lang-switcher {
    display: flex;
    gap: 0.75rem;
}

.lang-switcher a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.lang-switcher a.is-active {
    color: #fff;
    font-weight: 700;
}

.hero {
    position: relative;
    height: min(80vh, 640px);
    overflow: hidden;
}

.hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero__slide.is-active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(32, 26, 29, 0.35), rgba(32, 26, 29, 0.55));
}

.hero__logo {
    max-width: 180px;
    height: auto;
}

.hero__tagline {
    color: #fff;
    font-size: 1.4rem;
    max-width: 32rem;
    margin: 0;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}

.button--whatsapp {
    background: #25d366;
    color: #fff;
}

.section {
    max-width: 42rem;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
    text-align: center;
}

.section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.section--accent {
    max-width: none;
    background: var(--pink-light);
}

.section--accent > * {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.prose {
    white-space: pre-line;
    line-height: 1.7;
    text-align: left;
}

.social-label {
    margin-top: 2rem;
    font-weight: 700;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
}

.site-footer {
    background: var(--pink);
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    padding: 1.75rem 1rem;
    font-size: 0.85rem;
    line-height: 1.6;
}

.site-footer p {
    margin: 0.25rem 0;
}
