:root {
    --bg-color: #0f1014;
    --text-color: #f0f0f0;
    --text-muted: #a0aab2;
    --accent-color: #ff5722;
    --accent-hover: #ff784e;
    --panel-bg: rgba(255, 255, 255, 0.05);
    --panel-border: rgba(255, 255, 255, 0.1);
    --font-family: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--panel-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--panel-border);
    border-radius: 16px;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-whatsapp {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--panel-border);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-primary.large, .btn-secondary.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 16, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--panel-border);
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

.navbar nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.navbar nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.navbar nav a:hover {
    color: var(--accent-color);
}

.navbar nav a.btn-primary {
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(15,16,20,0.9), rgba(15,16,20,0.4));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 3rem;
    text-align: left;
    margin-right: auto;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Sections */
section {
    padding: 8rem 5%;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 87, 34, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.placeholder-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #1a1c23, #2a2d39);
}

.placeholder-img .icon {
    font-size: 4rem;
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.service-info p {
    color: var(--text-muted);
}

/* Advantages */
.advantages-section {
    background: #14151a;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.adv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(255,87,34,0.1);
    border-radius: 50%;
    color: var(--accent-color);
}

/* Contact */
.contact-section {
    display: flex;
    justify-content: center;
}

.contact-container {
    padding: 4rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.contact-info {
    margin: 2rem 0;
    text-align: left;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 5%;
    border-top: 1px solid var(--panel-border);
    background: #0a0b0e;
}

.footer-logo {
    height: 80px;
    width: auto;
    border-radius: 12px;
}

.footer-content p {
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Badge */
.badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 193, 7, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Brands Section */
.brands-section {
    background: var(--bg-color);
}

.brands-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
}

.brands-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-muted);
    font-weight: 300;
}

.brands-text .highlight {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.5rem;
}

/* Carousel */
.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--panel-border);
    border-bottom: 1px solid var(--panel-border);
}

.carousel-track {
    display: flex;
    width: calc(200px * 18);
    animation: scroll 20s linear infinite;
    align-items: center;
}

.carousel-track img {
    width: 80px;
    height: auto;
    margin: 0 60px;
    opacity: 0.6;
    transition: all 0.3s;
}

.carousel-track img:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 87, 34, 0.5));
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 9)); }
}

/* About Section */
.about-section {
    background: #14151a;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* FAQ & Map */
.faq-map-section {
    background: var(--bg-color);
}

.faq-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    background: var(--panel-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--panel-border);
}

.faq-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-muted);
}

.map-wrapper iframe {
    border-radius: 12px;
}

.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-content { padding: 2rem; }
    .hero-actions { flex-direction: column; }
    .navbar nav ul { display: none; /* simple mobile nav hide for now */ }
    h2 { font-size: 2rem; }
    .about-container, .faq-map-grid { grid-template-columns: 1fr; gap: 2rem; }
    .carousel-track img { width: 60px; margin: 0 30px; }
}
