﻿.home-wrapper {
    min-height: 100vh;
    background: linear-gradient(180deg, #e8d5cf 0%, #dcc2bb 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

.home-content {
    max-width: 700px;
}

.home-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 25px;
    color: #3b2e2a;
}

.home-tag {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
}

.home-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5c4a46;
    margin: 0 auto;
    max-width: 600px;
}

.social-links {
    margin-top: 80px;
    display: flex;
    gap: 30px;
}

    .social-links a {
        font-size: 1.8rem;
        color: #5c4a46;
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            color: #b76e79;
            transform: translateY(-4px);
        }

.social-links a {
    font-size: 28px;
    margin: 0 12px;
    color: #3a2d27;
    transition: 0.3s ease;
}

    .social-links a:hover {
        transform: translateY(-4px);
        color: #000;
    }


.home-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.home-button {
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    background: #111;
    color: white;
    transition: 0.25s;
}

    .home-button:hover {
        transform: translateY(-2px);
        opacity: 0.9;
    }

    .home-button.whatsapp {
        background: #8FAF9C;
        color: white;
    }

.label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px; /* espacio entre elementos */
    text-align: center;
}

    .label h2 {
        font-family: 'Great Vibes', cursive;
        font-size: clamp(22px, 3vw, 32px);
        max-width: 220px;
        margin: 8px auto;
        line-height: 1.2;
        text-align: center;
        overflow-wrap: break-word;
        margin-top: 10%;
    }

    .label span {
        position: absolute;
        margin-top: 55%;
        font-size: clamp(7px, 1vw, 15px);
    }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

header {
    text-align: center;
    margin-bottom: 48px;
}

    header h1 {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        margin: 0;
        font-weight: 600;
    }

    header span {
        display: block;
        margin: 12px 0;
        color: var(--accent);
        letter-spacing: 2px;
        font-size: 1.2rem;
    }

    header p {
        margin-top: 16px;
        color: var(--muted);
    }

* {
    box-sizing: border-box;
}
iframe {
    width: 100%;
    height: 280px;
    border: none;
    border-radius: 12px;
}

footer {
    text-align: center;
    margin-top: 48px;
    color: var(--muted);
    font-size: 0.9rem;
}
.cta-button {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 28px;
    border-radius: 30px;
    background: #333;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

    .cta-button:hover {
        background: #000;
        transform: translateY(-2px);
    }