/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #337eff;
    height: 80px;
    padding: 0;
    color: white;
}

.header-content {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1px;
    padding-top: 4px;
}

.logo {
    height: 60px;
    margin-top: 4px;
}

.site-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    line-height: 1.2;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00bcd4;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #0f172a, #1e3a8a);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
}

/* Services Preview */
.services-preview {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

.services-preview h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #337eff;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 50px;
}

/* Contato */
.contato {
    padding: 60px 0;
    background-color: #ffffff;
}

.contato h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contato p {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 30px;
    color: #444;
}

form {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form label {
    font-weight: bold;
    margin-bottom: 5px;
}

form input,
form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
}

.btn-enviar {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-enviar:hover {
    background-color: #2563eb;
}

.contato-info {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    color: #333;
}

.contato-info p {
    margin: 10px 0;
}

.contato-info a {
    color: #3b82f6;
    text-decoration: none;
}

.contato-info a:hover {
    text-decoration: underline;
}

/* Página Sobre */
.about-content {
    max-width: 1000px;
    margin: 120px auto 80px auto;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.sobre h1 {
    color: #222;
    margin-bottom: 1.5rem;
}

.sobre h2 {
    color: #2979ff;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.sobre p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sobre ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.sobre ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.sobre ul li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    color: green;
}

.sobre {
    margin-top: 800px;
    margin-bottom: 600px;
}

/* Portfólio */
.portifolio-content {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Menu Responsivo (Hamburguer) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    background: white;
    height: 3px;
    width: 25px;
    border-radius: 2px;
}

/* Menu Mobile */
.mobile-menu {
    display: none;
    background-color: #337eff;
    position: absolute;
    top: 80px;
    width: 100%;
    z-index: 999;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu a {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.mobile-menu a:hover {
    background-color: #296fe0;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }
}