/* Reset e base */
body {
    margin: 0;
    color: #111;
    background-color: #fff;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
    color: #004cff;
    margin-top: 0;
}

h5, h6 {
    font-weight: 500;
}

p {
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout helpers */
.vertical-center {
    display: flex;
    align-items: center;
}

.center-center {
    justify-content: center;
}

.space-between {
    justify-content: space-between;
}

.w-auto {
    width: auto !important;
}

.w-100 {
    width: 100% !important;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;

    background-color: #4ebef2;
    background-image: url("https://www.transparenttextures.com/patterns/shattered-dark.png");

    min-height: 90vh;
    border-radius: 0 0 32px 32px;
    flex-wrap: wrap;
}

.hero-text {
    color: #fff;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #002244;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.hero-image img {
    width: 500px;
    border-radius: 12px;
}

/* Botões */
.btn-cta, .btn-primary {
    padding: 12px 25px;
    background-color: #0072ce;
    color: white;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s ease;
    border: none;
}

.btn-cta:hover,
.btn-primary:hover {
    background-color: #005bb5;
}

.cor-alternada{
    background-color: #f4f7fc!important;
}

/* Destaques */
.destaques {
    padding: 60px 0;
    text-align: center;
    min-height: 90vh;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
    height: 100%;
}

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

.card img {
    height: 130px;
    margin-bottom: 20px;
    object-fit: contain;
}

/* Seções Gerais */
.sobre,
.contato,
.diferenciais {
    padding: 60px 0;
    text-align: center;
    min-height: 90vh;
}

footer {
    background: #ededed;
    padding-top: 3rem;
    min-height: 40vh;
    text-align: center;
}

footer .nav-link {
    font-weight: 500 !important;
    color: black;
    padding: 2px 0 !important;
}

/* Lista personalizada */
.diferenciais ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.diferenciais li::before {
    content: "✓";
    color: #0072ce;
    margin-right: 8px;
}

/* Transições suaves em tudo que mexe */
button, .btn, .card, a {
    transition: all 0.3s ease-in-out;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-image img {
        width: 100%;
        max-width: 300px;
        margin-top: 2rem;
    }

    .card {
        margin-bottom: 30px;
    }

    .diferenciais ul {
        text-align: left;
    }

    .diferenciais .row > div {
        margin-bottom: 2rem;
    }
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.3s, border-bottom 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

.navbar-nav .nav-link.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

.navbar-brand img {
    max-height: 50px;
}

.btn-outline-primary {
    border-radius: 20px;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff;
}
body {
    padding-top: 85px;
}
