:root {
    --primary-color: #290D84;
    --secondary-color: #F0E438;
    --terciary-color: #55A92F;
    --quaternary-color: #FFFFFF;
    --quintenary-color: #000000;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Fira Sans", serif;
    font-weight: 200;
    font-style: normal;
    background: #F3F4DA;
}

.header {
    width: 200;
    height: 300px;
    position: center;
    overflow: hidden;
    margin-bottom: -60px;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

.header-overlay {
    position: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.6)
    );
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

.profile {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.profile-image-container {
    display: flex;
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 1.5rem;
}

.profile img {
    display: flex;
    width: 150px;
    height: 200px;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.5; }
}

.profile h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: var(--text-shadow);
    color: var(--terciary-color);
}

.profile p {
    color: var(--terciary-color);
    margin-bottom: 0.5rem;
    text-shadow: var(--text-shadow);
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.link {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 5rem;
    text-decoration: none;
    color: var(--quintenary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px var(--terciary-color);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.5s ease backwards;
}

.link.recepcao { background: var(--quaternary-color); }
.link.financeiro { background: var(--quaternary-color); }
.link.infantil { background: var(--quaternary-color); }
.link.instagram { background: var(--quaternary-color); }

.link:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.link span:last-child {
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.link:hover span:last-child {
    transform: translateX(5px);
}

.content-wrapper {
    background: var(--gradient);
    background-size: 300% 300%;
    animation: gradientMove 15s ease infinite;
    padding: 2rem 1rem;
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

footer {
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
    text-shadow: var(--text-shadow);
    padding-top: 2rem;
}

@media (max-width: 480px) {
    .header {
        height: 200px;
    }
    
    .profile h1 {
        font-size: 1.7rem;
    }
    
    .link {
        padding: 0.9rem 1.2rem;
    }
}
.logo{
    display: flex;
    width: 250px;
    height: 300px;
    margin: 0 auto 1.2rem;
}
