:root {
  --bg-color: #FAFAFA;
  --green-teal: #68C2AC;
  --orange: #EE7D30;
  --yellow-sun: #FFD43B;
  --blue-puzzle: #5AA3E8;
  --dark-text: #333333;
}

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

body {
  background-color: #EAEAEA;
  font-family: 'Quicksand', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px 0;
}

/* Container que imita a folha/cartão */
.card-container {
  width: 100%;
  max-width: 480px;
  height: 840px;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 10px 20px;
}

/* Manchas orgânicas no topo */
.organic-top-left {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 180px;
  height: 160px;
  background-color: var(--green-teal);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  opacity: 0.85;
}

.organic-top-right {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  height: 100px;
  background-color: #C1E7E0;
  border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
  opacity: 0.6;
}

/* Sol e Nuvem */
.sun-cloud-group {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 2;
}

.sun {
  width: 50px;
  height: 50px;
  background-color: var(--yellow-sun);
  border-radius: 50%;
  position: relative;
}

.sun-face {
  position: relative;
  width: 100%;
  height: 100%;
}

.sun-face .eye {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #4A3E3D;
  border-radius: 50%;
  top: 18px;
}
.sun-face .eye.left { left: 14px; }
.sun-face .eye.right { right: 14px; }

.sun-face .smile {
  position: absolute;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #4A3E3D;
  border-radius: 0 0 10px 10px;
  bottom: 14px;
  left: 20px;
}

.ray {
  position: absolute;
  width: 3px;
  height: 10px;
  background-color: var(--yellow-sun);
  border-radius: 2px;
}
.r1 { top: -14px; left: 23px; }
.r2 { bottom: -14px; left: 23px; }
.r3 { left: -14px; top: 20px; transform: rotate(90deg); }
.r4 { right: -14px; top: 20px; transform: rotate(90deg); }
.r5 { top: -6px; left: 5px; transform: rotate(-45deg); }
.r6 { top: -6px; right: 5px; transform: rotate(45deg); }
.r7 { bottom: -6px; left: 5px; transform: rotate(45deg); }
.r8 { bottom: -6px; right: 5px; transform: rotate(-45deg); }

.cloud {
  position: absolute;
  bottom: -15px;
  right: -30px;
  width: 45px;
  height: 20px;
  background-color: #BBE1F2;
  border-radius: 20px;
  opacity: 0.9;
}

/* Coração */
.heart-icon-small {
  position: absolute;
  top: 140px;
  right: 40px;
}

/* Peças de Quebra-cabeça */
.puzzle-group {
  position: absolute;
  left: 25px;
  top: 240px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.puzzle-piece {
  font-size: 32px;
}
.puzzle-piece.blue { color: var(--blue-puzzle); transform: rotate(-15deg); }
.puzzle-piece.yellow { color: var(--yellow-sun); transform: rotate(20deg); margin-left: -10px; }
.puzzle-piece.white-ghost { color: #EAEAEA; transform: rotate(-5deg); margin-left: 5px; }

.star-small {
  color: #F8C39A;
  font-size: 18px;
  margin-top: 10px;
  margin-left: 20px;
}

/* Logo principal */
.brand-section {
  margin-top: 130px;
  z-index: 5;
  text-align: center;
  width: 100%;
}

.main-logo {
  max-width: 85%;
  height: auto;
  object-fit: contain;
}

/* Avião de Papel */
.paper-plane-container {
  position: absolute;
  right: 45px;
  bottom: 330px;
}

.plane-icon {
  font-size: 26px;
  color: var(--green-teal);
  transform: rotate(-20deg);
}

.plane-trail {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 10px;
  left: -60px;
}

/* Pontilhados (Grids) */
.dots-grid {
  position: absolute;
  width: 45px;
  height: 35px;
  background-image: radial-gradient(var(--orange) 20%, transparent 20%);
  background-size: 10px 10px;
  opacity: 0.7;
}

.dots-right {
  right: 25px;
  bottom: 270px;
}

.dots-left-bottom {
  left: 30px;
  bottom: 15px;
  z-index: 4;
}

/* Seção de Contato */
.contact-section {
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-bottom: 110px;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #2D3748;
  font-weight: 700;
  font-size: 1.1rem;
}

.whatsapp-link i {
  color: #25D366;
  font-size: 1.5rem;
}

.action-buttons {
  display: flex;
  gap: 35px;
}

.action-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 6px;
}

.btn-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.btn-circle:hover {
  transform: scale(1.08);
}

.btn-green { background-color: var(--green-teal); }
.btn-orange { background-color: var(--orange); }

.btn-label {
  font-size: 0.85rem;
  color: #4A5568;
  font-weight: 500;
}

/* Elementos do Rodapé */
.footer-decorations {
  position: absolute;
  width: 100%;
  height: 160px;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 3;
}

.plant-illustration {
  position: absolute;
  left: 15px;
  bottom: 30px;
}

/* Casinha de blocos */
.toy-house {
  position: absolute;
  right: 25px;
  bottom: 35px;
  width: 90px;
  height: 90px;
}

.roof {
  width: 0;
  height: 0;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-bottom: 28px solid var(--orange);
  position: absolute;
  top: 0;
  left: 10px;
}

.house-body {
  width: 60px;
  height: 45px;
  background-color: var(--green-teal);
  position: absolute;
  top: 28px;
  left: 15px;
  border-radius: 4px;
}

.door-arch {
  width: 22px;
  height: 30px;
  background-color: #FFFFFF;
  border-radius: 12px 12px 0 0;
  position: absolute;
  bottom: 0;
  left: 19px;
}

.block-orange {
  width: 25px;
  height: 25px;
  background-color: var(--orange);
  position: absolute;
  bottom: 0;
  left: -8px;
  border-radius: 3px;
}

.block-yellow {
  width: 25px;
  height: 20px;
  background-color: var(--yellow-sun);
  position: absolute;
  bottom: -10px;
  left: -12px;
  border-radius: 3px;
}

.block-blue-arch {
  width: 40px;
  height: 25px;
  background-color: var(--blue-puzzle);
  position: absolute;
  bottom: -10px;
  right: -5px;
  border-radius: 12px 12px 0 0;
}

.star-footer {
  position: absolute;
  top: -15px;
  right: -10px;
  color: #F8C39A;
  font-size: 16px;
}

/* Ondas do Fundo (Rodapé) */
.wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.wave-orange {
  height: 90px;
  background-color: #FCD8BF;
  border-radius: 80% 20% 0 0 / 100% 100% 0 0;
  z-index: 1;
}

.wave-yellow {
  height: 55px;
  background-color: #FDEBB8;
  border-radius: 100% 0 0 0 / 100% 0 0 0;
  z-index: 2;
}

/* Rodapé de Créditos */
.credits-footer {
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.65rem;
  color: #666666;
  font-weight: 500;
  text-align: center;
}

.credits-footer .powered-logo {
  height: 18px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}
