* {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
}

body {
  position: relative;
  z-index: 0;
  background: linear-gradient(to bottom, #c0e8f9 5%, #f7c0ce 20%, #f97fa0 100%);
}

.hero-section,
.background-container {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.floating-elements .float {
  position: absolute;
  font-size: 3rem;
  animation: floatUp linear infinite;
  bottom: -50px;
  opacity: 0.5;
}

.floating-elements .float1 {
  left: 10%;
  animation-duration: 6s;
  animation-delay: 0s;
  color: rgba(255, 255, 255, 0.5);
}
.floating-elements .float2 {
  left: 25%;
  animation-duration: 8s;
  animation-delay: 1s;
  color: rgba(255, 255, 255, 0.5);
}
.floating-elements .float3 {
  left: 45%;
  animation-duration: 7s;
  animation-delay: 2s;
  color: rgba(255, 255, 255, 0.5);
}
.floating-elements .float4 {
  left: 65%;
  animation-duration: 9s;
  animation-delay: 3s;
  color: rgba(255, 255, 255, 0.5);
}
.floating-elements .float5 {
  left: 85%;
  animation-duration: 6s;
  animation-delay: 4s;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(-110vh) scale(1.2);
    opacity: 0;
  }
}

.sweet-dreams {
  text-align: center;
  padding: 50px 20px;
  max-width: 700px;
  margin: 0 auto;
  z-index: 1;
}

.heart-container {
  display: inline-block;
  background-color: #f97fa0;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  line-height: 70px;
  margin-bottom: 20px;
  animation: jump 1s infinite;
  z-index: 2;
  position: relative;
}

.heart-container i {
  color: #fff;
  font-size: 28px;
}

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

.sweet-title {
  font-family: "Unbounded", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #6b3e2e;
}

.sweet-title .highlight {
  font-family: "Unbounded", sans-serif;
  color: #f97fa0;
}

.sweet-subtitle {
  margin: 2rem 1rem 0 1rem;
  font-weight: 500;
  color: #6b3e2e;
  font-size: 1.3rem;
}

.sweet-story {
  padding: 80px 20px;
}

.sweet-story .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.story-text {
  flex: 1 1 500px;
  color: #6b3e2e;
}

.story-text h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #6b3e2e;
}

.story-text p {
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 500;
  text-align: justify;
}

.story-image {
  flex: 1 1 100px;
  text-align: center;
}

