/*Versao 07-08-2025*/

/*CONFIGS*/
:root {
    --primary-color: rgb(87,120,184);
    --secondary-color: rgb(99,142,201);
    --tertiary-color: rgb(112,173,224);
    --text-dark: rgb(33, 33, 33);
    --text-light: rgb(250, 250, 250);
    --background: rgb(248, 248, 248);

    --gray: rgb(128, 128, 128);
    --white: rgb(255, 255, 255);
}

@font-face {
    font-family: 'Tachyon';
    src: url('./fonts/tachyon-font/tachyon_regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*KEYFRAMES*/
@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Animações (podem ser globais, mas são usadas apenas aqui) */
@keyframes underline-grow {
    0% { width: 0; }
    100% { width: 10rem; }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

html {
    font-size: 62.5% !important; /*10px*/
}

body {
    font-size: 1.6rem; /*16px*/
}

/* Início Background Padrão do Body*/
.bg-pattern {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.bg-pattern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 30%,
            rgba(0, 96, 192, 0.12) 0%,
            transparent 10%),
            radial-gradient(circle at 80% 70%,
            rgba(0, 129, 255, 0.12) 0%,
            transparent 10%),
            linear-gradient(135deg,
            rgba(0, 162, 255, 0.05) 0%,
            transparent 20%);

    background-size: 200% 200%;
    animation: gradientMove 20s ease infinite;
    z-index: 0;
}

.bg-pattern-white {
    background-color: #f8f9fa; /* Fundo claro */
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="%23e9ecef" stroke-width="2"/></svg>');
    background-size: 50px;
    overflow: hidden;
    position: relative;
}

.bg-gradient {
    background-color: transparent;
    background-image: linear-gradient(180deg, #000000 20%, #111 80%) !important;
}

.overground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /*background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);*/
     background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

/* Fim Background Padrão do Body*/

/*General configs*/

.title-black-h2 {
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #343a40 !important;
    line-height: 1.2 !important;
    margin-bottom: 3.2rem !important;
    position: relative !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.title-black-h2::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: -10px !important;
    width: 10rem !important;
    height: 4px !important;
    background-image: linear-gradient(90deg, #007bff, #4dd0e1) !important;
    border-radius: 2px !important;
    animation: underline-grow 1.5s ease-out forwards !important;
}

/* Mobile-first */

/*TOP BAR*/
#top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
    padding: 1.6rem 0;
}

#top.scrolled {
    background: rgba(0, 0, 0, 0.1); /* Fundo branco semi-transparente */
    backdrop-filter: blur(1rem); /* Efeito de desfoque */
    -webkit-backdrop-filter: blur(1rem) ; /* Para Safari */
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1); /* Sombra leve */
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1); /* Borda sutil */
}

#top .button_top {
    display: none;
    padding: 1.6rem;
    background: linear-gradient(90deg, #0081ff, #0066cc); /* Degradê horizontal */
    border-radius: 5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

#top .button_top:hover {
    background: linear-gradient(90deg, #0091ff, #0055bb);
}

/*NAVBAR*/

/* --- BEGIN HERO --- */
/* --- END HERO --- */

/* --- BEGIN COMPANY METRICS --- */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

.metrics-container {
    border: 0.1rem solid rgba(255, 255, 255, 0.2);
    border-radius: 1.6rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(1rem);
    box-shadow: 0 0.8rem 3.2rem rgba(0, 0, 0, 0.1);
}

.oceano-digital-link {
    color: #4fc3f7;
    text-decoration: none;
    font-size: 2.4rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.oceano-digital-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0.2rem;
    bottom: -0.2rem;
    left: 0;
    background-color: #4fc3f7;
    transition: width 0.3s ease;
}

.oceano-digital-link:hover::after {
    width: 100%;
}

.oceano-digital-link {
    text-transform: uppercase;
}

#company-metrics {
    background-color: transparent;
    background-image: linear-gradient(180deg, #000000 30%, #111 70%);
}

.company-metrics-content {
    position: relative;
    z-index: 1;
}

.company-metrics-content .metric-value {
    font-size: 4rem;
    letter-spacing: 0.15rem;
}

/* --- END COMPANY METRICS --- */

/*--- BEGIN ABOUT SECTION ---*/
#about {
    background-color: transparent;
    background-image: linear-gradient(180deg, #111 1%, #000 90%);
}

#about .content-about {
    display: flex;
    flex-direction: column;
    color: var(--white);
}

