/* Régua de Maturidade Page Styles */
.regua-maturidade-page {
    min-height: 100vh;
    background: white;
    position: relative;

    /* overflow-x: hidden; */
}

/* Hero Section */
.regua-hero {
    padding: 150px 15px 45px;
    max-width: 1080px;
    margin: 0 auto;
}

.regua-hero .container {
    max-width: 100%;
}

.regua-hero::before {
    content: '';
    position: absolute;
    top: -37.5px;
    left: -150px;
    width: 422px;
    height: 431px;
    background-image: url('../../image/support/circle-artesaos-one-green-left_2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

.regua-hero::after {
    content: '';
    position: absolute;
    bottom: -75px;
    right: -100px;
    width: 422px;
    height: 431px;
    background-image: url('../../image/support/circle-artesaos-one-green-left_2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

.regua-hero__title {
    font-family: 'Changa', sans-serif;
    font-size: 72px; /* 96px * 0.75 = 72px */
    font-weight: 400;
    color: #1FA0D3;
    text-align: left;
    margin: 100px auto 45px;
    max-width: 850px; /* Mesma largura do texto para alinhamento */
    line-height: 35px; /* 47px * 0.75 = 35.25px */
    position: relative;
    z-index: 1;
}

.regua-hero__title-bold {
    font-weight: 700;
}

.regua-hero__title-normal {
    font-weight: 400;
}

/* Content Section */
.regua-content {
    padding: 0 15px 45px;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
}

.regua-content .container {
    max-width: 100%;
}

.regua-content__text {
    max-width: 850px; /* 1133px * 0.75 = 849.75px */
    margin: 0 auto; /* Centraliza o elemento na tela */
    font-family: 'Afacad', sans-serif;
    font-size: 26px; /* 34px * 0.75 = 25.5px */
    font-weight: 400;
    line-height: 29px; /* 38.76px * 0.75 = 29.07px */
    color: #005C74;
    text-align: left; /* Conteúdo alinhado à esquerda */
}

.regua-content__text strong {
    font-weight: 700;
}

.regua-content__text p {
    margin: 0 0 1.125em 0;
}

.regua-content__text p:last-child {
    margin-bottom: 0;
}

/* CTA Button */
.regua-content__cta {
    margin: 2em 0 0;
    text-align: center;
}

.regua-content__cta-button {
    display: inline-block;
    padding: 15px 38px; /* 20px * 0.75 = 15px, 50px * 0.75 = 37.5px */
    background: #93C01F;
    border-radius: 3px;
    color: white;
    font-family: 'Afacad', sans-serif;
    font-size: 26px; /* 34px * 0.75 = 25.5px */
    font-weight: 400;
    line-height: 29px; /* 38.76px * 0.75 = 29.07px */
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 392px; /* 523px * 0.75 = 392.25px */
    min-height: 56px; /* 75px * 0.75 = 56.25px */
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.regua-content__cta-button:hover {
    background: #7aa019;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 192, 31, 0.3);
}

.regua-content__cta-button:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .regua-hero {
        padding: 120px 15px 45px;
    }

    .regua-hero__title {
        font-size: 54px; /* 72px * 0.75 = 54px */
        line-height: 30px;
    }

    .regua-content__text {
        font-size: 20px;
        line-height: 1.3;
    }

    .regua-content__cta-button {
        font-size: 20px;
        line-height: 26px;
        padding: 14px 30px;
        min-width: auto;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    /* Esconder elementos auxiliares no mobile */
    .regua-hero::before,
    .regua-hero::after {
        display: none;
    }

    .regua-hero {
        padding: 100px 15px 45px;
    }

    .regua-hero__title {
        margin: 40px auto 0px;
        font-size: 32px;
        line-height: 24px;
    }

    .regua-content__text {
        font-size: 14px;
        line-height: 1.35;
    }

    .regua-content__cta-button {
        font-size: 18px;
        line-height: 24px;
        padding: 12px 25px;
        min-width: 100%;
        width: 100%;
        max-width: 100%;
    }
}
