/*--------------------------------------------------------------
        # Custom Styling
        --------------------------------------------------------------*/
:root {
    --primary-color: #2d2e82; /* Verde escuro, sóbrio e esperançoso */
    --secondary-color: #bc5529; /* Verde claro, para contraste suave */
    --accent-color: #f0f4f1; /* Um bege/cinza claro para fundos */
    --text-color: #000; /* Cor de texto principal */
    --white-color: #ffffff;
}

body {
    font-family: "Roboto Slab", serif; /* Nova fonte para o corpo */
    background-color: var(--accent-color);
    color: var(--text-color);
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif; /* Nova fonte para títulos */
    font-weight: 700;
}

/*--------------------------------------------------------------
        # Botão Customizado
        --------------------------------------------------------------*/
.cta-button {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white-color);
    background: linear-gradient(145deg, #ea8d56, #e25300);
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(145deg, #ee9969, #ef5800);
    color: var(--white-color);
}

.cta-button-final {
    font-size: 1.4rem;
    padding: 25px 50px;
}

/*--------------------------------------------------------------
        # Seções
        --------------------------------------------------------------*/

/* Seção Herói */
.hero-section {
    background: url("../img/banner.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
    color: var(--white-color);
    padding: 80px 0;
    text-align: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(12 22 145 / 60%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-section p {
    font-size: 1.5rem;
    font-family: "Roboto Slab", serif;
    margin: 20px auto 40px;
    max-width: 700px;
}

/* Seção Credibilidade */
.credibility-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.credibility-item {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.credibility-item:hover {
    transform: translateY(-5px);
}

.credibility-item .icon {
    font-size: 3rem; /* Aumentado para Font Awesome */
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Seção Galeria */
.gallery-section {
    padding: 80px 0;
    background-color: var(--accent-color);
}

.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Seção da Abordagem */
.approach-section {
    padding: 80px 0;
    background-color:#fff;
}

.approach-item {
    text-align: center;
    padding: 20px;
}

.approach-item .icon {
    font-size: 3.5rem; /* Aumentado para Font Awesome */
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Seção CTA Final */
.final-cta-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.micro-text {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Rodapé */
.footer {
    padding: 40px 0;
    background-color: #191b63;
    color: var(--accent-color);
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    color: var(--white-color);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Media Queries para Responsividade */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1.2rem;
    }
    .final-cta-section h2 {
        font-size: 2rem;
    }
}


.whats {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10000;
    animation: shakeX 2s infinite;
    border:0;
    background-color: #00bf49;
    color: #fff;
    padding: 10px 15px;
    border-radius: 40px;
    display: block;
}
.whats:hover {
    background-color: #13d45d;
}