:root {
    --primary-color: #FF6B00;
    --secondary-color: #333333;
    --accent-color: #FFB800;
    --light-color: #F5F5F5;
    --dark-color: #222222;
    --text-color: #333333;
    --max-width: 1200px;
    --border-radius: 4px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    width: 180px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.cta-header {
    display: flex;
    align-items: center;
}

.phone-button {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.attention-24h {
    background-color: var(--primary-color);
    color: white;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 0.7rem;
    margin-left: 5px;
    font-weight: bold;
}

.phone-button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/a-photo-of-a-white-ford-transit-van-with_N7tswcKSTkGoSn_1uXzdKw_A2k17qlCSzOEPuBon6LwrA.jpeg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--secondary-color);
}

/* Servicios Destacados */
.servicios-destacados {
    padding: 60px 0;
    background-color: var(--light-color);
}

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

.servicios-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

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

.servicio-icon {
    margin-bottom: 20px;
}

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

/* Sección Flota */
.flota {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.flota-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.furgoneta-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

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

.furgoneta-info {
    padding: 20px;
}

.furgoneta-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.furgoneta-specs {
    margin: 15px 0;
}

.furgoneta-specs span {
    display: inline-block;
    margin-right: 15px;
    font-size: 0.9rem;
    color: #666;
}

.furgoneta-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 10px;
}

/* Sección Precios */
.precios {
    padding: 80px 0;
    background-color: var(--light-color);
}

.tabla-precios {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.precio-header, .precio-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 15px 20px;
}

.precio-header {
    background-color: var(--secondary-color);
    color: white;
    font-weight: bold;
}

.precio-row {
    border-bottom: 1px solid #eee;
}

.precio-row:last-child {
    border-bottom: none;
}

.servicios-adicionales {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.servicios-adicionales h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.servicios-adicionales ul {
    list-style: none;
}

.servicios-adicionales li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.servicios-adicionales li:last-child {
    border-bottom: none;
}

.precio {
    font-weight: bold;
    color: var(--primary-color);
}

/* Sección Servicios */
.servicios {
    padding: 80px 0;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.servicio-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.servicio-item:hover {
    transform: translateY(-10px);
}

.servicio-item h3 {
    margin: 15px 0;
    color: var(--secondary-color);
}

/* Sección Reserva */
.reserva {
    padding: 80px 0;
    background-color: var(--light-color);
}

.reserva-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
}

.reserva-form button {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.reserva-form button:hover {
    background-color: #e05c00;
}

/* Sección Contacto */
.contacto {
    padding: 80px 0;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contacto-info {
    display: grid;
    gap: 30px;
}

.contacto-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contacto-item h3 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.mapa {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Sección Presencia Web */
.presencia {
    padding: 60px 0;
    background-color: var(--light-color);
}

.presencia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.presencia-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.presencia-item:hover {
    transform: translateY(-10px);
}

.presencia-item svg {
    margin-bottom: 15px;
}

.presencia-item span {
    font-weight: 500;
}

/* Sección Preguntas Frecuentes */
.preguntas-frecuentes {
    padding: 80px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo p {
    margin-top: 20px;
    color: #bbb;
}

.footer-links h3,
.footer-legal h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #bbb;
}

/* WhatsApp Button */
#whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

#whatsapp-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

#whatsapp-button a:hover {
    transform: scale(1.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    padding: 40px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-icon {
    margin-bottom: 20px;
}

.modal-content h3 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.modal-content p {
    margin-bottom: 15px;
    color: #666;
}

.modal-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    padding: 12px 24px;
}

/* Responsive */
@media (max-width: 992px) {
    nav ul {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contacto-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .precio-header, .precio-row {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .precio-header, .precio-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .precio-header div, .precio-row div {
        padding: 5px 0;
    }
    
    .precio-header div:first-child, .precio-row div:first-child {
        font-weight: bold;
        border-bottom: 1px solid #eee;
    }
}