#about .about-title {
    line-height: 1;
    font-weight: 700;
}

#about .syllable {
    font-size: 8rem;
    display: block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#about .syllable-1 {
    color: var(--primary-color);
}

#about .syllable-2 {
    color: var(--secondary-color);
}

#about .syllable-3 {
    color: var(--tertiary-color);
}

/* Efeito de hover nas sílabas */
#about .syllable:hover {
    transform: scale(1.05) rotate(-2deg);
}

#about .about-text {
    text-align: justify;
    max-width: 100%;
    margin-top: 1rem;
    line-height: 1.6;
    font-size: 1.6rem;
    opacity: 0.9;
}


/* --- END ABOUT SECTION --- */

/*--- BEGIN SETORES SECTION ---*/

/* -------------------------------------------------------------
   CARD DE SETOR
   ------------------------------------------------------------- */
.setores-slide {
    position: relative; /* O pai precisa ser relativo para os filhos absolutos */
    width: 100%;
    min-height: 30rem; /* Garante altura uniforme, mobile-first */
    border-radius: 1.6rem;
    overflow: hidden; /* Corta o que transbordar da borda arredondada */

    /* Adicione box-shadow ou borda se quiser estilizar o card em si */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.setores-carousel .slick-list {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* -------------------------------------------------------------
   IMAGEM
   ------------------------------------------------------------- */
.setores-slide .img-wrapper,
.setores-slide .img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* -------------------------------------------------------------
   CONTEÚDO (TÍTULO)
   ------------------------------------------------------------- */
.setores-slide .card-content {
    position: absolute; /* Mude para 'absolute' */
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Remova o !important, não é necessário */

    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */

    /* Propriedades que você já tinha: */
    /* Remova `margin: auto 0;` pois não é necessário com 'absolute' */
    gap: 0.3rem;
    padding: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-size: 5rem;
    color: var(--white);
    font-weight: 700;
}

.setores-slide {
    margin: 0 1.6rem;
}

.slick-slide:not(.slick-center) {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.slick-slide.slick-center {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* -------------------------------------------------------------
   ESTILIZAÇÃO DOS DOTS DO SLICK
   ------------------------------------------------------------- */

/* Estilo para todos os pontos (dot normal) */
.slick-dots li button:before {
    color: var(--gray);
}


.slick-dots li.slick-active button:before {
    color: var(--white);
    transform: scale(1.5);
}

/* --- END SETORES SECTION --- */

/*SERVIÇOS*/


/* sm */
@media (min-width: 576px) {

}

/* md */
@media (min-width: 768px) {
    #about .about-title {
        border-right: 0.4rem solid;
        border-image: linear-gradient(to bottom, var(--primary-color), var(--secondary-color), var(--tertiary-color)) 1;
        padding-right: 2.4rem;
    }
    #about .syllable {
        font-size: 12rem;
    }
    #about .content-about,
    #about .image-about {
        width: 50%;
    }

    #about .image-about {
        max-height: 100vh;
        position: relative;
    }

    #about .image-about .img-about {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        transition: transform 0.5s ease-in-out;
    }

    /* Efeito de hover na imagem */
    #about .image-about .img-about:hover {
        transform: scale(1.02);
    }

    .setores-slide .card-content {
        font-size: 2.8rem;
    }
}

/* lg */
@media (min-width: 992px) {
    #top .button_top {
        display: block;
    }
    #about .syllable {
        font-size: 14rem;
    }
    #about .image-about {
        width: 70%;
    }
    .setores-slide .card-content {
        font-size: 3.2rem;
    }

}

/* xl */
@media (min-width: 1200px) {
    #about .syllable {
        font-size: 16rem;
    }

    .setores-slide .card-content {
        font-size: 5rem;
    }

}

/* xxl */
@media (min-width: 1400px) {
    #about .syllable {
        font-size: 18rem;
    }
}
