html {
    cursor: none;
}


body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}


.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);
    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;
}
.image-container {
    flex: 1;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}
.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;
}

.action-button:hover {
    opacity: 0.8;
}


.info-section {
display: flex;
max-width: 1200px;
margin: 40px auto;
padding: 0 20px;
padding-top: 130px;
}

.left-column {
flex: 0 0 300px;
position: sticky;
top: 40px;
align-self: flex-start;
padding-right: 200px;
}

.right-column {
flex: 1;
padding-top: 370px;
padding-right: 70px;
}

.left-column h2 {
font-family: 'unica one', sans-serif;
font-weight: 900;
font-size: 42px;
color: #457B9D;
margin-bottom: 20px;
}

.right-column h3 {
font-family: 'Inter', sans-serif;
font-weight: 700;
font-size: 24px;
color: #457B9D;
margin-bottom: 50px;
}

.right-column h2 {
font-family: 'unica one', sans-serif;
font-weight: 900;
font-size: 25px;
color: #1D3557;
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;
}

/* Estilos para a imagem dentro de .right-column */
.right-column img {
    max-width: 100%; /* Garante que a imagem não ultrapasse a largura do seu contêiner */
    height: auto;    /* Mantém a proporção da imagem ao redimensionar */
    display: block;  /* Remove qualquer espaço extra abaixo da imagem que navegadores podem adicionar */
    margin-bottom: 50px; /* Mantém a margem inferior para separar do texto, ajusta se necessário */
    border-radius: 10px; /* Adicione um pequeno arredondamento para um visual mais suave, se desejar */
}

/* --- Media Queries para Responsividade da Imagem --- */

@media (max-width: 920px) {
    .right-column img {
        /* Centraliza a imagem quando as colunas se empilham */
        margin-left: auto;
        margin-right: auto;
        /* Adiciona uma margem superior para separá-la do título/botão da coluna esquerda */
        margin-top: 20px; /* Ajuste este valor conforme necessário */
        /* Reduz a margem inferior em telas menores se desejar */
        margin-bottom: 30px; /* Ajuste este valor conforme necessário */
    }
}

/* Telas menores que 768px (Tablets em modo retrato, Celulares grandes) */
@media (max-width: 768px) {
    .right-column img {
        /* Você pode querer limitar um pouco o tamanho máximo em telas muito pequenas, se a imagem for muito grande */
        max-width: 90%; /* Por exemplo, 90% da largura do contêiner */
        border-radius: 5px; /* Reduz o arredondamento em telas menores */
    }
}

/* Telas menores que 480px (Celulares) */
@media (max-width: 480px) {
    .right-column img {
        /* Pode ajustar ainda mais o max-width para celular */
        max-width: 95%; /* Ou deixá-lo em 100% dependendo do seu design */
        margin-bottom: 20px; /* Margem inferior um pouco menor */
    }
}

.image-text-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
}

.content-wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 2rem;
}

.imagem-linha {
    width: 100%;
    height: auto;
}

.imagem-linha img {
    width: 100%;
    height: auto;
    border-radius: 50px;
}

.background-rectangle {
    flex: 1;
    background: linear-gradient(to right, #457B9D, #182B37);
    color: white;
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}


.rectangle-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rectangle-content h2 {
    font-family: 'unica one', sans-serif;
    width: 75%;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.rectangle-content p {
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: white;
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}


.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
    @media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

}












.background-rectangle .action-button {
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: transparent; /* Ajuste a cor conforme necessário */
    color: white;
    border: 2px solid white;
    border-radius: 200px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.image-text-section .action-button:hover {
background-color: #669bbc;
color: white;
border: 2px solid #669bbc;
}

.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;
    }
    

@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;
        padding-right: 0;
    }

    /* 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%;
    }
}

/* ENCONTRE E SUBSTITUA ESTE BLOCO INTEIRO */
@media (max-width: 1140px) {
    /* 1 coluna: texto (retângulo) vem ANTES da imagem */
    .content-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Garante que ambos os blocos ocupem a largura total */
    .background-rectangle,
    .image-container {
        width: 100%;
    }

    /* retângulo com padding ajustado */
    .background-rectangle {
        padding: 1.5rem;
    }

    /* --- CORREÇÃO PRINCIPAL AQUI --- */
    /* Título com largura e tamanho de fonte responsivos */
    .rectangle-content h2 {
        width: 100%;
        /* A fonte vai variar entre 24px e 35.2px, ajustando-se à tela */
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    /* Parágrafo com tamanho de fonte responsivo */
    .rectangle-content p {
        font-size: clamp(0.9rem, 4vw, 1rem);
    }

    /* Botão com padding e fonte responsivos */
    .background-rectangle .action-button {
        padding: clamp(10px, 3vw, 12px) clamp(22px, 6vw, 24px);
        font-size: clamp(0.85rem, 3.5vw, 1rem);
    }
}

@media (max-width: 920px) {

    .cursor {
        display: none;
    }
}
