/* =========================================
   RESET
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #FFEE93, #FF6B35);
    color: #2C3E50;
    min-height: 100vh;
    overflow-x: hidden;
}

/* =========================================
   CONTAINER PRINCIPAL
========================================= */
.sobre-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* =========================================
   HEADER
========================================= */
.sobre-header {
    text-align: center;
    margin-bottom: 40px;
}

.sobre-img-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #FF6B35;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.sobre-img-wrapper:hover {
    transform: scale(1.05) rotate(2deg);
}

.sobre-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sobre-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    margin-bottom: 10px;
    color: #004AAD;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.sobre-subtitle {
    font-size: 1.1rem;
    color: #2C3E50;
    opacity: 0.85;
}

/* =========================================
   TEXTO SOBRE
========================================= */
.sobre-texto {
    margin-bottom: 50px;
    line-height: 1.6;
    font-size: 1rem;
}

.sobre-texto h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: #FF6B35;
    margin-bottom: 15px;
}

.sobre-texto p {
    margin-bottom: 15px;
}

/* =========================================
   REDES SOCIAIS
========================================= */
.sobre-social {
    text-align: center;
    margin-bottom: 50px;
}

.sobre-social h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: #FF6B35;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1) rotate(10deg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* =========================================
   FOOTER
========================================= */
.sobre-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid rgba(0,0,0,0.1);
}

.footer-text {
    color: #2C3E50;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-emoji {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.heart {
    display: inline-block;
    animation: heartBeat 1.5s ease infinite;
    color: #e74c3c;
}

/* BOTÃO VOLTAR NO TOPO */
.btn-back {
    position: fixed;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B35, #FFEE93);
    color: #004AAD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.btn-back:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .btn-back {
        top: 10px;
        left: 10px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .btn-back {
        top: 8px;
        left: 8px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}


/* =========================================
   ANIMAÇÕES
========================================= */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* =========================================
   RESPONSIVO
========================================= */
@media (max-width: 768px) {
    .sobre-img-wrapper {
        width: 140px;
        height: 140px;
    }
    .sobre-title {
        font-size: 2.5rem;
    }
    .sobre-texto h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .sobre-img-wrapper {
        width: 120px;
        height: 120px;
    }
    .sobre-title {
        font-size: 2rem;
    }
    .sobre-texto h2 {
        font-size: 1.5rem;
    }
}
