/* ==============================
   RESET & BASE
=============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #f8f9fa;
  color: #202124;
  line-height: 1.6;
}

/* ==============================
   NAVBAR
=============================== */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #dadce0;
  padding: 16px 32px;
}

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

.navbar a {
  color: #1a73e8;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
}

.navbar a:hover {
  opacity: 0.8;
}

/* ==============================
   TITLES / HERO
=============================== */
#contenido{
 
text-align: center;
}
#contenido h1{
color: #061125;
}

.titulos {
  max-width: 1100px;
  margin: 24px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.titulos h3 {
  font-size: 16px;
  font-weight: 500;
  color: #5f6368;
}

/* ==============================
   CONTACT SECTION
=============================== */
.contact {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.nombre {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.lanw {
  font-size: 28px;
  font-weight: 700;
  color: #1a73e8;
  margin-bottom: 12px;
}

.nombre span {
  display: block;
  font-size: 14px;
  color: #5f6368;
  margin-bottom: 16px;
}

.tel {
  display: inline-block;
  padding: 12px 28px;
  background: #1a73e8;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 24px;
  transition: background 0.3s ease;
}

.tel:hover {
  background: #1558b0;
}

/* ==============================
   TABLE STYLES
=============================== */
#contenido {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

#contenido caption {
  caption-side: top;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #1a73e8;
  text-align: left;
  border-bottom: 1px solid #dadce0;
}

#contenido th {
  padding: 16px;
  background: #f1f3f4;
  font-weight: 600;
  text-align: left;
  color: #5f6368;
}

#contenido td {
  padding: 16px;
  border-top: 1px solid #e0e0e0;
  vertical-align: middle;
}

#contenido img {
  display: block;
  margin: auto;
}

#contenido td:last-child {
  font-weight: 700;
  color: #188038;
}

#contenido tr:hover {
  background: #f8f9fa;
}

/*about*/
.price-info {
  max-width: 1100px;
  margin: 40px auto;
  padding: 25px;
  background: #f9f9f9;
  border-radius: 10px;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.price-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #2a7a2a;
  text-align: center;
  font-weight: 700;
}

.price-info p {
  margin-bottom: 18px;
  text-align: justify;
}

.price-info p:last-child {
  margin-bottom: 0;
}

/* ==============================
   FOOTER
=============================== */
.footer {
  background: #ffffff;
  border-top: 1px solid #dadce0;
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: #5f6368;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.footer-bottom {
  margin-top: 12px;
}

/* ==============================
   RESPONSIVE
=============================== */
@media (max-width: 768px) {
  .lanw {
    font-size: 24px;
  }

  #contenido th,
  #contenido td {
    padding: 12px 10px;
    font-size: 13px;
  }

  .tel {
    width: 100%;
    text-align: center;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
  }
}
