  :root {
            --primary-blue: #0033FF;
            --bg-light: #F0F4FF;
            --text-dark: #0022AA;
            --text-muted: #4466CC;
            --white: #FFFFFF;
        }

.container-hero-adv {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    margin: 0 auto;
}

        /* Lado Esquerdo - Texto */
.content-left {
    height: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    background: #E5EAFF;
    padding: 40px;
    box-sizing: border-box;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    min-width: 385px;
}

        .content-left h1 {
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
            margin:0 0 24px;
            text-transform: uppercase;
        }

.content-left h1 img {
    height: 25px;
}

        .content-left p {
            line-height: 1.5;
            margin-bottom: 24px;
        }

        .content-left .sub-text {
            line-height: 1.4;
            margin-bottom: 32px;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            color: #fff;
            text-decoration: none;
            padding: 12px 12px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            transition: transform 0.2s, background-color 0.2s;
            gap: 12px;
        }

        .cta-button:hover {
          color: #FFF;
          text-decoration: none;
      }

       
        /* Lado Direito - Cards */
        .speakers-grid {
            display: flex;
            gap: 15px;
            height: 100%;
            max-height:600px;
        }

        .speaker-card {
            flex: 1;
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            transition: flex 0.5s ease;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }


        .speaker-card:hover {
          {#flex: 1.5;#}
        }

        .speaker-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.8);
            transition: filter 0.3s;
        }

        .speaker-card:hover img {
            filter: brightness(1);
        }

        .speaker-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            color: var(--white);
            text-align: center;
        }

    .speaker-info h3 {
        font-size: 18px;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 8px;
        line-height: 1.1;
        text-align: right;
    }

        .speaker-info p {
            font-size: 14px;
            opacity: 0.8;
            line-height: 1.3;
            text-align: right;
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .container-hero-adv {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .content-left {
                padding-right: 0;
            }
            .speakers-grid {
                height: 500px;
            }
            .cta-button {
                margin-bottom: 40px;
            }
        }

@media (max-width: 600px) {

    .speakers-grid {
        display: flex;
        gap: 6px;
        height: auto;
        max-width: 100%;
        margin: 0 auto;
    }
  
  .speaker-info {
    padding: 12px;
}
  
  .speaker-info h3 {
    font-size: 11px;
    margin: 0;
}

.speaker-info p {
    font-size: 8px;
    font-weight: 500;
}
  
      .content-left {
        padding: 20px 20px 0;
        box-sizing: border-box;
    }
  
  .content-left h1{
    font-size:32px;
  }

    .speaker-card {
        aspect-ratio: 3 / 4;
        width: 100%;
    }
  
  .speaker-card img {
    object-position: top;
  }
  
  .content-left {
    min-width: 240px;
}

}