html {
    scroll-behavior: smooth;
}
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Passion+One&family=Sriracha&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Passion+One&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sriracha&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&display=swap');

html, body {
    overflow-x: hidden; /* Impede rolagem horizontal */
    max-width: 100%; /* Garante que não ultrapasse a largura da tela */
}

/* Barra de rolagem personalizada */
::-webkit-scrollbar {
    width: 10px;
    height: 10px; /* Para barra horizontal (se necessário) */
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #eaeaea, #9a9a9d); /* Gradiente roxo */
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #eaeaea, #9a9a9d);
}

:root{
    --fonte1: Verdana, Tahoma, sans-serif;
    --fonte2: "Kanit", sans-serif;
    --fonte3: "Roboto", sans-serif;
    --fonte4: "Passion One", sans-serif;;
    --primary: #0d204b;
    --secondary: #27273b;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --gray: #6c757d;
}
/*Masterhead section*/
.masterhead {
    background-image: url('../images/pincel.png');
    height: 100vh;
    width: 100% !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    margin-top: auto;

}
/* Sombra para os títulos */
.masterhead h1,
.masterhead h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}


/* Base Styles */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}


.section-title {
    color: #0d204b;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--light);
}

/* About Section */
.about-img {
    position: relative;
}

.about-img img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stats-container {
    gap: 2rem;
    padding-bottom: 1.5rem; /* Espaço para o badge */
}

/* Itens de estatística */
.stat-item {
    min-width: 120px;
    color: var(--primary);
}

/* Badge de experiência */
.experience-badge {
    background: var(--primary);
    color: white;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 0.5rem 1rem !important;  /* Reduz o padding */
    transform: scale(0.9);
}

/* Principles Section */
.principles-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #000000 0%, #2d2d52 100%);
}

.card-principle {
    border: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.card-principle:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Ícones - Versão corrigida */
.principle-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: rgba(100, 98, 92, 0.1);
    border: 2px solid rgba(227, 225, 214, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.principle-icon i {
    color: #ece9d8;
    font-size: 1.8rem;
    transition: transform 0.6s ease; /* Aplicamos a transição diretamente no ícone */
}

.card-principle:hover .principle-icon i {
    transform: rotateY(180deg); /* Rotação completa no hover */
}

/* Services Section */
.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card .card-img-top {
    height: 200px;
    overflow: hidden;
}

.service-card .card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-img-top img {
    transform: scale(1.1);
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    margin-bottom: 8px;
    color: var(--gray);
}


.cta-box {
    background: var(--primary);
    color: var(--secondary);
    max-width: 800px;
    margin: 0 auto;
}


/* Mobile: Botões em coluna */
@media (max-width: 768px) {
    .cta-box {
        padding: 1rem !important;
    }

    .cta-box .btn {
        display: block !important;
        width: 100% !important;
        margin: 0.5rem 0 !important; /* Vertical apenas */
    }
}

/* ----- [BOTÕES - TELAS PEQUENAS (Mobile)] ----- */
@media (max-width: 576px) {
    .cta-box .btn {
        display: inline-block;
        width: auto;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        margin: 0 4px !important;
    }
}

/* Botão azul escuro sólido */
.btn-azul-escuro {
    background-color: #134091; /* Seu azul escuro */
    border-color: #134091;
    color: white;
    transition: all 0.3s ease;
}

.btn-azul-escuro:hover {
    background-color: #0d2e6b; /* Tom mais escuro para hover */
    border-color: #0d2e6b;
    color: white;
}

/* Botão azul escuro outline */
.btn-outline-azul {
    color: #134091;
    border-color: #134091;
    transition: all 0.3s ease;
}

.btn-outline-azul:hover {
    background-color: #134091;
    color: white;
}

/* Ícones azuis */
.icone-azul {
    color: #134091;
}

/* Animação de flutuação suave */
.hover-animate {
    transition: all 0.4s ease-in-out;
}

.hover-animate:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Melhoria na responsividade dos botões */
/* Responsivo */
@media (max-width: 768px) {
    .stats-container {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding-bottom: 0;
    }

    .experience-badge {
        position: relative !important;
        end: auto !important;
        bottom: auto !important;
        margin-top: 1rem;
    }
}

/* End services section */

.btn-top {
    position: fixed;
    width: 50px;
    height: 50px;
    background-color: rgba(238, 236, 236, 0.62);
    bottom: 90px; /* Ajuste para ficar acima do WhatsApp */
    right: 20px;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    color: black;
    font-size: 22px;
    border-radius: 50%;
    z-index: 999; /* Abaixo do WhatsApp */
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-top.visible {
    opacity: 1;
}

.btn-wpp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Acima do botão "Topo" */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-wpp:hover {
    background-color: #128C7E;
}

