/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    /* ✅ NOVO DEGRADÊ COM SUAS CORES */
    background: linear-gradient(135deg, #AC1B21 0%, #53ABCF 100%);
    min-height: 100vh;
}

/* Container principal */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Conteúdo centralizado */
.content {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Imagem principal */
.main-image {
    width: 100%;
    max-width: 400px;
    height: auto;   
}

/* Subtítulo */
.subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2e3133ff;
    margin-bottom: 20px;
}


/* Descrição */
.description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Botão de voltar */
.back-button {
    display: inline-block;
    padding: 12px 30px;
    background: #AC1B21;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    /* ✅ SOMBRA COM COR BASEADA NO SEU AZUL */
    box-shadow: 0 5px 15px rgba(83, 171, 207, 0.4);
}

.back-button:hover {
    transform: translateY(-2px);
}

/* Responsividade para tablets */
@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .subtitle {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .main-image {
        max-width: 350px;
    }
}

/* Responsividade para smartphones */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .content {
        padding: 25px 15px;
    }
    
    .subtitle {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .main-image {
        max-width: 280px;
        margin-bottom: 20px;
    }
    
    .error-image {
        max-width: 250px;
        margin-bottom: 20px;
    }
    
    .back-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Responsividade para telas muito pequenas */
@media (max-width: 320px) {
    .subtitle {
        font-size: 1.5rem;
    }
    
    .main-image {
        max-width: 240px;
    }
    
    .error-image {
        max-width: 200px;
    }
}

/* Animações suaves */
.content {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ✅ VARIAÇÕES ADICIONAIS DE DEGRADÊ PARA OUTROS ELEMENTOS */

/* Degradê alternativo para elementos especiais */
.gradient-alt {
    background: linear-gradient(90deg, #AC1B21 0%, #53ABCF 50%, #AC1B21 100%);
}

/* Degradê radial para efeitos especiais */
.gradient-radial {
    background: radial-gradient(circle, #AC1B21 0%, #53ABCF 100%);
}

/* Degradê vertical */
.gradient-vertical {
    background: linear-gradient(180deg, #AC1B21 0%, #53ABCF 100%);
}