@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic&display=swap');

@font-face {
  font-family: 'Open Sans Italic';
  src: url('OpenSans-Italic.ttf') format('truetype');
  font-style: italic;
}

body {
  font-family: 'Open Sans', sans-serif; 
  font-size: 16px;
  margin: 0;
  padding: 0;
  background-color: #171717;
  overflow-x: hidden;
}

header {
  background-color: #171717;
  padding: 0.15rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0.125rem;
  position: relative;
  border-bottom: 1px solid #F0F0F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: 'Open Sans', sans-serif; 
}

.logo-container {
  flex: 1;
  display: flex;
  align-items: center;
}

.logo-container .logo-image {
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
}

/* Hamburguesa */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 1rem;
  z-index: 11;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: #ffffff;
  margin: 4px 0;
  transition: 0.4s;
}

.header-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: absolute;
  top: 35%;
  right: 1%;
  font-size: 1.2rem;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0 1.5rem;
  padding: 0;
}

header nav ul li {
  position: relative;
}

header nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #007BFF;
}

header nav ul li:hover > ul.dropdown {
  display: block;
}

header nav ul .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 25%;
  transform: translateX(-50%);
  background-color: rgb(85, 84, 84);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  list-style: none;
  border-radius: 0.5rem;
  overflow: hidden;
  z-index: 10;
  min-width: 160px;
}

header nav ul .dropdown li {
  padding: 0.5rem 1.5rem;
  transition: background-color 0.3s ease;
}

header nav ul .dropdown li:hover {
  background-color: #505050;
}

.column ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.column li {
  color: rgb(98, 98, 98);
  font-family: Italic_Raleway, sans-serif;
  font-style: italic;
}

.container {
  display: flex;
  flex-direction: column;
  padding: 0.2rem;
}

.container h2 {
  display: flex;
  justify-content: center;
  font-size: 2rem;
  letter-spacing: 0.25rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }

  .header-container {
    position: static;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .header-container ul {
    display: none;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #171717;
    border-top: 1px solid #333;
  }

  .header-container ul.show {
    display: flex;
  }

  .header-container ul li {
    width: 100%;
  }

  .header-container ul li a {
    padding: 1rem;
    display: block;
    width: 100%;
  }

  .header-container ul .dropdown {
    position: static;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    background-color: #2c2c2c;
    padding: 0;
  }

  .header-container ul li:hover > .dropdown {
    display: block;
  }

  .header-container ul .dropdown li a {
    padding-left: 2rem;
  }
}

/* ======= Estilo general ======= */
main {
  font-family: 'Open Sans', sans-serif; 
  color: #f2f2f2;
  background-color: #111;
  line-height: 1.6;
}

/* ======= Banner principal ======= */
.solution-banner {
  position: relative;
  width: 100%;
  height: 35vh; /* Altura más compacta */
  overflow: hidden;
  text-align: center;
  z-index: 0;
}


/* ======= Banner principal ======= */
.solution-banner {
  position: relative;
  width: 100%;
  height: 35vh; /* Ajusta la altura como necesites */
  overflow: hidden;
}

.banner-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Texto fuera del banner */
.banner-description {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.banner-description p {
  font-size: 1.2rem;
  color: #f0f0f0;
  background-color: transparent;
}


/* ======= Sección de producto ======= */
.product-details {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 2rem;
  background-color: #1a1a1a;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 300px;
  max-width: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.product-description {
  max-width: 700px;
}

.product-description h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffcc00;
}

.product-description h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #f4c842;
}

.product-description p {
  margin-bottom: 1rem;
  color: #d0d0d0;
}

.product-description ul {
  padding-left: 1.5rem;
  color: #ccc;
  list-style: disc;
}

.product-description li {
  margin-bottom: 0.5rem;
}

blockquote {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #262626;
  border-left: 4px solid #ffcc00;
  font-style: italic;
  color: #f0f0f0;
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.15);
}

/* Imagen decorativa adicional */
.banner-title-img {
  max-width: 500px;
  width: 80%;
  height: auto;
  margin: 0 auto 1rem auto;
  display: block;
  filter: drop-shadow(2px 4px 10px rgba(0, 0, 0, 0.5));
}


/* ======= Call to Action ======= */
.call-to-action {
  background-color: #202020;
  text-align: center;
  padding: 3rem 2rem;
}

.call-to-action h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.call-to-action p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(145deg, #ffcc00, #e6b800);
  color: #000;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 12px rgba(255, 204, 0, 0.3);
}

.cta-button:hover {
  background: linear-gradient(145deg, #e6b800, #ffcc00);
  transform: scale(1.05);
}

/* ======= Responsivo ======= */
@media (max-width: 768px) {
  .product-details {
    flex-direction: column;
    text-align: center;
  }

  .product-image img {
    margin-bottom: 2rem;
  }
}


/* Footer */

footer {
  background-color: #2c2c2c;
  padding: 2rem 1rem;
  color: #bbb;
  font-family: 'Segoe UI', sans-serif;
}

.main-footer {
  background-color: #121212;
  color: #ffffff;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}

.footer-brand {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand img {
  height: 90px;
  margin-bottom: 0.3rem;
}

.company-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #f0f0f0;
  margin: 0;
}

.footer-links,
.footer-contact {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #ffcc00;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.3rem;
}

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: #007bff;
}

.footer-contact p {
  margin: 0.3rem 0;
  line-height: 1.4;
  color: #ddd;
  font-size: 1rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #888;
}

.footer-links ul li a,
.footer-contact a {
  color: #f9c74f; /* Un amarillo cálido y amigable */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-contact a:hover {
  color: #f9844a; /* Naranja suave para el hover */
  text-decoration: underline;
}


/* Responsive */

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    flex: none;
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
