/* mulleres de conto */
*,
::before,
::after {
    box-sizing: border-box;
}

:root {
    /* Theme Colors - Sophisticated and timeless */
    --elegant-red: #880e4f;
    --deep-gold: #b8860b;
    --cream-bg: #fffbf0;
    --ink-black: #1a1a1a;
    --soft-gray: #f5f5f5;
    --text-dark: #333333;
    --accent-gold: #ffd700;

    --font-main: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background-color: var(--cream-bg);
    background-image: radial-gradient(circle at 50% 30%, #ffffff 0%, #fffbf0 100%);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* fondo */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    /* Evitar bloquear clics en móviles */
}

.motivo {
    position: absolute;
    font-size: 6rem;
    color: rgba(136, 14, 79, 0.05);
    user-select: none;
}

.motivo-1 {
    top: 10%;
    left: 5%;
    --rotation: -15deg;
    transform: rotate(var(--rotation));
    animation: float 15s ease-in-out infinite;
}

.motivo-2 {
    bottom: 15%;
    right: 10%;
    font-size: 10rem;
    --rotation: 10deg;
    transform: rotate(var(--rotation));
    animation: float 18s ease-in-out infinite reverse;
}

.motivo-3 {
    top: 25%;
    right: 12%;
    font-size: 8rem;
    --rotation: 25deg;
    transform: rotate(var(--rotation));
    animation: float 20s ease-in-out infinite 1s;
}

.motivo-4 {
    bottom: 35%;
    left: 8%;
    font-size: 4.5rem;
    --rotation: -8deg;
    transform: rotate(var(--rotation));
    animation: float 25s ease-in-out infinite 4s;
    color: rgba(136, 14, 79, 0.04);
}

.circle-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.05);
}

.circle-1 {
    top: 40%;
    left: 80%;
    width: 120px;
    height: 120px;
    animation: float 14s ease-in-out infinite;
}

.circle-2 {
    top: 70%;
    left: 15%;
    width: 180px;
    height: 180px;
    background: rgba(136, 14, 79, 0.03);
    animation: float 16s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(var(--rotation, 0deg));
    }

    25% {
        transform: translate(30px, -45px) rotate(calc(var(--rotation, 0deg) + 10deg));
    }

    50% {
        transform: translate(-25px, -65px) rotate(calc(var(--rotation, 0deg) - 8deg));
    }

    75% {
        transform: translate(-35px, -25px) rotate(calc(var(--rotation, 0deg) + 6deg));
    }
}

/* contido */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.poster-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(136, 14, 79, 0.1);
    border: 8px solid white;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out;
}

.poster-image {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    margin: 0 auto 30px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.names-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--elegant-red);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title-banner {
    background: var(--elegant-red);
    padding: 15px 40px;
    display: inline-block;
    position: relative;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(136, 14, 79, 0.3);
}

.main-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.1;
}

.description-container {
    max-width: 750px;
    margin: 30px auto;
    text-align: left;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

@media (min-width: 700px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-item {
    background: #fff9f0;
    padding: 16px 14px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:nth-child(1) {
    grid-column: 1 / -1;
}

@media (min-width: 700px) {
    .info-item:nth-child(1) {
        grid-column: span 1;
    }
    .info-item:nth-child(4) {
        grid-column: 1 / -1;
    }
}

.info-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--deep-gold);
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.info-value {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--elegant-red);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.btn-container {
    margin-top: 50px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--elegant-red);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(136, 14, 79, 0.2);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(136, 14, 79, 0.3);
    background: #6a0b3d;
}

.btn-secondary {
    background: var(--deep-gold);
}

.btn-secondary:hover {
    background: #946b08;
}

.btn-download {
    background: var(--accent-gold);
    color: #333;
}

.btn-download:hover {
    background: #e6c200;
}

.footer {
    padding: 60px 0 40px;
    background: var(--ink-black);
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

.copyright {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: #999;
}

.copyright a {
    color: var(--deep-gold);
    font-weight: 700;
    text-decoration: underline;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .names-container {
        flex-direction: column;
        gap: 10px;
    }

    .main-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .title-banner {
        padding: 10px 20px;
        max-width: 90vw;
    }

    /* Ocultar las alas del lazo en móvil para evitar scroll horizontal */
    .title-banner::before,
    .title-banner::after {
        display: none;
    }

    .btn-secondary {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .poster-card {
        padding: 20px;
    }
}