@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "DM Sans", Arial, sans-serif;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

 
p, ul, li {
    font-size: 25px;
    color: #000;
} 

/* Container Pai (Pós-Hero) */
.hero-ir-with-elos {
    background-color: #ECCE53; /* Cor amarela do figma */
    position: relative;
    min-height: 500px; /* Aumentei um pouco para garantir espaço vertical */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 0; /* Aumentei o padding para afastar braços das bordas */
    z-index: 10;
}

/* Base Comum para os Pseudo-Elementos */
.hero-ir-with-elos::before,
.hero-ir-with-elos::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    /* Caminho para a tira vertical de elos */
    background-image: url('../img/doe/corrente_02.svg'); 
    
    /* FORÇA A REPETIÇÃO APENAS VERTICALMENTE */
    background-repeat: repeat; 
    
    /* AJUSTE CRUCIAL:
       A tira deve ocupar 100% da altura do pseudo-elemento (que é 80% da seção)
       e ter uma largura fixa (ex: 150px) para não distorcer. */
    background-size: 350px 100%; 
    
    /* Configurações visuais do design */
    opacity: 0.8; 
    z-index: 1; /* Atrás de tudo */
    pointer-events: none;
}

/* Elos da Esquerda (::before) */
.hero-ir-with-elos::before {
    left: -40px;
    top: 370px;
    width: 55vw;
    height: 70%;
}

/* Elos da Direita (::after) */
.hero-ir-with-elos::after {
    right: -50px;
    top: 175px;
    
    width: 55vw;
    height: 85%;
}


.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1.2fr;
    align-items: center;
    justify-content: space-around;
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
}

#hero-left {
	position: relative;
    top: -100px;
}

#hero-right {
	position: relative;
    top: 100px;
}

/* Textos */
.hero-title, .hero-subtitle {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    color: #2A274D;
    line-height: 1.1;
}

.hero-title { 
	font-size: clamp(32px, 4vw, 70px);
    text-align: left; 
}

.hero-subtitle { 
	font-size: clamp(32px, 4vw, 70px);
    text-align: left;
    top: 370px;
}

/* Info da Aluna */
.aluna-info {
	position: relative;
    top: -100px;
    color: #2A274D;
}

.aluna-name {
    display: block;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
}

.aluna-curso {
    display: block;
    font-weight: 400;
    font-size: 20px;
    color: #fff !important;
    opacity: 0.8;
}

#hero-center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-geovanna {
    width: auto;
    max-height: 500px;
    z-index: 2;
}

.info-ir {
    padding: 80px 0;
    background-color: #fff;
    color: #31306C; /* c_blue_3 */
    font-family: "DM Sans", sans-serif;
    max-width: 1100px;
}

.info-ir-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #31306C;
}

.info-ir-intro p {
    line-height: 1.6;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    }

.info-ir-cta-header {
    margin: 60px 0 40px;
}

.info-ir-subtitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #31306C;
}

.info-ir-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    margin-top: 40px;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h4 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
}

.info-block ul {
    list-style: disc;
    padding-left: 20px;
    margin: 15px 0;
    color: #000;
}

.info-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.btn-yellow-ir, .btn-yellow-outline-ir {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    width: fit-content;
    transition: all 0.3s ease;
}

.btn-yellow-ir {
    background-color: #ECCE53;
    color: #31306C;
}

.btn-yellow-outline-ir {
    border: 2px solid #ECCE53;
    background: transparent;
    color: #31306C;
}

.highlight-bubble {
    background-color: #F1F1F1;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.highlight-bubble::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 40px;
    border-width: 20px 20px 0 0;
    border-style: solid;
    border-color: #F1F1F1 transparent transparent transparent;
}

.highlight-bubble h3 {
    font-size: 35px;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.check-list { /* Adicionei o ponto aqui caso tenha faltado no seu arquivo */
    list-style: none;
    padding: 0; /* Boa prática para zerar o espaçamento padrão da ul */
}

.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 25px;
    font-size: 25px;
    line-height: 1.4;
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    
    /* A MÁGICA ESTÁ AQUI: Trocamos o top: 0; por top: 5px; */
    top: 5px; 
    
    background-color: #28a745;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.divider-elos {
    width: 100%;
    height: 110px; 
    background-image: url('../img/doe/corrente_02.svg'); 
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 100%;
    margin: 20px 0;
    opacity: 0.8; 
}

.passo-a-passo-ir {
    padding: 80px 0;
    color: #31306C;
    font-family: "DM Sans", sans-serif;
}

.passo-titulo {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
}

.passo-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.passo-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

