@charset "UTF-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #111;
    color: #fff;
}

.hero {
    position: relative;
    height: 100vh;
    background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 20px;
    max-width: 900px;
}

.logo-principal {
    max-width: 320px;
    width: 80%;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    transition: transform 0.2s, opacity 0.2s;
}

.btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.whatsapp { background: #25D366; }
.call { background: #007BFF; }
.mail { background: #FF6B00; }

.about {
    padding: 60px 20px;
    background: #f5f5f5;
    color: #111;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.services {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.service {
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.brand {
    padding: 40px 20px;
    text-align: center;
    background: #000;
}

.brand img {
    max-width: 300px;
    margin-top: 15px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #000;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
}
