* {
    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-suave);
    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: 2rem;
}

.logo img {
    height: 60px;
    width: auto;
    opacity: 0.7;
}

.icon {
    margin-bottom: 2rem;
}

.icon svg {
    color: var(--nude-rosado);
    opacity: 0.5;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--texto-principal);
    margin-bottom: 1.5rem;
}

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

.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;
    background-color: var(--nude-rosado);
    color: var(--bg-principal);
}

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

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

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .logo img {
        height: 50px;
    }

    .icon svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .logo img {
        height: 40px;
    }

    .icon svg {
        width: 50px;
        height: 50px;
    }

    .container {
        padding: 1.5rem;
    }
}
