
        /* Reset and Base Styles */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        
        body {
            display: flex;
            background-image: url('./public/bg-1.png');
            background-repeat: no-repeat;
            background-size: cover;
            flex-direction: column;
            background-color: #004040;
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            margin: 0;
            padding: 0;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background-color: #012847;
            padding: 15px 0;
        }

        
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            width: 150px;
            cursor: pointer;
        }

        .logo-title {
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
        }

         @media (max-width: 1200px) {
            .logo-title {
                display: none;
            }
            
         }
         .logo-title {
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
        }

         

        .header-buttons {
            display: flex;
            gap: 14px;
            
        }
        
        .btn {
            padding: 3px 21px;
            border-radius: 2px;
            text-decoration: none;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-contact {
            padding: 3px 21px;
            border-radius: 2px;
            margin: 6px 0px;
            cursor: pointer;
             font-weight: bold;
            transition: all 0.3s ease;
        }
         .btn-contact:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        
        .btn-login {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #1DB12D;
            background: transparent;
        }
        .btn-login img {
            color: #1DB12D;
        }
        
        .btn-signup {
            color: #000;
            background-color: #01FF03;
            border: 1px solid #01FF03;
        }

        .btn-mobile {
            display: none;
        }

        @media screen and (max-width: 1200px) {
            .logo {
                width: 100px;
            }
            .btn-login {
                font-size: 12px;
            }
            .btn-signup-header {
                font-size: 12px;
                margin-right: 8px;
                padding-left: 4px;
                padding-right: 4px; 
                text-decoration: underline;
                display: none;
            }
            
             .btn-mobile {
            display: block;
        }
            
        }
        
        .btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        .btn-test {
            background-color: #003535;
            color: white;
            font-size: 12px;
            padding-top: 2px;
            border: 1px solid white;
            box-shadow: 0 0 0 2px #003535;
        }
        
        
        .whatsapp-button a {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            z-index: 100;
            cursor: pointer;
        }

        .whatsapp-button a:hover {
            background-color: #00aa55;
        }



        /* Form */

        .input-area {
            /*
            display: flex;
            flex-direction: column;
            width: 50%;
            */
            margin-top: 20px;
        }

        .input-area input {
            border-radius: 4px;
            border: 0;
            padding: 4px;
            width: 50%;
        }

        
        .contato-container {
           width: 90%;
            height: 100vh;
            background-size: repeat;
            margin-left: 10%;
            margin-right: 10%;
            background-repeat: 3;
            flex-grow: 1;
        }

        

        .contato-container::before {
            content: 'Put Call Bot';
            position: absolute;
            top: 150px;
            font-size: 54px;
            margin-top: 40px;
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            text-transform: uppercase;
            color: #ccc;
            opacity: 0.6;
            letter-spacing: 4px;
            font-weight: 900;
        }

        .contato-section {
            position: relative;
            width: 60%;
             margin-left: 10%;
            margin-right: 10%;
            margin-top: 150px;
        }

        .contato-section::after {
            position: absolute;
            display: block;
            width: 83px;
            height: 100px;
            background: url('./public/robo.png');
            background-size: cover;
            top: -120px;
            content: '';
        }


        @media screen and (max-width: 600px) {
            .contato-section {
            width: 90%;
            margin-right: auto;
            margin-left: auto;
        }
        }

        .contato-container button {
            background-color: #CEFF00;
            color: #004040;
            font-weight: bold;
            width: 120px;
            height: 30px;
            border: 0px;
            margin-top: 20px;
            border-radius: 4px;
        }
        
        
        /* Footer */
        footer {
            background-color: #003535;
            padding: 15px 0;
        }
        
        .social-links {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 20px;
            border-top: 1px solid #ccc;
            padding-top: 20px;
        }

        .social-link-icon {
            display: flex;
            gap: 2px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .copyright {
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .footer-buttons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2px;
        }

         .button-area {
            gap: 10px;
            position: absolute;
            right: -123px;
            top: -123px;
        }

        @media screen and (max-width: 1200px) {
            .social-links {
                flex-direction: column;
            }

             .contato-container::before {
                display: none;
              }

              .contato-section::after {
                display: none;
              }
              .contato-container {
                margin-left: auto;
                margin-right: auto;
                height: 80vh;
              }
              .contato-section {
                width: 100%;
                margin-left: auto;
                margin-right: auto;
                margin-top: 50px;
              }
               .header-buttons {
            gap: 0px;
        }
                .button-area {
                top: -30px;
                left: 0px;
                    display: inline-block;
            }
              .input-area {
            width: 100%;
        }
        .header-buttons {
            gap: 0px;
        }
        }