
      body {
        width: 100%;
        height: fit-content;
        margin: 0;
        padding: 0;
        background-color: #FFBDC5;
      }
    
      .stack-area {
        width: 100%;
        height: 300vh;
        position: relative;
        background: white;
        display: flex;
      }
    
      .left {
        height: 100vh;
        flex-basis: 50%;
        position: sticky;
        top: 0;
        left: 0;
      }
    
      .right {
        height: 100vh;
        flex-basis: 50%;
        position: sticky;
        top: 0;
      }
    
      /*Styling for the left elements content starts here...*/
      .left {
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        align-items: center;
        flex-direction: column;
      }
    
      .title {
        width: 420px;
        font-size: 84px;
        font-family: poppins;
        font-weight: 700;
        line-height: 88px;
      }
    
      .sub-title {
        width: 420px;
        font-family: poppins;
        font-size: 14px;
        margin-top: 30px;
      }
    
      .daycare-btn {
        font-family: poppins;
        font-size: 14px;
        padding: 15px 30px;
        background: #ee2446;
        color: white;
        border-radius: 8mm;
        border: none;
        outline: none;
        cursor: pointer;
        margin-top: 20px;
      }

      .daycare-btn:hover {
        background: #f00d33;
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      .parent-btn {
        font-family: poppins;
        font-size: 14px;
        padding: 15px 30px;
        background: #2b66f0;
        color: white;
        border-radius: 8mm;
        border: none;
        outline: none;
        cursor: pointer;
        margin-top: 20px;
        margin-left: 10px;
      }

      .parent-btn:hover {
        background: #0950f5;
      }

      :root{
        --daycare: #b30d44;      
        --daycare-dark: #c4104c;  
        --parent: #ee7c89;        
        --parent-dark: #ff6c7d;  
        --text: #FFFFFF;
      }
      
      /* Base comum */
      .daycare-btn,
      .parent-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .5rem;
        padding: .75rem 1.25rem;
        border-radius: 12px;
        font-weight: 600;
        color: var(--text);
        border: none;
        cursor: pointer;
        transition:
          transform 180ms cubic-bezier(.2,.9,.2,1),
          box-shadow 180ms cubic-bezier(.2,.9,.2,1),
          background-color 180ms ease;
        transform: translateY(0) scale(1);
        will-change: transform, box-shadow, background-color;
      }
      
      /* Daycare (primary) */
      .daycare-btn {
        background: var(--daycare);
      }
      .daycare-btn:hover,
      .daycare-btn:focus {
        background: var(--daycare-dark);
        transform: translateY(-4px) scale(1.04);
        box-shadow: 0 12px 28px rgba(79,70,229,0.12);
        outline: none;
      }
      .daycare-btn:focus {
        box-shadow: 0 8px 24px rgba(79,70,229,0.18), 0 0 0 4px rgba(91,123,210,0.12);
      }
      
      /* Parent (secondary) */
      .parent-btn {
        background: var(--parent);
      }
      .parent-btn:hover,
      .parent-btn:focus {
        background: var(--parent-dark);
        transform: translateY(-4px) scale(1.04);
        box-shadow: 0 12px 28px rgba(16,185,129,0.10);
        outline: none;
      }
      .parent-btn:focus {
        box-shadow: 0 8px 24px rgba(16,185,129,0.14), 0 0 0 4px rgba(160,210,180,0.12);
      }
      
      /* Pequeno ícone que desliza (opcional) */
      .daycare-btn .icon,
      .parent-btn .icon {
        display: inline-block;
        transform: translateX(0);
        transition: transform 180ms cubic-bezier(.2,.9,.2,1);
      }
      .daycare-btn:hover .icon,
      .parent-btn:hover .icon {
        transform: translateX(6px);
      }
      
      /* Acessibilidade: respeitar preferência por menos movimento */
      @media (prefers-reduced-motion: reduce) {
        .daycare-btn,
        .parent-btn,
        .daycare-btn .icon,
        .parent-btn .icon {
          transition: none;
          transform: none !important;
          box-shadow: none !important;
        }
      }
      
    
      /*Styling for the left elements content ends here...*/
    
      .card {
        width: 350px;
        height: 350px;
        border-radius: 25px;
        margin-bottom: 10px;
        position: absolute;
        top: calc(50% - 175px);
        left: calc(50% - 175px);
        transition: 0.5s ease-in-out;
      }
    
      .card:nth-child(1) {
        background: #fff5e4;
      }
    
      .card:nth-child(2) {
        background: #ffc4c4;
      }
    
      .card:nth-child(3) {
        background: #ee6983;
      }
    
      .card:nth-child(4) {
        background: #850e35;
      }
    
      /*Styling for the card content starts here...*/
      .card {
        box-sizing: border-box;
        padding: 35px;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
      }
    
      .sub {
        font-family: poppins;
        font-size: 20px;
        font-weight: 700;
      }
    
      .content {
        font-family: poppins;
        font-size: 44px;
        font-weight: 700;
        line-height: 54px;
      }
    
      /*Styling for the card content ends here...*/
    
      .away {
        transform-origin: bottom left;
      }