/* ===========================
   IAG HERO - ITAQUI AGORA
   =========================== */

.iag-hero {
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0b2a4a, #0e4c7a);
    color: #fff;
    padding: 60px 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Efeito de luz suave no fundo */
.iag-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    filter: blur(40px);
}

/* Container */
.iag-hero-container {
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 2;
}

/* Conteúdo */
.iag-hero-content {
    max-width: 700px;
}

/* Título principal */
.iag-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 15px 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

/* Subtítulo */
.iag-hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Botões */
.iag-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.iag-hero-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
    font-size: 15px;
}

/* Botão primário */
.iag-hero-btn.primary {
    background: #ffcc00;
    color: #000;
}

.iag-hero-btn.primary:hover {
    background: #ffd633;
    transform: translateY(-2px);
}

/* Botão secundário */
.iag-hero-btn.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
}

.iag-hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* RESPONSIVO */
@media (max-width: 768px) {

    .iag-hero {
        min-height: 360px;
        padding: 40px 15px;
    }

    .iag-hero-title {
        font-size: 32px;
    }

    .iag-hero-subtitle {
        font-size: 16px;
    }

    .iag-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .iag-hero-btn {
        width: 100%;
        text-align: center;
    }
}