﻿@font-face {
    font-family: 'GellerHeadline';
    src: url('fonts/Geller-TextRegular.otf') format('woff2'),
         url('fonts/Geller-TextRegular.otf') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AribauGrotesk';
    src: url('fonts/AribauGroteskTRIAL-Lt.otf') format('woff2'),
         url('fonts/AribauGroteskTRIAL-Lt.otf') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Estilos Básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    display: flex;
    align-items: center;
    background: #024452;
    color: white;
    padding: 20px 0;
    height: 80px;
}

.rel {
    position: relative;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.networks {
    position: absolute;
    right: 0px;
    top: 5px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.networks img {
    padding-right: 10px;
    width: 25px;
}

.content {
    display: flex;
    background: #002830;
    height: calc(100vh - 80px);
}

.content_one {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    background-image: url(./images/background_girl_2.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
}

.content_one img {
    position: absolute;
    height: 95%;
    right: -175px;
    bottom: 0px;
    z-index: 2;
}

.text_content {
    position: absolute;
    top: 230px;
    display: flex;
    align-items: center;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

.content_two {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form_wrap {
    max-width: 400px;
    width: 80%;
    font-size: 22px;
    line-height: 28px;
    color: #708a93;
    margin-top: 50px;
}

.form {
    margin-top: 20px;
}

.form_text {
    font-family: "";
}

.footer_form {
    display: flex;
    margin-top: 20px;
    align-items: center;
}

.footer_form button {
    padding: 5px 30px;
    margin-right: 20px;
    border: solid 1px #dfa56a;
    background-color: #002830;
    color: #708a93;
    border-radius: 7px;
    font-family: "AribauGrotesk";
    cursor: pointer;
    transition: background-color 0.3s ease
}

.footer_form button:hover {
    background-color: #024452;
    color: #f4f4f4;
    border: solid 1px #f4f4f4;
}

.footer_form span {
    font-family: "AribauGrotesk";
    font-size: 11px;
    line-height: 12px;
}

.input_wrap {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    flex-flow: wrap;
    justify-content: space-between;
}

input::placeholder {
    color: #708a93;
}

input:focus {
    border: none;
    outline: none; 
    border-bottom: solid 1px #f4f4f4;
}

input {
    font-family: "AribauGrotesk";
    padding: 5px 5px 5px 0;
    margin-bottom: 10px;
    background: #002830;
    color: #f4f4f4;
    border: none;
    border-bottom: solid 1px #708a93;
    width: 100%;
    padding-right: 5px;
    position: relative;
    min-width: 190px;
}

.wrap_input {
    position: relative;
}

.circle {
    position: absolute;
    bottom: 8px;
    right: -3px;
    width: 4px;
    height: 4px;
    background-color: #708a93;
    border-radius: 50%;
    z-index: 2;
}

.circle:focus {
    background-color: #f4f4f4; 
}

#content_small {
    display: none;
}

.send_wrap {
    position: relative;
}

.send {
    position: absolute;
    font-size: 14px;
    margin-top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.success-message {
    display: none;
    color: #02d21ebb;
}

.error-message {
    display: none;
    color: #d20202;
}


@media (max-width: 1000px) {
    #content {
        display: none; 
    }

    .content {
        height: 1000px;
    }

    #content_small {
        display: flex;
        flex-direction: column;
    }
    
    .text_content {
        top: 200px;
        width: 90%;
        left: 55%;
    }

    .content_one {
        height: 50%;
        width: 100%;
    }

    .content_one img {
        height: 80%;
        left: 50%;
        transform: translateX(-50%);
    }

    .content_two {
        width: 100%;
    margin: auto;
    }

    .form_wrap {
        margin: 20px;
    }

    .form_text {
        text-align: center;
        display: flex;
        font-size: 20px;
        justify-content: center;
    }

    .wrap_input {
        width: 100%;
    }

    .networks {
        right: -20px;
    }
}

