/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* ESTILOS GLOBALES */
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 40px 0;
}

h1, h2, h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333; /* Texto principal oscuro para contraste */
}

/* ENCABEZADO Y NAVEGACIÓN */
header {
    background: #fff;
    color: #333;
    padding: 10px 0;
    border-bottom: 3px solid #ff6600; /* Naranja más vibrante del logo */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
}

.logo {
    height: 150px; /* Ajustado un poco más grande para el nuevo logo */
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    padding: 15px;
    display: block;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff6600; /* Naranja de acento al pasar el mouse */
}

/* SECCIÓN HERO/INICIO */
.hero {
    /* Puedes poner una imagen de fondo de un paisaje montañoso o un camper en la naturaleza */
    background: url('tu-imagen-de-fondo-aqui.jpg') no-repeat center center/cover; 
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    padding: 20px;
}

.hero::before { /* Capa oscura sobre la imagen para que el texto se vea mejor */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); 
}

.hero-content {
    z-index: 10;
}

.hero h1 {
    font-size: 3em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero h2 {
    font-size: 1.5em;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background: #ff6600; /* Naranja vibrante del logo */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #e65c00; /* Naranja un poco más oscuro al pasar el mouse */
}

/* SECCIÓN DE MODELOS */
#modelos {
    background-color: #fff;
    padding-top: 60px; /* Ajuste de padding */
}

.modelos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.modelo-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: 1px solid #eee; /* Borde sutil */
}

.modelo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.modelo-card h3 {
    color: #ff6600; /* Naranja del logo */
    margin-bottom: 15px;
}

.modelo-card h3 i {
    margin-left: 10px;
    color: #007bff; /* Azul de las montañas */
}

.modelo-card ul {
    list-style: none;
    margin-top: 15px;
    padding-left: 0;
    text-align: left;
    display: inline-block; /* Centrar la lista */
}

.modelo-card ul li {
    margin-bottom: 8px;
    color: #555;
}

.modelo-card ul li i {
    margin-right: 8px;
    color: #007bff; /* Iconos en azul de las montañas */
}

.details-button {
    display: inline-block;
    margin-top: 20px;
    background: #007bff; /* Azul de las montañas */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.details-button:hover {
    background: #0056b3; /* Azul más oscuro al pasar el mouse */
}

/* SECCIÓN DE TECNOLOGÍA */
.full-width-section {
    background-color: #007bff; /* Azul de las montañas */
    color: #fff;
    padding: 60px 0;
}

.full-width-section h2 {
    color: #fff;
}

.tecnologia