/* Reset e Base */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e4a72;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
    margin-right: 0.5rem;
    border-radius: 4px;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1e4a72;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Seção Inaca */
.inaca-section {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background: #f8f9fa;
}

.inaca-image {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #1e4a72;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;

    a {
        line-height: 1rem;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    background-color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #1e4a72, #2980b9);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a3a5f, #1e4a72);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 74, 114, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1e4a72;
    border: 2px solid #1e4a72;
}

.btn-secondary:hover {
    background: #1e4a72;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #1e4a72;
    border: 2px solid #1e4a72;
    padding: 10px 25px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: #1e4a72;
    color: white;
}

/* Sections */
section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e4a72;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Produtos Section */


/* Serviços Section */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.servico-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-5px);
}

.servico-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e4a72, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.servico-icon i {
    font-size: 2rem;
    color: white;
}

.servico-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e4a72;
}

.servico-card p {
    color: #666;
    line-height: 1.6;
}

/* Sobre Section */
.sobre {
    background: #f8f9fa;
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.sobre-text {
    flex: 1;
}

.sobre-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.sobre-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #1e4a72;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-size: 0.9rem;
}

.sobre-image {
    flex: 1;
}

.sobre-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Contato Section */
.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #1e4a72;
    margin-top: 0.25rem;
}

.info-item h3 {
    color: #1e4a72;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

.contato-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e4a72;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #1e4a72;
    color: white;
    padding: 1rem 0 0.3rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
}

.footer-content .footer-section:last-child {
    order: 2;
    margin-left: auto;
}

.footer-section h3 {
    margin-bottom: 0.3rem;
    color: white;
    font-size: 0.9rem;
}

.footer-section .logo span {
    color: white;
    font-size: 1rem;
    font-weight: bold;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.2rem;
    font-size: 0.75rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.75rem;
}

.footer-section a:hover {
    color: white;
}

.inaca-container {
    margin: 0.2rem 0;
}

.inaca-image {
    max-width: 80px;
    height: auto;
    max-height: 35px;
    object-fit: contain;
}

.social-links {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.2rem;
    justify-content: flex-start;
    margin-left: -4px;
}

.social-links a {
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a svg {
    width: 14px;
    height: 14px;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.7rem;
}

/* Responsive Design - Mantém Estrutura */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.95rem;
    }
    
    .hero {
        padding: 120px 30px 80px;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .hero {
        padding: 100px 20px 60px;
        gap: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .servicos-grid,
    .produto-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 600px) {
    .nav-menu {
        gap: 0.6rem;
    }
    
    .nav-menu a {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo-image {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-menu {
        gap: 0.4rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
    
    .logo {
        font-size: 0.9rem;
    }
    
    .logo-image {
        height: 28px;
    }
    
    .hero {
        padding: 90px 15px 50px;
        gap: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .servicos-grid,
    .produto-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Animação do Caminhão */
.caravana-animada {
    position: absolute;
    bottom: -25px;
    left: -80px;
    z-index: 10;
    animation: moveCaminhao 15s linear infinite;
}

.caravana-animada svg {
    width: 80px;
    height: 80px;
    fill: #2c3e50;
    stroke: white;
    stroke-width: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

@keyframes moveCaminhao {
    0% {
        left: -80px;
        transform: scaleX(1);
    }
    45% {
        left: calc(100% + 50px);
        transform: scaleX(1);
    }
    50% {
        left: calc(100% + 50px);
        transform: scaleX(-1);
    }
    95% {
        left: -80px;
        transform: scaleX(-1);
    }
    100% {
        left: -80px;
        transform: scaleX(1);
    }
}

/* Hover para efeito suave (sem pausar) */
.caravana-animada:hover svg {
    fill: #34495e;
    stroke: white;
    stroke-width: 1.5;
    transform: scale(1.05);
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}