.story-image img {
  width: 100%;
  max-width: 450px;
  max-height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.special-cards {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 3;
}

.section-title {
  color: #6b3e2e;
  font-family: "Unbounded", sans-serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.title-underline {
  width: 345px;
  height: 7px;
  background: linear-gradient(90deg, #f97fa0, #fdd9c0);
  border-radius: 20px;
  margin: 10px auto;
}

.special-cards .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 40px auto 0 auto;
}

.special-cards .card {
  flex: 1 1 300px;
  min-width: 280px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
  position: relative;
  z-index: 10;
}

.special-cards .card i {
  font-size: 3rem;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 50%;
  display: inline-block;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.special-cards .card:nth-child(1) i {
  color: #f97fa0;
  background-color: rgba(249, 127, 160, 0.2);
}
.special-cards .card:nth-child(2) i {
  color: #ffd966;
  background-color: rgba(255, 217, 102, 0.2);
}
.special-cards .card:nth-child(3) i {
  color: #76d7ea;
  background-color: rgba(118, 215, 234, 0.2);
}

.special-cards .card h3 {
  font-family: "Quicksand", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #6b3e2e;
  letter-spacing: 0.02em;
}

.special-cards .card p {
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #6b3e2e;
}

.special-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.special-cards .card:nth-child(1):hover i {
  transform: scale(1.2);
  background-color: rgba(249, 127, 160, 0.4);
}

.special-cards .card:nth-child(2):hover i {
  transform: scale(1.2);
  background-color: rgba(255, 217, 102, 0.4);
}

.special-cards .card:nth-child(3):hover i {
  transform: scale(1.2);
  background-color: rgba(118, 215, 234, 0.4);
}

.cta-section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.cta-container {
  position: relative;
  z-index: 10;
}

.cta-section h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #6b3e2e;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.cta-section p {
  font-family: "Quicksand", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #6b3e2e;
  margin-bottom: 35px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.shop-btn {
  background-color: #ffffff;
  color: #6b3e2e;
  border: 3px solid #f8bccc;
}

.shop-btn:hover {
  background-color: #f8bccc;
  color: #6b3e2e;
}

.contact-btn {
  background-color: #ffffff;
  color: #6b3e2e;
  border: 3px solid #76d7ea;
}

.contact-btn:hover {
  background-color: #76d7ea;
  color: #6b3e2e;
}

@media (min-width: 1440px) {
  .sweet-title {
    font-size: 3.5rem;
  }

  .sweet-subtitle {
    font-size: 1.5rem;
  }

  .story-text h2 {
    font-size: 3rem;
  }

  .story-text p {
    font-size: 1.2rem;
  }

  .story-image img {
    max-width: 520px;
    max-height: 460px;
  }

  .section-title {
    font-size: 48px;
  }

  .title-underline {
    width: 400px;
  }

  .special-cards .card h3 {
    font-size: 1.8rem;
  }

  .cta-section h2 {
    font-size: 3rem;
  }

  .cta-section p {
    font-size: 1.3rem;
  }
}

@media (max-width: 1024px) {
  .sweet-title {
    font-size: 2.4rem;
  }

  .sweet-subtitle {
    font-size: 1.1rem;
  }

  .sweet-story {
    padding: 60px 24px;
  }

  .sweet-story .container {
    gap: 30px;
    align-items: center;
  }

  .story-text {
    flex: 1 1 45%;
  }

  .story-text h2 {
    font-size: 2rem;
  }

  .story-text p {
    font-size: 1rem;
  }

  .story-image {
    flex: 1 1 45%;
  }

  .story-image img {
    max-width: 100%;
    max-height: 480px;
    width: 100%;
    object-fit: cover;
  }

  .section-title {
    font-size: 32px;
  }

  .title-underline {
    width: 260px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .sweet-dreams {
    padding: 40px 16px;
  }

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

  .sweet-subtitle {
    font-size: 1rem;
    margin: 1.5rem 0 0;
  }

  .heart-container {
    width: 52px;
    height: 52px;
    line-height: 60px;
  }

  .heart-container i {
    font-size: 24px;
  }

  .sweet-story {
    padding: 60px 16px;
  }

  .sweet-story .container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .story-text {
    flex: unset;
    text-align: center;
    width: 100%;
  }

  .story-text h2 {
    font-size: 1.8rem;
  }

  .story-text p {
    font-size: 1rem;
  }

  .story-image {
    width: 100%;
    flex: unset;
  }

  .story-image img {
    width: 100%;
    max-width: 100%;
    max-height: 500px;
    object-fit: cover;
  }

  .special-cards {
    padding: 60px 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .title-underline {
    width: 200px;
    height: 5px;
  }

  .special-cards .card {
    flex: 1 1 100%;
    min-width: unset;
    max-width: 480px;
  }

  .cta-section {
    padding: 60px 16px;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    font-size: 1rem;
    padding: 13px 28px;
  }

  .floating-elements .float {
    font-size: 2rem;
    opacity: 0.3;
  }
}

@media (max-width: 480px) {
  .sweet-title {
    font-size: 1.6rem;
  }

  .sweet-subtitle {
    font-size: 0.95rem;
  }

  .story-text h2 {
    font-size: 1.5rem;
  }

  .story-text p {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 22px;
  }

  .special-cards .card h3 {
    font-size: 1.3rem;
  }

  .special-cards .card p {
    font-size: 0.95rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .floating-elements .float {
    display: none;
  }

  .heart-container {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  .heart-container i {
    font-size: 18px;
  }
}

@media (max-width: 320px) {
  .sweet-dreams {
    padding: 30px 12px;
  }

  .sweet-title {
    font-size: 1.35rem;
  }

  .sweet-subtitle {
    font-size: 0.85rem;
  }

  .heart-container {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }

  .heart-container i {
    font-size: 16px;
  }

  .sweet-story {
    padding: 40px 12px;
  }

  .story-text h2 {
    font-size: 1.3rem;
  }

  .story-text p {
    font-size: 0.88rem;
  }

  .special-cards {
    padding: 40px 12px;
  }

  .section-title {
    font-size: 19px;
  }

  .title-underline {
    width: 160px;
    height: 4px;
  }

  .special-cards .card {
    padding: 22px 14px;
  }

  .special-cards .card h3 {
    font-size: 1.1rem;
  }

  .special-cards .card p {
    font-size: 0.85rem;
  }

  .cta-section {
    padding: 40px 12px;
  }

  .cta-section h2 {
    font-size: 1.2rem;
  }

  .cta-section p {
    font-size: 0.88rem;
  }

  .cta-btn {
    font-size: 0.88rem;
    padding: 11px 20px;
  }
}
