/* ===== Tipografia Global ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2E2E2E;
    background-color: #F5F5F5;
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #0A2E5C; /* azul escuro principal */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Hero ===== */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(rgba(10,46,92,0.6), rgba(10,46,92,0.6)),
                url('imagens/matinhos-praia.jpg') center/cover no-repeat;
    color: #FFFFFF;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 0 5px 25px rgba(0,0,0,0.7);
}
.hero p {
    font-size: 1.3rem;
    color: #ffffffcc;
    margin-bottom: 2rem;
}
.btn-hero {
    background: linear-gradient(90deg, #154D8C, #4DA3FF);
    color: #FFFFFF;
    font-weight: bold;
    border-radius: 8px;
    padding: 12px 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ===== Navbar ===== */
.navbar {
    background: linear-gradient(135deg, #0A2E5C, #154D8C);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: background 0.5s;
}
.navbar .navbar-brand {
    /* color: #4DA3FF !important; */
    font-weight: 900;
    font-size: 1.5rem;
    transition: color 0.3s;
}
.navbar .navbar-brand:hover {
    color: #B3D9FF !important;
}
.navbar .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}
.navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: linear-gradient(90deg, #154D8C, #4DA3FF);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.navbar .nav-link:hover::after {
    width: 100%;
}
.navbar .nav-link:hover {
    color: #4DA3FF !important;
    text-shadow: 0 0 8px rgba(77,163,255,0.6);
}
.navbar-toggler {
    border-color: #4DA3FF !important;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%234DA3FF' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ===== Contadores ===== */
.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B3A57;
    text-shadow: 1px 1px 4px rgba(21,77,140,0.6);
}
.counter + p {
    color: #1B3A57;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* ===== Cards ===== */
#servicos .card, #dashboard .card, #resumo .card {
    border-radius: 18px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border: none;
    background: linear-gradient(145deg, #0A2E5C 0%, #154D8C 100%);
    color: #F5F5F5;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}
#servicos .card:hover, #dashboard .card:hover, #resumo .card:hover {
    transform: rotateY(5deg) rotateX(3deg) translateY(-10px);
    box-shadow: 0 35px 60px rgba(0,0,0,0.25);
}

/* ===== Diferenciais ===== */
#diferenciais i {
    color: #4DA3FF;
    transition: transform 0.4s ease, color 0.4s ease;
}
#diferenciais i:hover {
    transform: rotate(15deg) scale(1.3);
    color: #154D8C;
}

/* ===== Depoimentos ===== */
#depoimentos .card {
    border-top: 4px solid #154D8C;
    border-radius: 18px;
    padding: 30px;
    background: #FFFFFF;
    color: #2E2E2E;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
#depoimentos .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

/* ===== Clientes ===== */
#clientes img {
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
    filter: grayscale(85%);
    border-radius: 12px;
}
#clientes img:hover {
    transform: scale(1.07) rotateZ(-2deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    filter: grayscale(0%);
}

/* ===== Formulário ===== */
form input, form textarea {
    border-radius: 14px;
    border: 1px solid #ccc;
    padding: 16px;
    transition: all 0.35s ease;
    background: #F5F5F5;
    color: #2E2E2E;
}
form input:focus, form textarea:focus {
    outline: none;
    border-color: #154D8C;
    box-shadow: 0 0 18px rgba(21,77,140,0.35);
}
form button {
    background: linear-gradient(135deg, #154D8C, #4DA3FF);
    color: #FFFFFF;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}
form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ===== Botões ===== */
.btn-primary, .btn-link, .btn-premium, footer a.btn-success {
    background: linear-gradient(135deg, #154D8C, #4DA3FF);
    color: #FFFFFF;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 10px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
    text-decoration: none;
}
.btn-primary:hover, .btn-link:hover, .btn-premium:hover, footer a.btn-success:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    filter: brightness(1.1);
}

/* ===== Responsividade ===== */
@media (max-width: 768px){
    .hero h1 { font-size: 2.4rem; }
    .hero p { font-size: 1.1rem; }
}

/* ===== Footer ===== */
footer {
    background: linear-gradient(145deg, #0A2E5C 0%, #154D8C 100%);
    color: #F5F5F5;
    text-align: center;
    padding: 25px 0;
}
footer a.btn-success {
    background: linear-gradient(135deg, #154D8C, #4DA3FF);
    color: #FFFFFF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
footer a.btn-success:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}


/* ===== Ajuste Brand Dourado ===== */
.navbar-brand.fw-bold {
    color: white !important; /* dourado premium */
    font-weight: 900;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s, text-shadow 0.3s;
}
.navbar-brand.fw-bold:hover {
    color: #FFD700 !important; /* dourado claro */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}
