:root {
    --primary: #004fd0;
    --primary-dark: #0035a0;
    --secondary: #ff0000;
    --white: #ffffff;
    --black: #0b0b0b;
    --dark-grey: #1a1a1a;
    --light-grey: #f8fafc;
    --accent: #e2e8f0;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --shadow-premium: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

#main-logo {
    height: 85px; /* Logo más grande como solicitado */
    width: auto;
    transition: var(--transition);
}

#main-logo:hover {
    transform: scale(1.05);
}

/* Navigation */
.nav-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
}

/* Language Selector */
.lang-selector {
    display: flex;
    gap: 10px;
    margin-left: 15px;
}

.lang-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.lang-btn:hover {
    transform: scale(1.1);
    border-color: var(--primary);
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lang-btn.active {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0,79,208,0.3);
}

.nav-links li a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary);
    background: rgba(0, 79, 208, 0.08);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 span {
    color: var(--white);
    display: block;
    font-size: 0.6em;
    font-weight: 400;
    font-style: italic;
    margin-top: 10px;
}

.hero p {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 79, 208, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 79, 208, 0.4);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-white { background: var(--white); }
.section-grey { background: var(--light-grey); }

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 60px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--black);
}

.section-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 79, 208, 0.1);
    z-index: -1;
}

/* Vehicle Cards */
.vehicle-card {
    background: var(--white);
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.vehicle-card:hover {
    transform: translateY(-10px);
}

.vehicle-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vehicle-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.spec-item i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.vehicle-slider-container {
    position: relative;
    overflow: hidden;
    background: #000;
    min-height: 400px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    height: 100%;
}

.slider-wrapper img {
    width: 100%;
    min-width: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 12px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Tarifas Table */
.section-tarifas {
    background: linear-gradient(rgba(0, 31, 84, 0.95), rgba(0, 0, 0, 0.95)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: white;
}

.section-tarifas .section-title { color: white; }

.tarifas-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(15px);
    overflow-x: auto;
}

.table-premium {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.table-premium th {
    text-align: left;
    padding: 20px;
    border-bottom: 2px solid var(--primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-premium td {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.table-premium tr:last-child td { border-bottom: none; }
.table-premium tr:hover { background: rgba(255, 255, 255, 0.05); }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px 0;
}

.gallery-item {
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

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

.quote-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.user-name { font-weight: 700; color: var(--text-dark); }

/* Booking Form */
.section-booking { background: var(--light-grey); }
.booking-box {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow-premium);
    max-width: 900px;
    margin: 0 auto;
}

.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    margin-bottom: 10px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.input-field {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--accent);
    border-radius: 12px;
    font-size: 1rem;
    background: #fff;
    transition: var(--transition);
}

.input-field:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 79, 208, 0.1);
}

/* Floating Widgets */
.floating-widgets {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.f-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    text-decoration: none;
}

.f-btn:hover { transform: scale(1.1); }
.f-wa { background: #25d366; }
.f-phone { background: var(--primary); }
.f-mail { background: var(--secondary); }
.f-fb { background: #1877f2; }
.f-ig { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }

.floating-social-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* Footer */
footer {
    background: var(--black);
    color: white;
    padding: 80px 0 40px;
    text-align: center;
}

footer p { opacity: 0.6; margin-bottom: 20px; }
footer a { color: var(--primary); text-decoration: none; font-weight: 700; }

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

/* Responsive */
@media (max-width: 992px) {
    .vehicle-card { grid-template-columns: 1fr; }
    .vehicle-info { padding: 40px; }
    .vehicle-slider-container { min-height: 350px; }
}

@media (max-width: 768px) {
    header { padding: 10px 0; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .form-group-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3rem; }
    .hero-btns { flex-direction: column; }
    .booking-box { padding: 30px; }
}
