:root {
    --primary: #b8860b;
    --primary-dark: #8b6914;
    --primary-light: #d4a017;
    --secondary: #1a1a2e;
    --accent: #c9a84c;
    --gold-gradient: linear-gradient(135deg, #d4a017 0%, #b8860b 50%, #8b6914 100%);
    --text: #2d2d2d;
    --text-light: #8a8a8a;
    --bg: #faf9f6;
    --white: #ffffff;
    --radius: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4 {
    color: var(--secondary);
    line-height: 1.2;
}

.section-title {
    text-align: center;
    margin-bottom: 64px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.section-title.light h2 {
    background: linear-gradient(135deg, #f0d68a 0%, #d4a017 50%, #c9a84c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title.light p {
    color: rgba(255, 255, 255, 0.7);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(184, 134, 11, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c9a84c 0%, #d4a017 50%, #b8860b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 160, 23, 0.4);
}

.btn-secondary:hover {
    background: rgba(212, 160, 23, 0.15);
    border-color: rgba(212, 160, 23, 0.7);
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 16px 0;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    mix-blend-mode: multiply;
}

.navbar.scrolled .logo-img {
    height: 80px;
    filter: brightness(0) invert(1);
    mix-blend-mode: normal;
}

.footer-logo {
    height: 130px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover:not(.btn-primary) {
    color: var(--primary-light);
}

.navbar.scrolled .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

.navbar.scrolled .nav-links a:hover:not(.btn-primary) {
    color: var(--primary-light);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: zoomOut 20s ease-out infinite alternate;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 26, 46, 0.92) 0%, rgba(26, 26, 46, 0.55) 100%);
}

.hero-content {
    max-width: 800px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #f0d68a 0%, #d4a017 50%, #c9a84c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Sections */
.section {
    padding: 100px 0;
}

.bg-dark {
    background: linear-gradient(180deg, #1a1a2e 0%, #16162a 100%);
}

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

.gridfleet {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.glass {
    background: var(--white);
    border: 1px solid rgba(184, 134, 11, 0.08);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.12);
    border-color: rgba(184, 134, 11, 0.2);
}

.icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--secondary);
}

/* Fleet Cards */
.fleet-card {
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(184, 134, 11, 0.15);
}

.fleet-card .img-wrapper {
    height: 240px;
    overflow: hidden;
}

.fleet-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.fleet-card:hover img {
    transform: scale(1.1);
}

.fleet-info {
    padding: 32px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0d0d1a 0%, #0a0a14 100%);
    color: var(--text-light);
    padding: 80px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 64px;
}

.brand {
    max-width: 320px;
}

.brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.contact-info h3,
.contact-cta h3 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.2rem;
}

.contact-info p {
    margin-bottom: 12px;
}

.contact-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-light);
}

.contact-cta {
    max-width: 280px;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.7;
}

.copyright {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(184, 134, 11, 0.15);
    color: rgba(255, 255, 255, 0.4);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        transition: var(--transition);
        padding: 40px;
        gap: 24px;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 1.2rem;
    }
    .section {
        padding: 60px 0;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    .logo-img {
        height: 65px;
    }
    .navbar.scrolled .logo-img {
        height: 55px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .gridfleet {
        grid-template-columns: 1fr;
    }
    .grid {
        grid-template-columns: 1fr;
    }
}
