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

:root {
    --bg-principal: #FFFFFF;
    --bg-suave: #F7F2EF;
    --nude-rosado: #CFA095;
    --texto-principal: #4A4A4A;
    --texto-secundario: #6F6F6F;
    --hover: #B88D82;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Libre Baskerville', serif;
    color: var(--texto-principal);
    background-color: var(--bg-principal);
    line-height: 1.8;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.content {
    text-align: center;
    max-width: 600px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    margin-bottom: 3rem;
}

.logo img {
    height: 80px;
    width: auto;
}

.tagline {
    font-size: 1.25rem;
    color: var(--nude-rosado);
    margin-bottom: 2rem;
    font-style: italic;
}

.description {
    font-size: 1rem;
    color: var(--texto-secundario);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Libre Baskerville', serif;
}

.btn-primary {
    background-color: var(--nude-rosado);
    color: var(--bg-principal);
}

.btn-primary:hover {
    background-color: var(--hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(207, 160, 149, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--nude-rosado);
    border: 2px solid var(--nude-rosado);
}

.btn-secondary:hover {
    background-color: var(--bg-suave);
    transform: translateY(-2px);
}

footer {
    margin-top: auto;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    font-size: 0.85rem;
    color: var(--texto-secundario);
}

@media (max-width: 768px) {
    .tagline {
        font-size: 1.1rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px;
    }

    .container {
        padding: 1.5rem;
    }
}
