html {
    cursor: none;
}


body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #f6f6f6;
}

.action-button {
    width: 100%;
}
.page-title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 11vw, 130px);   /* reduz mínimo e faixa */
    line-height: 1.1;                      /* evita corte          */
    color: rgba(69, 123, 157, 0.44);
    margin-top: clamp(40px, 20vw, 162px);  /* sobe um pouco em mobile */
    padding: 0 4vw;                        /* respiro lateral      */
    word-break: break-word;                /* quebra se necessário */
}

.content-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: -200px;
    
}
.image-container {
    flex: 0 0 950px;
}
.image-container img {
    width: 80%;                     /* evita estouro horizontal  */
    height: auto;                    /* mantém proporção          */
    max-height: 450px;
    object-fit: cover;
    border-radius: 50px;
}
.button-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.action-button {
    padding: 15px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.visit-site {
    background-color: #ffffff;
    color: #457B9D;
    border: 2px solid #457B9D;
}
.contact-us {
    background-color: #457B9D;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.contact-us:hover {
    background-color: #003049;
    color: #ffffff;
    border: 2px solid #457B9D;
}

.visit-site:hover {
    background-color: #457b9d;
    color: white;
}


.info-section {
display: flex;
max-width: 1200px;
margin: 40px auto;
padding: 0 20px;
padding-top: 130px;
padding-left: 50px;
}

.left-column {
flex: 0 0 300px;
position: sticky;
top: 60px;
align-self: flex-start;
margin-right: 250px;
}

.right-column {
flex: 1;
padding-top: 370px;
padding-right: 70px;
}

.left-column h2 {
font-family: 'unica one', sans-serif;
font-weight: 900;
font-size: 40px;
color: #457B9D;
margin-bottom: 20px;
}

.right-column h3 {
font-family: 'unica one', sans-serif;
font-weight: 900;
font-size: 30px;
color: #1D3557;
margin-bottom: 50px;
}
.right-column h2 {
font-family: 'Inter', sans-serif;
font-weight: 700;
font-size: 20px;
color: #457B9D;
margin-top: 25px;
margin-bottom: 50px;
}
.right-column p {
font-family: 'Inter', sans-serif;
font-size: 16px;
line-height: 1.6;
color: #000000;
margin-bottom: 50px;
}
.right-column strong {
font-weight: 700;
}

.carousel-section {
max-width: 1200px;
margin: 100px auto;
padding: 0 20px;
}

.section-header {
margin-bottom: 20px;
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2px;
}

.section-header h2 {
font-family: 'inter', sans-serif;
font-style: italic;
font-size: 35px;
font-weight: 900;
color: #1D3557;
margin-right: 20px;
margin-left: 30px;
}

.divider {
width: 15%;
height: 4px;
background-color: #1D3557;
transition: width 0.5s ease;
}

.carousel-section {
max-width: 1590px;
margin: 100px auto;
padding: 0 20px;
overflow: hidden;
}

.carousel-container {
overflow: hidden;
width: 100%;
}

.carousel {
display: flex;
transition: transform 0.5s ease;
gap: 50px;
}

.card {
flex: 0 0 55%;
height: 380px;
position: relative;
overflow: hidden;
border-radius: 10px;
justify-content: space-between;
cursor: pointer;
text-decoration: none;
display: block;
transition: all 0.3s ease;
}

.card-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
opacity: 0.26;
z-index: 1;
transition: opacity 0.3s ease;
}

.card:hover .card-image {
opacity: 0.50;
}

.card:nth-child(1), .card:nth-child(3) {
background-color: #1D3557;
}

.card:nth-child(2) {
background-color: #060916;
}

.card-content {
position: absolute;
bottom: 20px;
left: 20px;
text-align: left;
z-index: 3;
}


.card h3 {
font-family:'unica one', sans-serif;
color: #fff;
font-size: 100px;
font-weight: bolder;
margin: 0;
padding: 10px;
padding-top: 160px;
transition: all 0.3s ease;
border-radius: 5px;
transition: all 0.3s ease;
}




.carousel-navigation {
display: flex;
align-items: center;
justify-content: space-between;
padding-right: 30px;
margin-top: 10px;
}

.carousel-arrow {
background-color: transparent;
color: #457b9d;
border: 2px solid #457b9d;
border-radius: 50%;
font-size: 24px;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
margin: 0 5px;
transition: background-color 0.3s ease;
}

.carousel-arrow:hover {
background-color: #457b9d;
color: white;
}

.image-container1 {
    margin: 20px 0;
    text-align: center;
    margin-bottom: 40px;
    
}

.image-container1 img {
    max-width: 400px;
    height: auto;
    border-radius: 25px;
}


.image-container2 {
    margin: 20px 0;
    text-align: center;
    
}

.image-container2 img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    
}

.icon-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-title svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@media (max-width: 920px) {
    /* empilha imagem primeiro, botões depois */
    .content-section {
        flex-direction: column;
        text-align: center;
        margin-top: 0;               /* remove deslocamento       */
    }

    .image-container {
        flex: 1 1 100%;
    }

    .button-container {
        flex-direction: row;         /* botões lado a lado        */
        gap: 1rem;
        justify-content: center;
        margin-top: 1.5rem;
    }

    .action-button {
        padding: clamp(10px, 3vw, 15px) clamp(20px, 6vw, 30px);
        font-size: clamp(13px, 4vw, 15px);
        width: auto;                 /* não ocupa 100% da tela    */
    }
}

@media (max-width: 920px) {
    /* 1 coluna: esquerda (título + botão) vem antes */
    .info-section {
        flex-direction: column;
        padding-top: 40px;   /* remove deslocamento grande   */
        padding-left: 20px;  /* respira nas laterais         */
    }

    /* esquerda deixa de ser sticky e ocupa 100% */
    .left-column {
        position: static;
        width: 100%;
        margin-right: 0;
        margin-bottom: 2rem;
    }

    /* botão não ocupa 100%, fica proporcional */
    .action-button {
        width: auto;
        padding: clamp(10px, 3vw, 15px) clamp(22px, 6vw, 30px);
        font-size: clamp(13px, 4vw, 15px);
    }

    /* direita sem padding topo/lateral extra */
    .right-column {
        padding-top: 0;
        padding-right: 0;
    }

    /* ajustes tipográficos para caber bem */
    .left-column h2  { font-size: clamp(26px, 7vw, 40px); }
    .right-column h3 { font-size: clamp(22px, 7vw, 30px); }
    .right-column h2 { font-size: clamp(18px, 6vw, 20px); }
    .right-column p  { font-size: clamp(14px, 4vw, 16px); }

    /* ícones menores em telas estreitas */
    .icon-title svg {
        width: 20px;
        height: 20px;
    }

    /* imagens ocupam 100% da largura disponível */
    .image-container1 img,
    .image-container2 img {
        max-width: 100%;
    }
}

@media (max-width: 920px) {
    /* título + setas: espaça melhor */
    .header-content {
        gap: 1rem;
        margin-left: 0;
    }

    /* setas menores */
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* carrossel todo sem gap lateral enorme */
    .carousel {
        gap: 0;
    }

    /* exibe 1 card visível (total slide-width = 100%) */
    .card {
        flex: 0 0 100%;
        height: clamp(220px, 60vw, 380px);
    }

    /* tipografia menor no card */
    .card h3 {
        font-size: clamp(32px, 14vw, 60px);
        padding-top: clamp(60px, 25vw, 160px);
    }

    /* divisor maior p/ visual feedback */
    .divider {
        width: 30%;
    }
}

@media (max-width: 920px) {

    .cursor {
        display: none;
    }
}