:root {
  --primary: #0f172a;
  --secondary: #3871c1;
  --accent: #5ce1e7;
  --bg: #ffffff;
  --light-bg: #f5f8fd;
}

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

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: #1e293b;
  line-height: 1.7;
  padding-top: 90px;
}

.container {
  width: 92%;
  max-width: 1300px;
  margin: auto;
}

/* ================= HEADER ================= */

header {
  position: fixed;
  width: 100%;
  top: 0;
  background: var(--primary);
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.logo img {
  height: 55px;
}

/* NAVIGATION */

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.right-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* BUTTONS */

.btn {
  background: var(--secondary);
  padding: 12px 26px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover {
  background: #2c5ca3;
}

.btn-primary {
  background: var(--secondary);
  color: white;
  padding: 15px 35px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
}

.btn-primary:hover {
  background: #2d5ea3;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 15px 35px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  margin-top: 20px;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

/* GOOGLE TRANSLATE */

#google_translate_element select {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* ================= HERO ================= */

.hero-large {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-large img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* ================= SECTIONS ================= */

.section {
  padding: 100px 0;
}

.section-light {
  background: var(--light-bg);
}

/* ================= CARDS ================= */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
  color: #1f3b63;
}

/* ================= FOOTER ================= */

footer {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #cbd5e1;
  padding: 80px 0 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

footer a {
  color: #cbd5e1;
  text-decoration: none;
}

footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 50px;
  font-size: 14px;
  text-align: center;
}

/* ================= COOKIE BANNER ================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--primary);
  color: white;
  padding: 20px;
  display: none;
  z-index: 9999;
}

.cookie-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--secondary);
  color: white;
}

.cookie-decline {
  background: transparent;
  border: 1px solid white;
  color: white;
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 992px) {

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 15px 0;
    gap: 15px;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 15px;
  }

  .right-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

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

  .hero-large {
    height: auto;
    padding: 120px 0;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section {
    padding: 60px 20px;
  }

  .cookie-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 992px) {

  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: #0f172a;
    display: none;
  }

  .nav-links ul {
    flex-direction: column;
    padding: 20px;
  }

  .nav-links ul li {
    margin-bottom: 15px;
  }

  .nav-links.active {
    display: block;
  }

  .right-actions {
    margin-top: 10px;
  }
}
