/* Agua Manhattan — Static Site Styles */

:root {
  --radius: 0.75rem;
  --background: #f8fbfd;
  --foreground: #0f172a;
  --card: #ffffff;
  --card-foreground: #0f172a;
  --primary: #0ea5e9;
  --primary-foreground: #ffffff;
  --secondary: #e2e8f0;
  --secondary-foreground: #1e293b;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #38bdf8;
  --accent-foreground: #0f172a;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #e2e8f0;
  --input: #e2e8f0;
  --ring: #0ea5e9;
  --deep: #1e293b;
  --gradient-hero: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
  --gradient-soft: linear-gradient(180deg, #f8fbfd 0%, #e2e8f0 100%);
  --shadow-soft: 0 10px 30px -10px rgba(14, 165, 233, 0.25);
  --font-display: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; border-color: var(--border); }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; height: auto; display: block; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(248, 251, 253, 0.8);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
}

.logo-dot {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--gradient-hero);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.8);
  transition: color 0.2s;
}

.nav-link:hover, .nav-link.active { color: var(--primary); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--input);
  background: var(--card);
  color: var(--foreground);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s;
}

.btn-outline:hover { background: var(--secondary); }

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.2s;
}

.btn-white:hover { background: rgba(255,255,255,0.9); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.2s;
}

.btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* Layout */
.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }

.page { padding: 4rem 0; }

.page h1 { font-size: 2.25rem; font-weight: 800; }
.page h2 { font-size: 1.5rem; font-weight: 700; margin-top: 2.5rem; }
.page p { font-size: 1.125rem; color: rgba(15,23,42,0.9); margin-top: 1.25rem; line-height: 1.75; }
.page ul { margin-top: 1rem; padding-left: 1.5rem; }
.page ul li { margin-top: 0.5rem; color: rgba(15,23,42,0.9); }
.page a { color: var(--primary); text-decoration: underline; }
.page a:hover { text-decoration: none; }
.page .date { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.5rem; }

/* Hero */
.hero {
  background: var(--gradient-soft);
  overflow: hidden;
}

.hero-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.05;
  color: var(--foreground);
}

.hero h1 .gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin-top: 1.5rem;
}

.hero-buttons { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-stats {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
}

.hero-stats .stat-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
}

.hero-stats .stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-img-wrap {
  position: relative;
}

.hero-img-wrap .blur-bg {
  position: absolute;
  inset: -2rem;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.3;
  background: var(--gradient-hero);
}

.hero-img-wrap img {
  position: relative;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

/* Features */
.features {
  max-width: 72rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  border-radius: 1rem;
  background: var(--card);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.feature-card:hover { box-shadow: var(--shadow-soft); }

.feature-card .icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--gradient-hero);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

/* Products */
.products {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.products-header h2 {
  font-size: 1.875rem;
  font-weight: 800;
}

.products-header p {
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.products-grid {
  display: grid;
  gap: 1.25rem;
}

.product-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  text-align: center;
}

.product-card img {
  height: 8rem;
  margin: 0 auto;
  object-fit: contain;
}

.product-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 1rem;
}

.product-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.product-card .product-footer {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card .price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary);
}

.product-card .order-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
}

/* CTA */
.cta {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.cta-box {
  border-radius: 1.5rem;
  padding: 2.5rem;
  background: var(--gradient-hero);
  text-align: center;
}

.cta-box h2 {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--primary-foreground);
}

.cta-box p {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.9);
}

.cta-buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Contact page */
.contact-grid {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  gap: 3rem;
}

.contact-info h1 {
  font-size: 2.25rem;
  font-weight: 800;
}

.contact-info > p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

.contact-details { margin-top: 2.5rem; }

.contact-item { margin-bottom: 1.25rem; }

.contact-item .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
}

.contact-item .value {
  font-weight: 500;
  margin-top: 0.25rem;
}

.contact-item a { color: var(--primary); text-decoration: underline; }

.contact-map {
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 16rem;
  border: 0;
}

.contact-form {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  height: fit-content;
}

.contact-form h2 { font-size: 1.5rem; font-weight: 700; }

.form-fields { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }

.form-fields input,
.form-fields textarea {
  width: 100%;
  border: 1px solid var(--input);
  background: var(--background);
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--foreground);
}

.form-fields textarea { resize: vertical; }

.form-fields button { width: 100%; }

.form-success {
  font-size: 0.875rem;
  color: var(--primary);
  margin-top: 0.5rem;
}

/* Footer */
.footer {
  margin-top: 6rem;
  border-top: 1px solid var(--border);
  background: rgba(226, 232, 240, 0.4);
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  gap: 2rem;
}

.footer-col .logo {
  font-size: 1rem;
}

.footer-col p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.75rem;
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Responsive */
@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 3rem; }
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hero-inner { grid-template-columns: 1fr 1fr; padding: 7rem 1.5rem; }
  .hero h1 { font-size: 3.5rem; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: repeat(4, 1fr); }
  .cta-box { padding: 4rem; }
  .cta-box h2 { font-size: 2.25rem; }
  .page h1 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid.four { grid-template-columns: repeat(4, 1fr); }
  .hero h1 { font-size: 4rem; }
}
