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

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    padding: 10px;
}

.construction-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.stripes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(249, 168, 37, 0.03) 40px,
        rgba(249, 168, 37, 0.03) 80px
    );
    pointer-events: none;
    z-index: 0;
}

.card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px 25px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    text-align: center;
}

/* Marcas */
.brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.brand-logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.brand-logo.terra {
    width: 110px;
}

.brand-name {
    color: #eee;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.collab {
    display: flex;
    align-items: center;
    justify-content: center;
}

.and {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f9a825;
    text-shadow: 0 0 15px rgba(249, 168, 37, 0.5);
    animation: pulse-and 2s ease-in-out infinite;
}

.click-hint {
    color: #fff;
    font-size: 0.75rem;
    margin-bottom: 8px;
    font-style: italic;
}

.flags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 5px;
}

.flag {
    width: 28px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.flag:hover {
    transform: scale(1.2);
}

.flag-separator {
    color: #666;
    font-size: 1rem;
    margin: 0 4px;
}

/* Imagen Tato */
.image-section {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.tato-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #f9a825;
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.glow {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 168, 37, 0.3), transparent 70%);
    z-index: 0;
    animation: pulse 2s ease-in-out infinite;
}

/* Texto */
.text-content h1 {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.highlight {
    color: #f9a825;
    font-size: 1.4rem;
}

.speech-bubble {
    color: #fff;
    font-size: 0.8rem;
    background: rgba(249, 168, 37, 0.15);
    border: 1px solid rgba(249, 168, 37, 0.3);
    border-radius: 15px;
    padding: 5px 14px;
    margin-bottom: 10px;
    display: inline-block;
}

.progress-bar {
    width: 100%;
    max-width: 250px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto 6px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #f9a825, #ff6f00);
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(249, 168, 37, 0.5);
}

.percentage {
    color: #f9a825;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.details {
    display: flex;
    gap: 15px;
    justify-content: center;
    color: #999;
    font-size: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

/* Animaciones */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

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

@keyframes pulse-and {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Responsive Celulares */
@media (max-width: 500px) {
    body { padding: 5px; }
    .card { padding: 12px 10px; }
    .brands { gap: 10px; }
    .brand-logo { width: 55px; height: 55px; }
    .brand-logo.terra { width: 85px; }
    .brand-name { font-size: 0.65rem; }
    .and { font-size: 1.8rem; }
    .flag { width: 22px; height: 15px; }
    .tato-img { width: 90px; height: 90px; }
    .glow { width: 90px; height: 90px; }
    .text-content h1 { font-size: 1rem; }
    .highlight { font-size: 1.1rem; }
    .speech-bubble { font-size: 0.7rem; padding: 4px 10px; }
    .details { gap: 10px; font-size: 0.65rem; }
}

/* Responsive Desktop grandes */
@media (min-width: 768px) {
    .card { padding: 20px 35px; }
    .brand-logo { width: 85px; height: 85px; }
    .brand-logo.terra { width: 120px; }
    .tato-img { width: 120px; height: 120px; }
    .glow { width: 120px; height: 120px; }
    .text-content h1 { font-size: 1.4rem; }
    .highlight { font-size: 1.6rem; }
    .flag { width: 32px; height: 22px; }
}
