/* CSS INLINE content-section */

.box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* posição inicial */
    transform: scale(1.3) translateY(40px);
    /* animação */
    animation: zoomUp 3s ease forwards;
}


/* animação zoom up */

@keyframes zoomUp {
    0% {
        transform: scale(1.3) translateY(40px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.footer {
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url("../img/gallery/footer-bg.png") center/cover;
}

.support-area {
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url("../img/gallery/section_bg02.png") center/cover;
}

.suporte {
    color: #ffffff;
    font-weight: 600
}

.marca {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-color: #FF591C;
    color: white;
    padding: 120px
}

.slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 4px 0px rgba(0, 0, 0, 0.2);
}

.slider {
    display: flex;
    width: max-content;
    animation: slideAnimation 15s linear infinite;
}

.slide {
    min-width: 150px;
    padding: 20px;
    text-align: center;
}

.slide img {
    max-width: 130px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.slide img:hover {
    transform: scale(1.1);
}

@keyframes slideAnimation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Estilos customizados para replicar o design */

:root {
    --cor-fundo-escuro: #000b11;
    /* Preto/Cinza escuro para o fundo do conteúdo */
    --cor-laranja: #003b57;
    /* Laranja da seção de métricas */
    --cor-texto-claro: #ffffff;
    /* Texto branco */
    --cor-texto-principal: #e0e0e0;
    /* Texto cinza claro para o corpo */
}


/* Estilos para a seção de conteúdo (lado direito) */

.content-section {
    background-color: var(--cor-fundo-escuro);
    padding: 4rem 3rem;
    height: 100vh;
    /* Ocupa a altura total da viewport */
    overflow-y: auto;
    /* Permite scroll se o conteúdo for muito longo */
}

.content-section h2 {
    font-size: 3.9rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #ffffff;
}

.content-section h5 {
    color: var(--cor-texto-claro);
    font-weight: bold;
    margin-top: 2.1rem;
    margin-bottom: 0.5rem;
    font-size: 2.25rem;
}

.content-section p {
    color: var(--cor-texto-principal);
    font-size: 1.6rem;
    line-height: 1.6;
}


/* Estilos para a seção lateral (lado esquerdo) */

.sidebar {
    background-color: #333;
    /* Fundo escuro para a imagem */
    height: 100vh;
    position: relative;
    padding: 0;
    display: flex;
    align-items: flex-end;
    /* Alinha a caixa laranja no fundo */
}

.sidebar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}


/* Sobreposição para a imagem (para dar o efeito circular, embora a imagem original já o tenha) */

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Leve escurecimento na imagem de fundo */
    z-index: 2;
}


/* Estilos para a caixa de métricas (laranja) */

.metrics-box {
    background-color: var(--cor-laranja);
    color: var(--cor-texto-claro);
    margin-bottom: -40px;
    padding: 1.5rem;
    position: relative;
    z-index: 3;
    /* Fica por cima da imagem */
    width: 85%;
    /* Ajuste para o tamanho visual da caixa */
    margin-left: 0;
    /* Alinha à esquerda na coluna */
}

.metric-value {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.metric-description {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}


/* Responsividade básica para telas menores */

@media (max-width: 992px) {
    .metric-value {
        font-size: 3rem;
        font-weight: bold;
        line-height: 1;
        margin-bottom: 0.25rem;
    }
    .metric-description {
        font-size: 1.3rem;
        margin-bottom: 1.1rem;
    }
    .sidebar,
    .content-section {
        height: auto;
        min-height: 60vh;
    }
    .content-section {
        padding: 2rem 1.5rem;
    }
    .metrics-box {
        width: 100%;
        margin: 0;
    }
}


/* Servicos */

.services {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-grid {
    width: 99%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background: #fff;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.card i {
    font-size: 36px;
    margin-bottom: 15px;
    color: #111;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.card p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}


/* Cards escuros */

.bg-dark {
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url("https://images.unsplash.com/1605902711622-cfb43c44367f?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.bg-dark1 {
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url("../img/hero/servico1.jpg") center/cover;
}

.bg-dark2 {
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url("../img/hero/servico3.jpg") center/cover;
}

.bg-dark1 i,
.bg-dark1 p {
    color: #fff;
}

.bg-dark2 i,
.bg-dark2 p {
    color: #fff;
}

.card:hover {
    transform: scale(1.04);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    z-index: 10;
}


/* Responsivo */

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reverter {
        flex-direction: column-reverse;
    }
    .content-section h2 {
        font-size: 2.9rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* fim Servicos */


/********** botao whatsapp **********/

.whatsapp-button {
    position: fixed;
    bottom: 80px;
    right: 30px;
    background-color: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 10 14px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: pulse 1.5s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    /* ícone branco */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/********** Fim do botao whatsapp **********/