@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Outfit:wght@300;400;600&display=swap');

:root {
  --primary: #c5a059;
  /* Elegant Gold */
  --primary-dark: #a68541;
  --secondary: #2c2c2c;
  /* Deep Slate */
  --bg-light: #f9f7f2;
  /* Soft Cream/White */
  --bg-dark: #1a1a1a;
  --glass: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(197, 160, 89, 0.2);
  --text: #2c2c2c;
  --text-dim: #666666;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-light);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  font-family: 'Outfit', sans-serif;
}

h1,
h2,
h3,
.logo {
  font-family: 'Playfair Display', serif;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  z-index: 1000;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary);
}

.logo span {
  color: var(--primary);
  margin-left: 5px;
  font-weight: 400;
}

.nav-links a {
  color: var(--secondary);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.cta-small {
  background: var(--primary);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  color: var(--white) !important;
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
  padding-top: 100px;
  background: var(--white);
}

.hero-content {
  flex: 1;
  max-width: 500px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.feature-card {
  position: relative;
  width: 450px;
  height: 550px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-label {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--white);
  padding: 0.8rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  border-radius: 4px;
}

/* Catalog Section */
.catalog-section {
  padding: 100px 10%;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.catalog-item {
  background: var(--white);
  padding: 1rem;
  border-radius: 8px;
  transition: transform 0.3s;
}

.catalog-item:hover {
  transform: translateY(-10px);
}

.item-img-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.item-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.catalog-item p {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.btn-item-pay {
  width: 100%;
  background: var(--bg-light);
  border: 1px solid var(--glass-border);
  padding: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-item-pay:hover {
  background: var(--primary);
  color: var(--white);
}

/* Custom Payment Section */
.payment-custom-section {
  padding: 100px 10%;
  display: flex;
  justify-content: center;
  background: var(--white);
}

.glass-panel {
  background: var(--bg-light);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.glass-panel h2 {
  margin-bottom: 1rem;
}

.glass-panel p {
  margin-bottom: 2rem;
  color: var(--text-dim);
}

.calc-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.input-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.input-group input {
  width: 100%;
  border: 1px solid var(--glass-border);
  padding: 1rem;
  border-radius: 4px;
  font-size: 1.1rem;
}

.full-width {
  width: 100%;
}

/* Payment Modal */
.payment-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.payment-modal {
  background: var(--white);
  width: 100%;
  max-width: 450px;
  padding: 2.5rem;
  border-radius: 8px;
}

.hidden {
  display: none;
}

.payment-details {
  margin: 2rem 0;
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 4px;
}

.item,
.total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.total {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}

.network-selector label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
}

.network-options {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.network-btn {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--glass-border);
  padding: 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.3s;
}

.network-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-text {
  background: none;
  border: none;
  color: var(--text-dim);
  width: 100%;
  margin-top: 1rem;
  cursor: pointer;
  text-decoration: underline;
}

/* Footer */
footer {
  padding: 60px 10%;
  background: var(--secondary);
  color: var(--white);
  text-align: center;
}

.footer-logo {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--primary);
}

.copyright {
  margin-top: 2rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-social a {
  color: var(--white);
  font-size: 1.5rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--primary);
}

.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .nav-social {
    display: none;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
    height: auto;
  }

  .hero-visual {
    margin-top: 3rem;
    justify-content: center;
  }

  .feature-card {
    width: 300px;
    height: 400px;
  }
}