/* avoa marina: ceo, sol e herba (a base común vai en comun-espectaculos.css) */
*,
::before,
::after {
    box-sizing: border-box;
}

:root {
    --sky-blue: #e0f4ff;
    --grass-green: #a8e063;
    --bush-green: #56ab2f;
    --sun-yellow: #fff385;
    --cloud-white: #ffffff;
    --text-brown: #5d4037;
    --accent-orange: #ff9800;
    --accent-green: #4caf50;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--sky-blue);
    color: var(--text-brown);
    overflow-x: hidden;
    min-height: 100vh;
}

/* fondo fixo, nunca bloquea toques */
.background-elements,
.background-elements div {
    pointer-events: none;
}

.sun {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 100px;
    height: 100px;
    background: var(--sun-yellow);
    border-radius: 50%;
    box-shadow: 0 0 40px var(--sun-yellow);
    animation: pulse 4s ease-in-out infinite;
}

.cloud {
    position: absolute;
    background: var(--cloud-white);
    border-radius: 50px;
    opacity: 0.8;
}

.cloud::after,
.cloud::before {
    content: '';
    position: absolute;
    background: var(--cloud-white);
    border-radius: 50%;
}

.cloud-1 {
    top: 100px;
    left: 10%;
    width: 120px;
    height: 40px;
    animation: drift 20s linear infinite;
}

.cloud-2 {
    top: 200px;
    right: 20%;
    width: 150px;
    height: 50px;
    animation: drift 25s linear infinite reverse;
}

.grass {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--grass-green);
    z-index: -1;
}

.bushes {
    position: fixed;
    bottom: 100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--bush-green);
    border-radius: 50% 50% 0 0;
    opacity: 0.6;
    z-index: -2;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes drift {
    from {
        transform: translateX(-100px);
    }
    to {
        transform: translateX(calc(100vw + 100px));
    }
}

/* tarxeta: aire propio sobre a base común */
.poster-card {
    border-radius: 30px;
    border: 8px solid white;
    animation: aparecer 0.8s ease-out;
}

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

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

.title-banner {
    background: white;
    padding: 15px 40px;
    display: inline-block;
    position: relative;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.title-banner::before,
.title-banner::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    pointer-events: none;
}

.title-banner::before {
    left: -20px;
    border-width: 30px 20px 30px 0;
    border-color: transparent white transparent transparent;
}

.title-banner::after {
    right: -20px;
    border-width: 30px 0 30px 20px;
    border-color: transparent transparent transparent white;
}

.main-title {
    color: var(--text-brown);
}

.description {
    color: var(--text-brown);
}

.info-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-label {
    color: var(--accent-green);
}

.info-value {
    color: var(--text-brown);
}

.btn {
    background: var(--accent-orange);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 152, 0, 0.4);
    background: #f57c00;
}

.btn-secondary {
    background: var(--bush-green);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.btn-secondary:hover {
    background: #388e3c;
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.4);
}

.btn-download {
    background: var(--sun-yellow);
    color: var(--text-brown);
    box-shadow: 0 10px 20px rgba(255, 243, 133, 0.3);
}

.btn-download:hover {
    background: #fdd835;
    color: var(--text-brown);
    box-shadow: 0 15px 30px rgba(255, 243, 133, 0.4);
}

.footer {
    background: #0f0f1a;
}

.copyright {
    color: var(--sun-yellow);
}

.copyright a {
    color: white;
}

.copyright a:hover {
    color: var(--accent-orange);
}

@keyframes aparecer {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .title-banner::before,
    .title-banner::after {
        display: none;
    }
}
