
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}


header {
  background-color: #000;
  color: #fff;
  padding: 1rem;
  text-align: center;
}


nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}


section {
  padding: 2rem;
  text-align: center;
}


.cuadro-interactivo {
  background-color: #000;
  color: white;
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}


.titulo-centrado {
  text-align: center;
  margin-bottom: 0.3rem;
}

.titulo-link {
  color: white;
  text-decoration: none;
  font-size: 2.5rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

.titulo-link:hover {
  color: #d4af37;
}


.contenedor-apartados {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 20000px;
  margin: 0 auto;
}


.apartados ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin-top: -30px;
}

.apartados a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

.apartados a:hover {
  color: #d4af37;
}


.logo-centrado {
  text-align: center;
}

.logo-mercedes {
  width: 150px;
  height: auto;
  margin-right: 800px;
  margin-top: -20px;
  margin-bottom: 40px;
}










* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --accent-color: #9c1b10;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --light-grey: #eaeaea;
    --dark-grey: #444;
}

body {
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: black;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent-color);
}

nav ul li a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/api/placeholder/1200/400');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 170px 0 100px;
    margin-bottom: 50px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero h2 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-main {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.contact-main .container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info h3,
.contact-form h3,
.map h3 {
    margin-bottom: 30px;
    font-size: 24px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 10px;
}

.contact-info h3:after,
.contact-form h3:after,
.map h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.info-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.info-item .icon {
    font-size: 22px;
    margin-right: 15px;
    color: var(--accent-color);
    min-width: 30px;
    text-align: center;
}

.info-item p {
    line-height: 1.5;
}

.social-media {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color:#cc3d3d;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-grey);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-grey);
    border-radius: 4px;
    font-size: 16px;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.checkbox {
    display: flex;
    align-items: center;
}

.checkbox input {
    width: auto;
    margin-right: 10px;
}

.checkbox label {
    margin-bottom: 0;
    font-size: 14px;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}


.contact-main {
  background-color: #111;
  color: white;
}
.contact-form {
  background-color: #1a1a1a;
  color: white;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  background-color: #222;
  color: white;
  border: 1px solid #555;
}
.contact-form label {
  color: #ccc;
}


.map {
  background-color: #000;
  padding: 60px 0;
  color: white;
  text-align: center;
}

.map h3 {
  font-size: 28px;
  margin-bottom: 25px;
  border-bottom: 3px solid #00a3e0;
  display: inline-block;
  padding-bottom: 5px;
}

.map-container {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 163, 224, 0.3);
}

.map-container img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.9);
}


footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.95rem;
  border-top: 1px solid #444;
}

footer p {
  margin: 0.5rem 0;
}

footer a {
  color: #ccc;
  text-decoration: underline;
  margin: 0 10px;
}

footer a:hover {
  color: #fff;
}

footer .social-icons {
  margin-top: 1rem;
}

footer .social-icons a {
  margin: 0 15px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

footer .social-icons a:hover {
  color: #fff;
}




.map {
    padding: 60px 0;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container img {
    width: 100%;
    display: block;
}

.cta {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0;
}

.cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 18px;
}

.btn-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-cta:hover {
    background-color: #0080b3;
}

.cta-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}