* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f4f4f4;
  color: #333;
}

/* CONTENEDOR */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.header {
  background: #0b2c4a;
  padding: 15px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

.header nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  opacity: 0.9;
}

.header nav a:hover {
  opacity: 1;
}

/* ================= HERO ================= */
.hero {
  background:
    linear-gradient(
      rgba(11,44,74,0.65),
      rgba(11,44,74,0.65)
    ),
    url("../img/banner-fortaleza.jpg") center/110% no-repeat;

  min-height: 75vh;
  display: flex;
  align-items: center;
}

/* Caja de texto */
.hero-content {
  background: rgba(0,0,0,0.40);
  padding: 45px;
  border-left: 6px solid #1e88e5;
  max-width: 520px;
  margin-left: auto;
  margin-right: 8%;
}

/* Texto HERO */
.hero h2 {
  font-size: 42px;
  margin-bottom: 18px;
  line-height: 1.15;
  color: #ffffff;
}

.hero p {
  font-size: 18px;
  margin-bottom: 28px;
  color: #e6e6e6;
}

/* Botón */
.btn {
  background: #1e88e5;
  color: #fff;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
}

.btn:hover {
  background: #1565c0;
}

/* ================= BENEFICIOS ================= */
.beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 60px 0;
}

/* Cards */
.box {
  background: #ffffff;
  padding: 30px;
  border-left: 5px solid #1e88e5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.box h3 {
  margin-bottom: 10px;
  color: #0b2c4a;
}

.box p {
  color: #555;
  line-height: 1.5;
}

/* ================= FOOTER ================= */
.footer {
  background: #0b2c4a;
  color: #ffffff;
  text-align: center;
  padding: 18px;
  font-size: 14px;
}
/* BOTÓN WHATSAPP - SOLICITAR COTIZACIÓN */
.btn-cotizacion {
  display: inline-block;
  background: #0b2c4a; /* azul corporativo Fortaleza */
  color: #ffffff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-cotizacion:hover {
  background: #1e88e5;
  transform: translateY(-2px);
}
.galeria {
  padding: 60px 20px;
  text-align: center;
}

.galeria h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.galeria p {
  margin-bottom: 40px;
  color: #555;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.galeria-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.galeria-grid img:hover {
  transform: scale(1.05);
}
.contacto {
  padding: 80px 20px;
}

.contacto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.contacto-info h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.contacto-info p {
  color: #555;
  margin-bottom: 30px;
}

.btn-whatsapp,
.btn-facebook {
  display: block;
  margin-bottom: 15px;
  padding: 14px;
  text-align: center;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.btn-whatsapp {
  background: #25D366;
}

.btn-facebook {
  background: #1877F2;
}

.btn-whatsapp:hover,
.btn-facebook:hover {
  transform: scale(1.05);
}

/* ===== CONTACTO MOBILE FIRST ===== */

.contacto-wrap {
  min-height: 100vh;
  background: linear-gradient(160deg, #1f2933, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 15px;
}

.contacto-card {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.contacto-card h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 5px;
}

.contacto-card p {
  text-align: center;
  color: #555;
  margin-bottom: 25px;
}

.contacto-card input,
.contacto-card textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.contacto-card textarea {
  min-height: 110px;
  resize: none;
}

.contacto-card button {
  width: 100%;
  padding: 15px;
  background: #111827;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
}

.contacto-card button:hover {
  background: #1f2937;
}

.ok-msg {
  background: #22c55e;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 15px;
}

.contacto-extra {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.btn-wa {
  background: #25D366;
  color: #fff;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
}

.btn-fb {
  background: #1877F2;
  color: #fff;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
}
