@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital@0;1&display=swap');

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

:root {
  --bg-color: #ad627c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    color: rgb(255, 255, 255);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 0 0 50% 50%;
    transform: translateY(-50%);
}

.container {
    max-width: 480px;
    width: 100%;
    text-align: center;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
}

.profile-section {
    margin-bottom: 30px;
}

.profile-background {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 500px;
  background: linear-gradient(
    135deg,
    #f56094 0%,
    #e07a9c 40%,
    #ff9eb8 100%
  );
  z-index: 0;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.164);
} 

.profile-background2 {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 180%;
  background: #ffffff;
  border-radius: 50% 50% 0 0;
  height: calc(100vh);
  z-index: 0;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ffffff url('imgs/logo.JPG') no-repeat center;
    background-size: cover;
    border: 8px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    z-index: 4;
}

.logo-circle i {
    font-size: 50px;
    color: var(--bg-color);
}

.brand-name {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #ec8ea9, #f56094);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    max-width: 350px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.description::after {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    animation: shine 2.5s linear infinite;
}

@keyframes shine {
    0% { left: -50%; }
    100% { left: 100%; }
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 35px 0;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffe8f0a6;
    border: 1px solid #ad627c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ad627c;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    background: #ad627c;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(173, 98, 124, 0.3);
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 35px;
}

.link-button {
    padding: 16px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.link-button.primary {
    background: #ffe8f0a6;
    border: 1px solid #ad627c;
    color: #be788c;
    box-shadow: 0 2px 8px rgba(173, 98, 124, 0.2);
}

.link-button.primary:hover {
    background: #ad627c;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(173, 98, 124, 0.3);
}

.link-button.secondary {
    background: transparent;
    color: #ad627c;
    border: 2px solid #ad627c;
}

.link-button.secondary:hover {
    background: #ad627c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(173, 98, 124, 0.3);
}

.link-button.tertiary {
    background: #f8f8f8;
    color: #555;
    border: 1px solid #e0e0e0;
}

.link-button.tertiary:hover {
    background: #eeeeee;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.link-button i {
    font-size: 14px;
}

.footer {
    margin-top: 40px;
    font-size: 14px;
    color: #666;
}

.footer i {
    color: #ad627c;
    font-size: 12px;
}

/* Media queries refinadas para mobile (largura e altura) */
@media (max-width: 480px), (max-height: 700px) {
    .container {
        padding: 25px 15px;
    }

    .brand-name {
        font-size: 32px;
    }

    .description {
        font-size: 14px;
        max-width: 300px;
    }

    .logo-circle {
        width: 100px;
        height: 100px;
        border-width: 6px;
        margin-bottom: 20px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .link-button {
        font-size: 15px;
        padding: 14px 25px;
    }

    .footer {
        font-size: 12px;
        margin-top: 25px;
    }
}
