/* =============================================
   HERO SECTION STYLES - MVI Saúde
   ============================================= */

/* Seção principal do hero */
.spiral-section {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 500px;
    overflow: hidden;
    margin-top: -1px !important;
    padding: 80px 0 60px !important;
    top: -1px;
    background-color: #065967 !important;
    background-image: url('../assets/images/fundo-secao1-home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* Container */
.spiral-section .container {
    position: relative;
    z-index: 2;
}

/* Título do Hero */
.hero-title {
    font-family: brandon-grotesque, "Brandon Grotesque", "Open Sans", sans-serif !important;
    font-size: clamp(1.7rem, 2.8vw, 2.4rem) !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    line-height: 1.15 !important;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

/* Subtítulo do Hero */
.hero-subtitle {
    font-family: "Open Sans", sans-serif !important;
    font-size: clamp(0.85rem, 1.2vw, 1rem) !important;
    font-weight: 400;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin-bottom: 0;
    letter-spacing: 0;
}

/* Coluna de texto */
.hero-text-col {
    padding-right: 1rem;
}

/* Coluna da imagem */
.hero-logo-col {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* Imagem do Hero - maior */
.spiral-logo-image {
    width: 105%;
    max-width: none;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center bottom;
    margin-top: 40px;
}

/* Responsividade para tablets */
@media (max-width: 991px) {
    .spiral-section {
        padding: 100px 0 40px !important;
        min-height: auto;
    }

    .hero-text-col {
        padding-right: 0;
        text-align: center;
    }

    .hero-logo-col {
        display: none !important;
    }

    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2rem) !important;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1rem) !important;
    }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .spiral-section {
        padding: 110px 0 30px !important;
    }

    .hero-text-col {
        text-align: left;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 1.9rem !important;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        text-align: left;
    }

    .hero-benefits {
        text-align: left;
    }

    .hero-benefits li {
        font-size: 0.95rem;
        text-align: left;
    }

    .hero-cta {
        display: block;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 0.85rem;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.3;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .spiral-section {
        padding: 110px 0 25px !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        text-align: left;
    }

    .hero-benefits li {
        font-size: 0.95rem;
    }

    .hero-cta {
        font-size: 0.8rem;
        padding: 12px 16px;
    }
}

/* Ajuste para telas muito grandes */
@media (min-width: 1920px) {
    .spiral-section {
        padding: 100px 0 80px !important;
    }

    .hero-title {
        font-size: 2.8rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
    }

    .spiral-logo-image {
        width: 115%;
    }
}

/* Hero Benefits List */
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 14px 0;
}

.hero-benefits li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #ffffff !important;
    font-size: 1rem;
    line-height: 1.3;
}

.hero-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffffff !important;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Hero CTA Button */
.hero-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 40px;
    font-size: 1.1rem;
    text-decoration: none;
    color: #ffffff !important;
    background-color: #007c8c !important;
    border-radius: 50px;
    border: 0.5px solid #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: #005f6b !important;
    transform: translateY(-2px);
}
