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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0a0a0a;
  color: white;
  padding: 1rem;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.logo span {
  color: orange;
}

.menu-icon {
  font-size: 1.5rem;
  cursor: pointer;
}

.tagline h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.tagline span {
  color: white;
}

.subtext {
  font-size: 0.7rem;
  color: gray;
  margin-top: 0.2rem;
  margin-bottom: 1rem;
}

.contact-button {
  background-color: #e1550e;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 2rem;
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 8px rgba(225, 85, 14, 0.4);
}

.image-container {
  margin-top: 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 12px solid #fff;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.bottom-cta {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.cta-button {
  width: 100%;                /* ← hace que el botón sea del ancho completo */
  max-width: 100%;            /* ← asegura que no se limite a algún ancho anterior */
  background-color: #000;
  color: #fff;
  border: 10px solid #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 2rem;
  font-weight: bold;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  flex-wrap: wrap;
  box-sizing: border-box;     /* ← asegura que padding no rompa el ancho total */
}

.cta-button .arrow {
  color: #e1550e; /* Flecha naranja */
  font-weight: bold;
  font-size: 1rem;
}

.cta-button .separator {
  color: #fff;
  padding: 0 0.3rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 30px; /* Ajusta según tu imagen */
  width: auto;
}


/* Menú oculto por defecto */
.nav-menu {
  display: none;
  position: absolute;
  top: 60px;
  right: 1rem;
  background-color: #111;
  border: 1px solid #444;
  border-radius: 0.5rem;
  z-index: 1000;
  width: 200px;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}

.nav-menu li {
  border-bottom: 1px solid #333;
}

.nav-menu li:last-child {
  border-bottom: none;
}

.nav-menu a {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: background 0.2s ease;
}

.nav-menu a:hover {
  background-color: #222;
}


.image-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-btn {
  position: relative;
  width: 100%;
  height: 80px;
  border: none;
  border-radius: 2rem;
  background-size: cover;
  background-position: center;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  text-shadow: 0 0 5px black;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* ← Aquí ajustas qué tan oscura es la imagen */
  z-index: 0;
}

.image-btn span {
  position: relative;
  z-index: 1;
}

.our-company {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #111;
  border-radius: 1rem;
  color: white;
}

.our-company h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid orange;
  padding-left: 0.5rem;
}

.company-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.company-content p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

.company-content img {
  width: 100%;
  border-radius: 0.5rem;
  border: 4px solid white;
}


.services {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #0a0a0a;
  color: white;
}

.services h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid orange;
  padding-left: 0.5rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.service-item img {
  width: 100%;
  border-radius: 0.5rem;
  border: 4px solid #fff;
}

.service-item p {
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
}

.videos {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #111;
  color: white;
}

.videos h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid orange;
  padding-left: 0.5rem;
}

.video-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.video-container video {
  width: 100%;
  border-radius: 0.5rem;
  border: 4px solid #fff;
  object-fit: cover;
}

.contact-form-section {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #0a0a0a;
  color: white;
}

.contact-form-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid orange;
  padding-left: 0.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: bold;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  background-color: #1a1a1a;
  color: white;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: orange;
  outline: none;
}

.contact-form button {
  background-color: orange;
  color: black;
  font-weight: bold;
  padding: 0.8rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-form button:hover {
  background-color: #ff9933;
}

