* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}


a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 70px 0;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    color: #00215f;
    margin-bottom: 40px;
}


.btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 5px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary {
    background-color: #f4d35e;
    color: #000;
}

.btn-primary:hover {
    background-color: #ffd60a;
}

.btn-secondary {
    background-color: #ffffff;
    color: #00215f;
}

.btn-secondary:hover {
    background-color: #e9ecef;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
}


header {
    background-color: #00215f;
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 3.6rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #f4d35e;
}

.hero {
    background:
        linear-gradient(#00215f, hwb(216 0% 74% / 0.8)),
        url("img/banner.jpg") center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.logo-img {
    height: 100px;
    width: 250px;
    display: block;
}

.logo a {
    display: flex;
    align-items: center;
}


.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.card h3 {
    color: #0d3b66;
    margin-bottom: 1px;
}

.card p {
    margin-bottom: 15px;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #198754;
    margin-bottom: 20px;
}


form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #0d3b66;
}

textarea {
    resize: vertical;
    min-height: 120px;
}


#suporte {
    text-align: center;
}


#empresa p {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

footer {
    background-color: #00215f;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    margin-top: 0;
}

footer p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .btn {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 10px auto;
        text-align: center;
    }

    form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

.product-img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    padding: 10px;
}

#suporte {
    text-align: center;
}

.suporte-texto {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.suporte-card {
    background: #ffffff;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.suporte-img {
    width: 120px;
    height: auto;
    margin: 0 auto 20px;
}

.suporte-card h3 {
    color: #003C8F;
    margin-bottom: 15px;
}

.suporte-card p {
    margin-bottom: 20px;
}

.suporte-info {
    margin-top: 25px;
    font-size: 0.95rem;
    color: #666;
}



.logo-parceira {
    max-width: 220px;
    height: auto;
}

.logos-parceiras {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.parceira {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.botoes-secullum {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
    max-width: 220px;
}

.btn-secullum {
    background: #0d6efd;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 12px 24px;
    margin: 5px;
    cursor: pointer;
}

.btn-secullum:hover {
    background: #ffd700;
    color: #000;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #f4d35e;
    margin: 10px auto 0;
    border-radius: 2px;
}

.card {
    border: 1px solid #e9ecef;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #0d3b66;
    box-shadow: 0 0 5px rgba(13, 59, 102, 0.3);
}

input,
textarea,
select {
    font-family: inherit;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
}