main .hiro .cont {
    display: none;
}

main .hiro {
    min-height: 12vh !important;
    background: #393073;
}

main .hiro header {
    position: relative;
    z-index: 500;
}

main .hiro .animated-bg {
    display: none;
}

.header {
    background: #393073;
    color: white;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -15%;
    width: 50%;
    height: 140%;
    background: radial-gradient(
        ellipse at center,
        rgba(87, 73, 140, 0.6) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.header::after {
    content: "";
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 45%;
    height: 120%;
    background: radial-gradient(
        ellipse at center,
        rgba(87, 73, 140, 0.5) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.star-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: inline-block;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

h1 {
    font-size: 2.2em;
    line-height: 1.4;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.subtitle {
    font-size: 1.1em;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.content {
    padding: 50px 40px;
}

.highlight-box {
    background: linear-gradient(135deg, #328ebf 0%, #00b5b4 50%, #463b7d 100%);
    background-size: 200% 200%;
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(242, 130, 33, 0.3);
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.6;
    animation: gradientMove 4s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.section {
    margin-bottom: 35px;
    line-height: 2;
    font-size: 1.1em;
    color: #333;
    text-align: justify;
}

.section p {
    margin-bottom: 20px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(
        135deg,
        rgba(0, 181, 180, 0.1) 0%,
        rgba(242, 130, 33, 0.1) 100%
    );
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(0, 181, 180, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 181, 180, 0.3);
    border-color: #00b5b4;
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #383172;
    margin-bottom: 10px;
}

.feature-text {
    color: #555;
    line-height: 1.6;
}

.footer {
    background: #f8f9fa;
    padding: 30px;
    text-align: center;
    color: #666;
    font-size: 0.95em;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.6em;
    }

    .header {
        padding: 30px 20px;
    }

    .content {
        padding: 30px 20px;
    }

    .highlight-box {
        font-size: 1.1em;
        padding: 20px;
    }

    .section {
        font-size: 1em;
    }
}
