﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0f1c2e;
    color: #fff;
}

.footer-info p {
    line-height: 1.8;
}

.footer-info .grupo {
    margin-bottom: 1.0rem;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HERO */
.hero {
    background-image: url('img/fink_0.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero span {
    font-weight: 300;
}

.form-box {
    position: relative;
    margin-top: 30px;
    background: rgba(27, 43, 68, 0.92);
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    overflow: hidden;
}

.form-box h2 {
    color: #fff;
    margin-bottom: 16px;
}

.form-box input,
.form-box select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 4px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #111;
}

.form-box input::placeholder {
    color: #333;
}

.form-box button {
    width: 100%;
    padding: 12px;
    background: #003366;
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* CTA ORCAMENTO */
.cta-orcamento-section {
    display: flex;
    justify-content: center;
    padding: 36px 16px;
}

.cta-orcamento-btn {
    display: inline-block;
    background: #4A90C2;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.4px;
    padding: 16px 30px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cta-orcamento-btn:hover {
    background: #3f7ea9;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.cta-orcamento-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .cta-orcamento-section {
        padding: 28px 16px;
    }

    .cta-orcamento-btn {
        width: 100%;
        max-width: 360px;
        padding: 15px 22px;
        font-size: 14px;
    }
}

/* SERVIÃ‡OS */
.servicos {
    padding: 80px 0;
}

.servicos h2 {
    text-align: center;
    margin-bottom: 50px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    color: #000;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-text {
    padding: 20px;
    text-align: center;
}

/* CERTIFICADOS */
.certificados {
    background: #1b2b44;
    padding: 60px 0;
}

.certificados ul {
    margin-top: 20px;
    line-height: 2;
}

/* BLOG */
.blog {
    padding: 80px 0;
}

.blog-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.blog-item img {
    display: block;
    width: min(100%, 520px);
    height: auto;
}

@media (max-width: 768px) {
    .blog-item {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-item img {
        width: 100%;
    }
}

/* ASSOCIADOS */
.associados {
    background: #fff;
    color: #000;
    padding: 60px 0;
    text-align: center;
}

.logos {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.logos img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* FOOTER */
footer {
    background: #0f1c2e;
    padding: 60px 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp svg {
    width: 30px;
}

/* MENU HAMBÚRGUER */
.hamburger-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    border-radius: 8px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animação do ícone quando menu está aberto */
.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* MENU OVERLAY */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 28, 46, 0.98);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
}

.mobile-menu a {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu a:hover {
    color: #4A90C2;
    transform: scale(1.05);
}

.mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #4A90C2;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.mobile-menu a:hover::after {
    width: 100%;
}

/* Mostrar menu hambúrguer em mobile */
@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }
    
    .mobile-menu ul {
        gap: 35px;
    }
    
    .mobile-menu a {
        font-size: 20px;
    }
}

