@import url(portfolio.css);
@import url(responsividade.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

.topbar {
    width: 100%;
    background: #002f57;
    color: white;
    padding: 6px 0;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
}

.topbar-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-item a {
    color: white;
    text-decoration: none;
}

.top-item a:hover {
    text-decoration: underline;
}

.icon {
    font-size: 1rem;
}

header {
    width: 100%;
    position: fixed;
    top: 30px;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0056a3;
}

.logo-img{
    width: 120px; !important
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav ul.open {
    display: flex !important;
    position: fixed;
    top: 78px;
    right: 0;
    height: calc(100vh - 70px);
    width: 50%;
    flex-direction: column;
    gap: 25px;
    background: #fff;
    padding: 40px 30px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.25);
    z-index: 9998;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: .3s;
}

nav a:hover {
    color: #0056a3;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: #003d75;
    border-radius: 10px;
}

.hero {
    position: relative;
    height: 120vh;
    margin-top: 100px;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    flex-shrink: 0;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: .3s;
    z-index: 10;
}

.prev:hover,
.next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: .3s;
}

.dot.active,
.dot:hover {
    background: #fff;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 20;
}

.hero-content h1 {
    font-size: 3rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    margin-top: 15px;
    font-size: 1.3rem;
}


.btn-main {
    margin-top: 30px;
    padding: 12px 28px;
    background: #0056a3;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: .3s;
}

.btn-main:hover {
    background: #003d75;
}

section {
    padding: 80px 20px;
}

.section-container {
    max-width: 1200px;
    margin: auto;
}

.about {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    padding: 80px 20px;
}

.about-image img {
    width: 100%;
    height: 400px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    object-fit: cover;
}

.about-text h2 {
    font-size: 2.6rem;
    color: #0056a3;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-text strong {
    color: #0056a3;
}

@media (max-width: 900px) {
    .about {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-image img {
        width: 90%;
        margin: auto;
    }
}

.services {
    text-align: center;
}

.services h2 {
    font-size: 2.2rem;
    color: #0056a3;
    margin-bottom: 50px;
}

.solucao {
    text-align: center;
    padding: 80px 20px;
    background: #000000;
    color: #fff;
}

.solucao h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.solucao-container {
    position: relative;
    width: 1200px;
    height: 550px;
    margin: auto;
    background: url('sua-imagem-de-fundo.png') center/cover no-repeat;
}

.centro {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.centro img {
    width: 600px;
}

.item {
    width: 220px;
    text-align: center;
    position: absolute;
    color: white;
}

.item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.item p {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.85;
}

.item1 {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
}

.item2 {
    top: 22%;
    right: -10%;
    transform: translateX(-50%);
}

.item3 {
    bottom: 22%;
    right: -10%;
    transform: translateX(-50%);
}

.item4 {
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
}

.item5 {
    bottom: 22%;
    left: -10%;
    transform: translateX(50%);
}

.item6 {
    top: 22%;
    left: -10%;
    transform: translateX(50%);
}

.produtos {
    padding: 100px 20px;
    text-align: center;
    background: #f7f9fc;
}

.produtos h2 {
    font-size: 42px;
    color: #4a7ea0;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.center-btn {
    margin-bottom: 60px;
}

.btn-orcamento {
    padding: 14px 35px;
    background: #0056a3;
    color: #fff;
    border-radius: 30px;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}


.produtos-grid {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.produto {
    display: flex;
    align-items: center;
    width: 45%;
    gap: 25px;
}

.produto-reverso {
    flex-direction: row-reverse;
}

.produto-img img {
    width: 100%;
    max-width: 330px;
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.15));
}

.produto-texto {
    text-align: left;
}

.produto-texto h3 {
    color: #4a7ea0;
    font-size: 26px;
    margin-bottom: 10px;
}

.produto-texto p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.divisor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.divisor .linha {
    height: 180px;
    width: 2px;
    background: #d0d6dd;
}

.divisor .seta {
    font-size: 40px;
    color: #4a7ea0;
}

.clientes {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
}

.clientes h2 {
    font-size: 42px;
    color: #4a7ea0;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 600;
}

.clientes .subtitulo {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.logos-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.logo-item {
    padding: 20px 30px;
    background: #f5f8fc;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.logo-item img {
    width: 150px;
    opacity: 0.85;
    transition: 0.3s;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-item:hover img {
    opacity: 1;
}


.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: .3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card h3 {
    margin-bottom: 15px;
    color: #0056a3;
}

.card p {
    line-height: 1.5;
}

.contact h2 {
    font-size: 2.2rem;
    color: #0056a3;
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

textarea {
    height: 130px;
}

button {
    padding: 12px;
    background: #0056a3;
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #003d75;
}

.footer {
    background: #1d2d3a;
    color: #fff;
    padding-top: 60px;
    margin-top: 60px;
    font-size: 0.95rem;
}

.footer-top {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 0 20px 50px 20px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-logo p {
    line-height: 1.6;
    opacity: 0.8;
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #d6d6d6;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col .footer-dev a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col .footer-dev a:hover {
    color: #00aaff;
}

.footer-col i {
    margin-right: 6px;
    color: #00aaff;
}

.footer-bottom {
    background: #162029;
    padding: 20px;
    text-align: center;
    color: #ddd;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 5px 0;
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    .about {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.4rem;
    }
}

.contato-botao {
    text-align: center;
    padding: 80px 20px;
}

.btn-contato {
    display: inline-block !important;
    padding: 14px 32px !important;
    background-color: #0056a3 !important;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    transition: 0.3s !important;
}

.btn-contato:hover {
    background-color: #003d75 !important;
    transform: translateY(-3px);
}

