/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: start;
    text-align: start;
    padding: 0;
}

/* Caixa do conteúdo central */
.hero-content {
    background: transparent;
    padding: 0 0 0 0;
    width: 100%;
    box-shadow: none;
    transition: transform 0.3s ease-in-out;
}

/* Ajustando subtítulo */
.subtitle {
    font-size: 0.875rem; /* text-sm */
    letter-spacing: 0.25em; /* tracking-widest */
    margin-bottom:15px ;
    width: 50%;
    font-weight: 400;
    color: var(--first-color);
}
/* Animação do texto digitando */
.typing-text {
    display: flex;
    align-items: center;
    height: 23px;
    width: 250px;
    white-space: nowrap;
    font-weight: var(--font-semi-bold);
    color: var(--neon-green);
    overflow: hidden;
    animation:
        typing 3s steps(30, end) infinite;
}

.home {
    position: relative;
    row-gap: 5rem;
    padding: 6rem 0 5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .home-data {
    align-self: center;
    margin-top: 58px;

  }
  .home-title {
    font-size: var(--biggest-font-size);
    margin-bottom: var(--mb-3);
  }
  .home-title-color {
    color: var(--title-color);
  }
  .home-social {
    position: absolute;
    right: 0;
    top: 20%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    padding: 2rem 0;
  }
  .home-social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

  }
  .home-social-icon:hover {
    color: #9e7ddb;
  }

  /* Efeito de brilho ao passar o mouse */
  .home-social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: width 0.4s ease, height 0.4s ease, opacity 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.home-social-icon:hover::before {
    width: 150%;
    height: 150%;
    opacity: 1;
}

/* Efeito de elevação ao passar o mouse */
.home-social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Efeito ao clicar */
.home-social-icon:active {
    transform: scale(0.92);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Ícones internos */
.home-social-icon i {
    font-size: 1.4rem;
    transition: color 0.3s ease, transform 0.3s ease;
    color: var(--background);
    z-index: 1;
}
.home-social-icon:hover i { color: #887145; }

.home-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 260px;
}
@media (max-width: 768px) {
    .hero {
        padding: 0 20px;
    }
}

@media screen and (max-width: 767px) {
    .home-img {
        display: none;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; transform: translate(-50%, -5px); }
    100% { opacity: 0.7; }
}

@media (max-width: 800px) {
    .hero h1 {
        font-size: 3em; /* Aumenta um pouco mais o título principal em telas menores */
    }

    .home-social{

    }
    .subtitle{
        width: 80%;
    }
    .home-social-icon {
        width: 30px;
        height: 30px; }

    /* Efeito de elevação ao passar o mouse */
    .home-social-icon:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    /* Ícones internos */
    .home-social-icon i {
        font-size: 1rem;
        transition: color 0.3s ease, transform 0.3s ease;
        z-index: 1;
}
    }
