/* style.css */
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: black;
}

/* ===== NAVBAR SUPERIOR (GRIS) ===== */
.top-bar {
    background-color: #696969;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
}

.top-bar a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.phone {
    font-weight: bold;
}

/* ===== NAVBAR INFERIOR (NARANJA) ===== */
.main-nav {
    background-color: #f17500;
    padding: 15px 30px;
}

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

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* BOTÓN HAMBURGUESA */
.hamburger {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* HERO */
.hero {
    background-color: #696969;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

/* CONTENIDO */
ul {
	list-style-type: disc;
	list-style-position: inside;
	padding: 0;
	text-align: center;
}

li {
	margin-bottom: 5px;
}
.page {
    padding: 60px 20px;
    text-align: center;
}

/* FORM */
form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

input, textarea {
    margin: 10px 0;
    padding: 10px;
}

button {
    background-color: #f17500;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

/* FOOTER */
footer {
    background-color: #696969;
    color: white;
    padding: 20px;
    position: relative;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footer-right {
    position: absolute;
    right: 20px;
    font-size: 14px;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .menu {
        display: none;
        flex-direction: column;
        margin-top: 10px;
    }

    .menu.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-right {
        position: static;
        margin-top: 10px;
        text-align: center;
    }
}

