/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #f0aac6;
  --secondary: #9fd8d1;
  --accent: #dccbef;
  --gray: #999999;
  --black: #000000;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-dark: #333333;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--gray-dark);
  background: var(--white);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.logo-icon {
  width: 2rem;
  height: 2rem;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: var(--gray-dark);
  font-weight: 500;
  transition: color 0.3s;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 1.5rem;
  height: 2px;
  background: var(--gray-dark);
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(
    135deg,
    rgba(240, 170, 198, 0.1) 0%,
    rgba(159, 216, 209, 0.1) 50%,
    rgba(220, 203, 239, 0.1) 100%
  );
  margin-top: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(240, 170, 198, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
}

.icon {
  width: 1rem;
  height: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--gray);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: #e899b5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 170, 198, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gray-dark);
  border: 2px solid var(--gray-dark);
}

.btn-outline:hover {
  background: var(--gray-dark);
  color: var(--white);
}

.btn-category {
  background: var(--primary);
  color: var(--white);
  margin-top: 1rem;
}

.btn-category:hover {
  background: #e899b5;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.hero-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-images-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-images-col-offset {
  padding-top: 2rem;
}

.hero-image {
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(
    135deg,
    rgba(220, 203, 239, 0.1) 0%,
    rgba(159, 216, 209, 0.1) 50%,
    rgba(240, 170, 198, 0.1) 100%
  );
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-title.text-left {
  text-align: left;
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 42rem;
  margin: 0 auto;
}

/* Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.category-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.category-image {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-content {
  padding: 1.5rem;
}

.category-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.category-content p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.category-list {
  list-style: none;
  margin: 1rem 0;
}

.category-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray);
}

.category-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Build Your Box */
.build-box-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.product-card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-card.selected {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(240, 170, 198, 0.4);
}

.product-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.product-info {
  flex: 1;
}

.product-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(159, 216, 209, 0.2);
  color: var(--secondary);
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.checkbox {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--primary);
  cursor: pointer;
}

.product-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.build-box-sidebar {
  position: sticky;
  top: 6rem;
  height: fit-content;
}

.summary-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.summary-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.summary-count {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.summary-items {
  max-height: 16rem;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.summary-empty {
  text-align: center;
  padding: 2rem 0;
  color: var(--gray);
}

.icon-large {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.75rem;
  opacity: 0.5;
}

.summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.875rem;
}

.summary-item span:first-child {
  flex: 1;
}

.summary-item span:last-child {
  font-weight: 600;
}

.summary-total {
  border-top: 2px solid var(--gray-light);
  padding-top: 1rem;
  margin-top: 1rem;
}

.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.total-row span:first-child {
  font-size: 1.125rem;
  font-weight: 600;
}

.total-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

/* Seasonal Boxes */
.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.seasonal-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.seasonal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.seasonal-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seasonal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seasonal-content {
  padding: 1.5rem;
}

.seasonal-date {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(240, 170, 198, 0.1);
  color: var(--primary);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.seasonal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.seasonal-content p {
  color: var(--gray);
}

/* Corporate Boxes */
.corporate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.corporate-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.corporate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.corporate-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corporate-icon svg {
  width: 2rem;
  height: 2rem;
  stroke: var(--white);
}

.corporate-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.corporate-card p {
  color: var(--gray);
}

.corporate-cta {
  text-align: center;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 1rem;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text {
  font-size: 1.125rem;
  color: var(--gray);
  line-height: 1.7;
}

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

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--white);
}

.feature-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.feature-item p {
  color: var(--gray);
  font-size: 0.875rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.contact-text {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: background 0.3s;
}

.contact-method:hover {
  background: rgba(0, 0, 0, 0.03);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-method h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-method p {
  color: var(--gray);
  font-size: 0.875rem;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--gray-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--gray-light);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--gray-dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  color: var(--white);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
  font-size: 0.875rem;
}

.footer-col h4 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.whatsapp-text-mobile {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-images {
    max-width: 500px;
    margin: 0 auto;
  }

  .build-box-grid {
    grid-template-columns: 1fr;
  }

  .build-box-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-text-mobile {
    display: block;
  }

  .whatsapp-float {
    padding: 0.75rem 1rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .categories-grid,
  .seasonal-grid,
  .corporate-grid {
    grid-template-columns: 1fr;
  }
}