/* Linha conectora entre os números (opcional, mas fica bonito) */
.passo-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: calc(100% - 10px);
    background-color: #f0f0f0;
    z-index: 1;
}

.passo-number {
    width: 50px;
    height: 50px;
    background-color: #ECCE53;
    color: #31306C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    flex-shrink: 0;
    z-index: 2;
}

.passo-content h3 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.passo-content p {
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 400;
}

/* Card de Dados (Vermelho) */
.card-dados-ir {
    background-color: #DB4F66; /* Cor avermelhada da imagem */
    color: #fff;
    padding: 30px 40px;
    border-radius: 15px;
    margin: 25px 0;
    position: relative;
}

.card-dados-ir h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.dados-texto p {
    margin-bottom: 8px;
    font-size: 25px;
    opacity: 0.95;
    color: #fff;
}

.btn-copy {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255,255,255, 1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-copy img {
	height: 36px;
	width: 100%;
}

.btn-copy:hover {
    background: rgba(255,255,255,0.4);
}

/* Lista do Passo Final */
.lista-finalizacao {
    list-style: disc;
    padding-left: 20px;
    margin: 20px 0;
}

.lista-finalizacao li {
    font-size: 25px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.lista-finalizacao a {
    color: #31306C;
    text-decoration: underline;
}

.footer-ir {
    background-color: #ECCE53; /* Mesmo amarelo do Hero */
    padding: 100px 0;
    position: relative;
    overflow: visible;
	margin-bottom: -40px; 
    z-index: 0;
}

.footer-ir::before,
.footer-ir::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    /* Caminho para a tira vertical de elos */
    background-image: url('../img/doe/corrente_02.svg'); 
    
    /* FORÇA A REPETIÇÃO APENAS VERTICALMENTE */
    /* background-repeat: repeat; */
    
    /* AJUSTE CRUCIAL:
       A tira deve ocupar 100% da altura do pseudo-elemento (que é 80% da seção)
       e ter uma largura fixa (ex: 150px) para não distorcer. */
    background-size: 450px 100%; 
    
    /* Configurações visuais do design */
    opacity: 0.8; 
    z-index: 1; /* Atrás de tudo */
    pointer-events: none;
}

/* Reajustando a opacidade dos elos para esta seção específica */
.footer-ir::before,
.footer-ir::after {
    opacity: 0.8; /* Um pouco mais sutil que no topo */
}

/* Elos da Esquerda (::before) */
.footer-ir::before {
    left: -530px;
    /* top: 370px; */
    
    width: 55vw;
    height: 85%;
    
    background-position: right;
}

/* Elos da Direita (::after) */
.footer-ir::after {
    right: -530px;
    /* top: 175px; */
    
    width: 55vw;
    height: 85%;
}

.footer-ir-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
}

.footer-ir-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 40px;
    color: #31306C;
    margin-bottom: 35px;
}

.footer-ir-text p {
    color: #31306C;
    line-height: 1.4;
    margin-bottom: 25px;
}

/* Botões Azuis Escuros */
.footer-ir-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-blue-ir {
    background-color: #31306C; /* Azul marinho do Gauss */
    color: #fff !important;
    padding: 18px 45px;
    border-radius: 40px;
    font-size: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
    min-width: 250px;
}

.btn-blue-ir:hover {
    background-color: #434358;
    transform: translateY(-3px);
    color: #ECCE53 !important;
}

/* Ajuste para telas menores */
@media (max-width: 767px) {
    .divider-elos {
        height: 40px; /* Reduz um pouco no mobile */
        margin: 10px 0;
    }

	.passo-item {
        flex-direction: column;
        gap: 15px;
    }
    .passo-item:not(:last-child)::after {
        display: none;
    }
    .card-dados-ir {
        padding: 20px;
    }

	.footer-ir-title {
        font-size: 30px;
    }
    .footer-ir-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-blue-ir {
        width: 100%;
        max-width: 300px;
    }

}

/* Responsividade Mobile */
@media (max-width: 991px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
     .hero-ir-with-elos::before,
    .hero-ir-with-elos::after {
        display: none;
    }
    .hero-title, .hero-subtitle {
        text-align: center;
    }

    #hero-left { order: 1; }
    #hero-center { order: 2; }
    #hero-right { order: 3; }
    
    .aluna-info { margin-bottom: 20px; }

	.info-ir-grid {
        grid-template-columns: 1fr;
    }
    .info-ir-sidebar {
        order: -1; /* Coloca o balão no topo no mobile se preferir */
    }
    .btn-yellow-ir, .btn-yellow-outline-ir {
        width: 100%;
    }
}