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

       
        body {
            font-family: 'Open Sans', sans-serif;
            position: relative;
            background-color: #fff8f6;
            color: #4b2e2e;
            padding: 1.5rem 0 0;
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('imgs/bg.jpg');
            background-color: #8a6e6e;
            background-repeat: repeat;
            opacity: 0.3;
            z-index: -1;
        }

        header {
            text-align: center;
            margin-bottom: 2rem;
        }

        header img {
            width: 100%;
            max-width: 200px;
            margin: 0 auto 1rem;
            display: block;
        }

        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin: 0 0 10px 0;
            text-align: center;
        }

        .h1 {
            font-size: 4rem;
            line-height: 0;
        }

        /*MENU*/
        .dropdown {
            position: relative;
            text-align: center;
          }

          .dropdown .dropdown-action {
            background-color: #d8737e !important; /* rosa vivo */
            color: white;
            padding: 0.75rem 1.5rem !important;
            font-size: 1rem;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            font-family: 'Open Sans', sans-serif;
            animation: pulsaZoom 3s ease-in-out infinite;
            transition: transform 0.3s ease;
            display: inline-block;
            margin-top: 0.6rem;
            width: 30% !important;
          }

          
          /* Animação de zoom lento */
          @keyframes pulsaZoom {
            0%   { transform: scale(1); }
            50%  { transform: scale(1.06); }
            100% { transform: scale(1); }
          }
          
          .dropdown-toggle {
            display: inline-block;
            background-color: #b45f5f;
            color: #fff;
            text-align: center;
            padding: 1rem;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            margin:0;
          }
          .dropdown-content {
            display: none;
            background-color: #f4e2de;
            color: #4b2e2e;
            padding: 1rem;
            margin-top: -1rem;
            border-radius: 8px;
            cursor: pointer;
            text-align: center;
          }
          .dropdown.show .dropdown-content {
            display: block;
          }

        p {
            font-size: 16px;
            margin-bottom: 15px;
            text-align: center;
        }

        p.slogan {
            font-style: italic;
            color: #b45f5f;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        nav {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 1rem 0;
        }

        nav a {
            background-color: #b45f5f;
            color: #fff;
            text-align: center;
            padding: 1rem;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
        }

        .cta {
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 2rem;
        }

        .cta h2 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            margin-top: -15px;

        }

        .cta button {
            background-color: #b45f5f;
            color: #fff;
            border: none;
            padding: 1.6rem;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
            font-weight: bold;
            font-family: 'Open Sans', sans-serif;
            width: 100%;
        }
     
        .share-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        .share-buttons button {
            padding: 0.8rem 1.2rem;
            font-size: 1rem;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            color: white;
        }

        .whatsapp {
            background-color: #12a147;
        }

        .email {
            background-color: #d44638;
        }

        .share-row {
            display: flex;
            align-items: center;
            justify-content: center; /* centraliza horizontalmente */
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1.5rem;
          }
          
          .share-row img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
          }
          
          .share-buttons {
            display: flex;
            align-items: center;
          }
          

        /*CHUVA DE ROSAS*/
        .chuva-rosas {
            pointer-events: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 9999;
            overflow: hidden;
          }
      
          .rosa {
            position: absolute;
            background-image: url('imgs/rosa.png');
            background-size: contain;
            background-repeat: no-repeat;
            animation: cair 4s linear forwards;
          }
      
          @keyframes cair {
            0% {
              transform: translateY(-200px) rotate(0deg);
              opacity: 1;
            }
      
            100% {
              transform: translateY(100vh) rotate(360deg);
              opacity: 0;
            }
          }


          .modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            background: transparent;
            border: none;
            color: #b45f5f;
            cursor: pointer;
            line-height: 1;
            z-index: 1;
          }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .modal-content {
            background-color: #fff8f6;
            padding: 1rem;
            border-radius: 10px;
            max-width: 500px;
            width: 99%;
            color: #4b2e2e;
            max-height: 90vh;
            overflow-y: auto;
        }

        .form-content {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
          }
          
          .google-login {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: -10px;
            
          }

          .google-login button {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background-color: #ffffff;
            color: #444;
            border: 1px solid #999;
            padding: 0.2rem 0.4rem;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
            font-weight: bold;
            font-family: 'Open Sans', sans-serif;
            text-decoration: underline
          }

          .google-login a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background-color: #ffffff;
            color: #444;
            border: 1px solid #999;
            padding: 0.2rem 0.4rem;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
            font-weight: bold;
            font-family: 'Open Sans', sans-serif;
          }

          .google-login button::before {
            content: "";
            display: inline-block;
            width: 30px;
            height: 30px;
            background-image: url('imgs/ico-google.jpg');
            background-size: contain;
            background-repeat: no-repeat;
          }

          .google-login a::before {
            content: "";
            display: inline-block;
            width: 30px;
            height: 30px;
            background-image: url('imgs/ico-google.jpg');
            background-size: contain;
            background-repeat: no-repeat;
          }
          
          .input-row {
            display: flex;
            gap: 1rem;
            justify-content: center;
          }
          
          .input-row input {
            flex: 1;
            padding: 0.5rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            margin-top: -10px;
          }
          
     
        .modal-content button {
            margin-top: 0.5rem;
            padding: 0.6rem 1rem;
            background-color: #b45f5f;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
        }

        .preview-box {
            background-color: #fff;
            border: 1px solid #ccc;
            font-family: 'Open Sans', sans-serif !important;
            color: #444 !important;
            font-size: 12px;
            padding: 5px;
            margin-top: 1rem;
            border-radius: 6px;
            text-align: left;
        }

        footer {
            margin-top: 3rem;
            text-align: center;
            font-size: 0.9rem;
            color: #8a6e6e;
        }


             

        @media (min-width: 600px) {
            .input-row {
                flex-direction: row;
                gap: 1rem;
            }

            .input-row > div {
                flex: 1;
            }
        }

        @media (max-width: 600px) {
            input {
              font-size: 1.1rem;
              padding: 1rem;
            }
        
            label {
              font-size: 1.1rem;
            }

            .google-login {
                align-items: stretch;
              }
            
              .google-login button {
                justify-content: center;
                width: 100%;
              }

              .google-login a {
                justify-content: center;
                width: 100%;
              }
            
              .input-row {
                flex-direction: column;
              }
            
              .input-row input {
                width: 100%;
                font-size: 1.1rem;
                padding: 1rem;
              }
            
              .cta-button button {
                width: 100%;
              }

              .dropdown .dropdown-action {
                background-color: #d8737e !important; /* rosa vivo */
                color: white;
                padding: 0.75rem 1.5rem !important;
                font-size: 1rem;
                border: none;
                border-radius: 50px;
                font-weight: bold;
                cursor: pointer;
                font-family: 'Open Sans', sans-serif;
                animation: pulsaZoom 3s ease-in-out infinite;
                transition: transform 0.3s ease;
                display: inline-block;
                margin-top: 0.6rem;
                width: 100% !important;
              }
          }
