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

body {
  font-family: 'Fredoka', sans-serif;
  background: linear-gradient(135deg, #fdf8f3 0%, #fff9f5 100%);
  color: #2a2a2a;
  overflow-x: hidden;
}

/* Top Bar */
.top-bar {
  background: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(217, 30, 91, 0.08);
}

.bar-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-organic {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #d91e5b;
}

.logo-flower-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.btn-float {
  background: linear-gradient(135deg, #d91e5b, #f97316);
  color: white;
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: transform 0.3s;
}

.btn-float:hover {
  transform: scale(1.05);
}

/* Hero Organic */
.hero-organic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 40px;
  position: relative;
}

.hero-blob {
  position: relative;
}

.blob-content {
  position: relative;
  z-index: 2;
}

.blob-content::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -60px;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(217, 30, 91, 0.15), rgba(249, 115, 22, 0.15));
  border-radius: 68% 32% 48% 52% / 45% 68% 32% 55%;
  z-index: -1;
  animation: blob-float 6s ease-in-out infinite;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, -30px) rotate(10deg); }
}

.hand-drawn {
  font-family: 'Caveat', cursive;
  font-size: 64px;
  font-weight: 700;
  color: #d91e5b;
  line-height: 1.1;
  margin-bottom: 20px;
}

.subtitle-organic {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.hero-image-organic {
  position: relative;
}

.img-rotate {
  width: 100%;
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
  transform: rotate(-5deg);
  box-shadow: 0 20px 40px rgba(217, 30, 91, 0.2);
}

/* Floating Cards */
.floating-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.card-float {
  background: white;
  padding: 40px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: float-card 3s ease-in-out infinite;
}

.card-f2 {
  animation-delay: 0.5s;
}

.card-f3 {
  animation-delay: 1s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.card-emoji {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}

.card-float h3 {
  color: #d91e5b;
  margin-bottom: 8px;
}

.card-float p {
  color: #999;
  font-size: 13px;
}

/* Arreglos Diagonal Flow */
.arreglos-flow {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.flow-header {
  text-align: center;
  margin-bottom: 80px;
}

.flow-header .hand-drawn {
  font-size: 52px;
  display: inline-block;
}

.arreglo-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.arreglo-left {
  grid-template-columns: 1fr 1fr;
}

.arreglo-right {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.arreglo-right > * {
  direction: ltr;
}

.arreglo-item img {
  width: 100%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: 0 20px 40px rgba(217, 30, 91, 0.15);
  transition: transform 0.3s;
}

.arreglo-item:hover img {
  transform: scale(1.05);
}

.arreglo-info h3 {
  font-size: 28px;
  color: #d91e5b;
  margin-bottom: 15px;
  margin-top: 10px;
}

.arreglo-label {
  display: inline-block;
  background: linear-gradient(135deg, #d91e5b, #f97316);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.arreglo-info p {
  color: #666;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.price {
  color: #f97316;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}

.btn-arreglo {
  background: white;
  color: #d91e5b;
  border: 2px solid #d91e5b;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-arreglo:hover {
  background: #d91e5b;
  color: white;
}

/* Services Circles */
.services-circles {
  padding: 80px 40px;
  background: linear-gradient(135deg, #fff9f5 0%, #fef3f8 100%);
  text-align: center;
}

.services-circles .hand-drawn {
  font-size: 48px;
  margin-bottom: 60px;
}

.circle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.circle {
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(217, 30, 91, 0.1), rgba(249, 115, 22, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px dashed #d91e5b;
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}

.circle:hover {
  border-style: solid;
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(217, 30, 91, 0.2), rgba(249, 115, 22, 0.2));
}

.circle-inner {
  text-align: center;
}

.circle-num {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #d91e5b;
  margin-bottom: 5px;
}

.circle-inner p {
  color: #666;
  font-size: 13px;
}

/* Contact Organic */
.contact-organic {
  padding: 100px 40px;
  background: white;
  text-align: center;
}

.contact-organic .hand-drawn {
  font-size: 48px;
  margin-bottom: 60px;
}

.contact-organic-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.contact-detail h4 {
  color: #d91e5b;
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-detail p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.contact-detail a {
  color: #d91e5b;
  text-decoration: none;
  font-weight: 600;
}

.btn-big-organic {
  background: linear-gradient(135deg, #d91e5b, #f97316);
  color: white;
  border: none;
  padding: 16px 50px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s;
}

.btn-big-organic:hover {
  transform: scale(1.05);
}

/* Modal */
.modal-organic {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-organic-box {
  background: white;
  padding: 50px;
  border-radius: 40px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 20px 60px rgba(217, 30, 91, 0.2);
}

.modal-close-organic {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #d91e5b;
}

.modal-organic-box h3 {
  color: #d91e5b;
  font-size: 24px;
  margin-bottom: 20px;
}

.modal-organic-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-organic-box input,
.modal-organic-box select,
.modal-organic-box textarea {
  padding: 12px;
  border: 2px solid #f0e0e5;
  border-radius: 15px;
  font-family: inherit;
  font-size: 14px;
}

.modal-organic-box input:focus,
.modal-organic-box select:focus,
.modal-organic-box textarea:focus {
  outline: none;
  border-color: #d91e5b;
}

.btn-submit-organic {
  background: linear-gradient(135deg, #d91e5b, #f97316);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
}

.btn-submit-organic:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-organic {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .floating-cards {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .arreglo-item {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .arreglo-right {
    direction: ltr;
  }

  .circle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-organic-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
