
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff;
    color: #333;
}
.header {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
}
.hero {
    background: #ed1c24;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}
.contact-dropdown {
  position: relative;
  display: inline-block;
  margin-top: 20px;
}

/* Efecto de pulso al pasar el mouse */
.dropdown-btn {
  background-color: #25D366; /* Verde WhatsApp */
  color: #ffffff;
  padding: 12px 24px;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.dropdown-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Deslizamiento suave del desplegable */
.dropdown-content a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 20px;
  color: #ffffff;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.2s ease;
}

.dropdown-content.show {
  display: flex;
}
.dropdown-content a:hover {
  background-color: #1a1a1a;
}

.dropdown-content img {
  height: 20px;
  width: auto;
}
.report-benefit {
    padding: 40px 20px;
    background: #f9f9f9;
    text-align: center;
}
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 15px;
}
.contact-options {
    display: none;
    margin-top: 10px;
}
.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ed1c24;
    color: white;
    font-weight: normal;
}
.icon {
    width: 20px;
    height: 20px;
}    
.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
    width: 100%;
}
.tabla-img {
  display: block;
  width: 1000px;   /* o el ancho real de tu imagen */
  max-width: none;
}
.table-wrapper {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  background-color: #f9f9f9;
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}