        /* Reset and Base Styles */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        
        body {
            display: flex;
            flex-direction: column;
            background-color: #004040;
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
            background-image: url('public/bg-1.png');
            background-repeat: no-repeat;
            background-size: cover;
        }

        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;
        }

        
        .btn {
            padding: 3px 21px;
            border-radius: 2px;
            text-align:center;
            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) {
            header {
                padding: 5px 0px;
            }
            .logo {
                width: 100px;
            }
            .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;
        }

        .button-area {
            gap: 10px;
            position: absolute;
            right: -123px;
            top: -123px;
        }

        @media screen and (max-width: 900px) {
            .button-area {
                display: flex;
                flex-direction: column;
                top: -90px;
                right: 0px;
            }
        }

        


        /* Form */

      

        .input-area {
            display: flex;
            flex-direction: column;
            width: 50%;
            margin-top: 20px;
        }

        .input-area input {
            border-radius: 4px;
            border: 0;
            padding: 4px;
        }

@media screen and (max-width: 600px) {
    .contato-section {
        width: 90%;
        margin-right: auto;
        margin-left: auto;
    }
        .container {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    footer {
        padding-bottom: 90px !important;
    }
}



.contato-container {
    width: 90%;
    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: '';
    }

    .contato-container .button {
        background-color: #CEFF00;
        color: #004040;
        font-weight: bold;
        width: 120px;
        height: 24px;
        border: 0px;
        margin-top: 20px;
        border-radius: 4px;
        cursor: pointer
    }

@media screen and (max-width: 1200px) {

    .contato-container::before {
        display: none;
    }

    .contato-container {
        margin-left: 10px;
        margin-left: auto;
        margin-right: auto;
        margin-top: auto;
        margin-bottom: auto;
    }

    .contato-section {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

        .contato-section h1 {
            text-align: center;
        }
}

.header-buttons {
    display: flex;
    gap: 10px;
}
        
        /* 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;
        }

@media screen and (max-width: 1200px) {
    .social-links {
        flex-direction: column;
    }

        form {
        width: 100%;
        align-items: center;
        justify-content: center;

        }
        .input-area {
        width: 80%;
        }
    .btn2 {
        padding: 3px !important;
        min-width: 70px;
        font-size: 10px
    }
    .btn3 {
        font-size: 10px
    }
    .btn-login {
        padding: 3px !important;
    }
    .blk-login-menu {
        margin-right: 10px;
    }
}
        

pwdeye {
    display:inline;
    position: relative;
    top: 4px;
    left: -30px;
    font-size: 28px;
    color:#000;
    cursor:pointer;
    line-height:10px
}
.pwdeyeclicked,
pwdeye:hover {
    color:darkgray
}
.input-area3 {
    width: 50%;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.input-area2 input {
    border-radius: 4px;
    border: 0;
    padding: 4px;
    width:80%;
    max-width:400px
}

@media (max-width: 1200px) {
    pwdeye {
        font-size: 24px;
    }
    }
.login-space{
    height:80vh
}

.erro-container {
    position: relative;
    top: 50px;
    left: 100px;
    font-weight: bold;
    font-size: 18px
}
