/* Estilos para a página de seleção de cidades */

:root {
  --hp-red: #e7334a;
  --hp-red-dark: #cf1637;
  --hp-yellow: #ffd51f;
  --hp-yellow-deep: #f7c403;
  --hp-beige: #ffd7a4;
  --hp-brown: #5a2418;
  --hp-text: #ffffff;
  --hp-max-width: 1200px;
}

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

body {
  font-family: "Parkinsans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--hp-red);
  color: var(--hp-text);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.cs-page {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cs-container {
  width: 100%;
  max-width: var(--hp-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.cs-header {
  background-color: var(--hp-red);
  background-image: url("https://hamburguerperfeito.salsaretti.com.br/wp-content/uploads/2025/11/bg-header.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 0 40px;
  text-align: center;
}

.cs-logo {
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

/* CONTEÚDO PRINCIPAL */
.cs-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  text-align: center;
}

.cs-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 50px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.02em;
}

.cs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.cs-city-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--hp-text);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  position: relative;
  overflow: hidden;
}

.cs-city-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cs-city-card:hover::before {
  opacity: 1;
}

.cs-city-card:hover {
  transform: translateY(-8px);
  border-color: var(--hp-yellow);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cs-city-name {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

/* FOOTER */
.cs-footer {
  background: var(--hp-red);
  color: #ffe9d1;
  padding: 30px 0;
  font-size: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: auto;
}

.cs-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cs-footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs-footer-logo {
  width: 90px;
  height: auto;
}

.cs-footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cs-footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cs-footer-links a {
  font-size: 12px;
  color: rgba(255, 233, 209, 0.9);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cs-footer-links a:hover {
  color: #ffffff;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .cs-header {
    padding: 40px 0 30px;
  }

  .cs-logo {
    max-width: 280px;
  }

  .cs-content {
    padding: 40px 0;
  }

  .cs-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .cs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cs-city-card {
    padding: 30px 20px;
    min-height: 100px;
  }

  .cs-city-name {
    font-size: 22px;
  }

  .cs-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cs-footer-right {
    align-items: flex-start;
  }

  .cs-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .cs-city-name {
    font-size: 20px;
  }
}
