:root {
    --primary-color: #003366; 
    --accent-color: #FF6600; 
    --text-color: #333;
    --light-bg: #f4f4f4;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--primary-color);
    padding: 0 15px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: var(--accent-color);
}

/* Menu Mobile */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,51,102,0.8), rgba(0,51,102,0.6)), url('assets/wallpaper.png'); /* Adicione uma imagem chamada hero-bg.jpg na pasta assets */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 70px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-cta {
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-cta:hover {
    background: #e65c00;
    transform: scale(1.05);
}

/* Global Sections */
.section-padding {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 2rem;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}
/*Carrossel*/
.carousel-container {
    background: #FEE900;
    padding: 30px 0;
    overflow: hidden; 
    position: relative;
    border-bottom: 1px solid #700b0b;
}

.carousel-track {
    display: flex;
    width: calc(250px * 16); 
    animation: scroll 60s linear infinite;
}

.slide {
    width: 250px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.slide img {
    width: 100%;
    height: auto;
    filter: grayscale(0%);
    transition: 0.5s;
    object-fit: contain;
}

.slide img:hover {
    filter: grayscale(0%);
}

/* Sobre */
.about-content {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.slogan {
    margin-top: 15px;
    font-style: italic;
    color: var(--accent-color);
    font-weight: bold;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 300px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* Produtos */
.bg-light {
    background-color: var(--light-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: contain; 
    background-color: #09406B;
    border-bottom: 1px solid #eee;
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.card-body h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.btn-orcamento {
    display: inline-block;
    background-color: #25D366;
    color: var(--white);
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
}

.btn-orcamento:hover {
    background-color: #128C7E;
}

/* Diferenciais */
.features-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Contato */
.bg-dark {
    background-color: #222;
    color: var(--white);
}

.bg-dark .section-title {
    color: var(--white);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-info, .address-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3, .address-info h3 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.social-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.social-btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.whatsapp { background: #48b42c; }
.instagram { background: #E1306C; }
.facebook { background: #3b5998; }

.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: 0.3s;
}
.whatsapp-fixed:hover { transform: scale(1.1); }

/* Rodapé */
footer {
    background: #111;
    color: #888;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

.dev-link a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

/* Responsividade Mobile */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 70px;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 60%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }

    .nav-links li {
        margin: 20px 0;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .hero-content h2 {
        font-size: 2rem;
    }
}

/* Animação de rolagem */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 12)); } /* Move exatamente o tamanho das 12 imagens */
}

/* Pausar quando o mouse estiver em cima */
.carousel-track:hover {
    animation-play-state: paused;
}