/* infotins_project/static/css/home_section.css */

/* Estilos da Seção Home TI (hero-section) */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.6); /* Overlay um pouco mais escuro para maior contraste */
    overflow: hidden; /* Garante que elementos animados não causem barras de rolagem indesejadas */
}

.hero-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 1500px;
    text-align: left;
    gap: 10px; /* Adiciona um gap maior entre as colunas para melhor espaçamento */
}

.hero-left-column{
width: 60%;
}
.hero-right-column {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 10px;
    /* Adicionando uma pequena animação de fade-in para as colunas */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.hero-left-column {
    animation-delay: 0.2s; /* Atraso para a coluna da esquerda */
}

.hero-right-column {
    justify-content: center;
    animation-delay: 0.4s; /* Atraso para a coluna da direita */
}

.hero-left-column h1 {
    font-size: 3.5em; /* Aumenta um pouco o tamanho do título */
    margin-bottom: 25px;
    text-align: left;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3); /* Sombra para o título */
}

.hero-left-column p {
    font-size: 1.3em; /* Aumenta um pouco o tamanho do parágrafo */
    margin-bottom: 35px;
    text-align: left;
    line-height: 1.6; /* Melhora a legibilidade */
}

.hero-left-column .btn {
    margin-top: 10px;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 8px; /* Cantos mais arredondados */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* Sombra para o botão */
}

/*
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid #3498db;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
    transition: all 0.4s ease;
    cursor: default;


    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-list .feature-item:nth-child(1) { animation-delay: 0.6s; }
.feature-list .feature-item:nth-child(2) { animation-delay: 0.7s; }
.feature-list .feature-item:nth-child(3) { animation-delay: 0.8s; }
.feature-list .feature-item:nth-child(4) { animation-delay: 0.9s; }
.feature-list .feature-item:nth-child(5) { animation-delay: 1.0s; }
.feature-list .feature-item:nth-child(6) { animation-delay: 1.1s; }


.feature-item:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    border-color: #5dade2;
}*/


.feature-list {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.feature-item {
font-size: 2.1em;
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
}

.feature-text {
    position: relative;
    z-index: 2;
}

.feature-circle {
    transform: scale(1.2); /* Aumenta 20% */
    transform-origin: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: visible;
}

.circle-path {
    fill: none;
    stroke: #FF3D00; /* Cor do traço - altere conforme necessário */
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 0;
}




/* Keyframes para a animação de Fade In Up (usado em várias partes) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px); /* Começa mais abaixo */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keyframes para o cursor piscando (mantido) */
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: rgba(255,255,255,.85); } /* Cor mais sólida para o cursor */
}

/* --- MEDIA QUERIES PARA RESPONSIVIDADE (Ajustes para home-section) --- */
@media (max-width: 768px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px; /* Reduz o gap em mobile */
    }

    .hero-left-column,
    .hero-right-column {
        min-width: unset;
        width: 100%;
        text-align: center;
    }

    .hero-left-column h1 {
        font-size: 1.5em; /* Ajuste para mobile */
        text-align: center;
    }

    .hero-left-column p {
        font-size: 1.1em; /* Ajuste para mobile */
        text-align: center;
    }

    .feature-list {
        justify-content: center;
    }

    #typing-effect-text {
        font-size: 1.6em; /* Reduz o tamanho da fonte para mobile */
    }
}