/*
  Autor: Emiliano Ariel Lambert
  DNI: 35559548
  Fecha: 04/08/2025
*/
:root {
    --family: "Sansation", sans-serif;
    --primary: #D92D02;
    --gray: #3f3d3d;
    --light-gray: #3f3d3d40;
    --font-size: small;
}

body {
    margin: 0;
    padding: 0;
    border: none;
    background-color: var(--gray);
    display: flex;
    overflow-x: no-content;
    flex-direction: column;
    justify-content: start;
    width: 98vw;
}

nav {
    min-height: 24vh;
    max-height: 24vh;
    width: 102%;
    border-bottom: 0.08vh solid var(--primary);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.a-logo {
    margin-left: 2vw;
    height: 24vh;
}

.logo {
    height: 24vh;
}

ul {
    display: flex;
    justify-content: space-between;
    width: 40%;
    align-items: center;
    margin-right: 2vw;
    list-style: none;
}

ul li a {
    width: 8vw;
    text-decoration: none;
    color: var(--primary);
    font-family: var(--family);
    font-size: small;
    padding-left: 1.6vh;
    padding-right: 1.6vh;
    padding-bottom: 0.8vh;
    padding-top: 0.8vh;
    transition: background-color 0.3s ease-in-out;
    border-radius: 0.8vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0.08vh solid var(--primary);
    
    svg {
        width: 6vw;
        margin-left: 0.4vw;
    }

}

ul li a:hover {
    background-color: var(--primary);
    color: white;
}

.nets {
    width: 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 4vw;
}

.net-btn {
    border: none;
    background-color: transparent;
}

.net-btn svg {
    color: var(--primary);
    width: 2vw;
}

.net-btn:hover {
    scale: 1.2;
    cursor: pointer;
}

.descriptions {
    margin-top: 4vh;
    width: 99%;
    margin-left: 2%;
    height: 132vh;
    display: flex;
    margin-bottom: 4vh;
    align-items: center;
    justify-content: space-between;
}

.card {
    width: 23vw;
    height: 100%;
}

.card-img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card svg {
    width: 8vw;
    color: white;
}

h2 {
    color: white;
    font-family: var(--family);
    text-align: center;
    width: 100%;
}

.card p {
    color: white;
    font-family: var(--family);
    text-align: left;
    width: 100%;
    height: fit-content;
    font-size: small;
    font-weight: 200;
}

h5 {
    color: white;
    font-family: var(--family);
    text-align: left;
    width: 100%;
    height: fit-content;
    font-weight: 400;
    font-size: medium;
}

.slider {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #232425;
}

.slider-image {
    aspect-ratio: 16/9;
    transition: visibility ease-in-out 0.8s;
    transform-style: flat;
}


.slider-button {
    border: none;
    width: 10%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;

    svg {
        width: 60%;
        color: #ffffff40;
        border-radius: 50%;
    }

}

.slider-button:hover {
    cursor: pointer;

    svg {
        scale: 1.2;
    }

}

.slider-button:active {
    animation-name: tanslateY;
    animation-duration: 0.2s;
    animation-timing-function: ease-in;
}

h3 {
    color: white;
    font-family: var(--family);
    width: auto;
    margin-left: 2vw;
    font-weight: 700;
    font-size: x-large;
}

.main-box {
    width: 100%;
    display: flex !important;
    margin-bottom: 4vh;
    justify-content: start;
    gap: 4vh;
}

.white-separator {
    width: 102%;
    background-color: white;
    height: 0.08vh;
}

.card2 {
    width: 32vw;
    height: auto;
    margin-top: 2vh;
    margin-left: 2vw;
    border-radius: 0.8vh;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.card2-title {
    width: 94%;
    color: white;
    font-family: var(--family);
    font-weight: bold;
    font-size: medium;
    margin-left: 3%;
    margin-right: 3%;
    height: auto;
}

.card2-body {
    width: 94%;
    color: white;
    font-family: var(--family);
    font-weight: 200;
    font-size: small;
    margin-left: 3%;
    margin-right: 3%;
    text-align: justify;
    height: auto;
}

.card2-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 0.8vh 0.8vh 0 0;
}

.card2-top {
    height: 92%;
}

.card2-bottom {
    width: 100%;
    height: 16vh;
    margin-bottom: 2vh;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-right: 2vh;
    margin-bottom: 2vh;
}

.card2-bottom button {
    border: 0.08vh solid white;
    background-color: transparent;
    color: white;
    font-family: var(--family);
    font-size: medium;
    font-weight: bold;
    padding: 0.8vh;
    border-radius: 0.8vh;
    margin-right: 3%;
    height: 8vh;
    transition: background-color 0.3s ease-in-out;
}

.card2-bottom button:hover {
    border: 0.08vh solid var(--gray);
    color: var(--gray);
    background-color: white;
}

.box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2vh;
    padding-bottom: 2vh;
}

.box-image {
    width: 80%;
    margin-bottom: 2vh;
}

.p404 {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.p404-img {
    width: 50%;
}

.p404-body {
    color: white;
    font-family: var(--family);
    font-size: xx-large;
    font-weight: bold;
    text-align: center;
}

.box form {
    width: 80%;
    display: flex;
    justify-content: end;
    margin-bottom: 2vh;
}

.box form button {
    background-color: var(--gray);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    border: none;
    border-radius: 0.8vh;
    width: fit-content;
    height: 8vh;
    color: white;
    font-family: var(--family);

    svg {
        margin-left: 0.8vh;
    }

}

.box form input {
    display: none;
}

.box form button:hover {
    scale: 1.2;
}

.box form button:active {
    animation-name: tanslateY;
    animation-duration: 0.2s;
    animation-timing-function: ease-in;
}

.mail-form {
    padding: 2vh;
    width: 50vw;
    display: flex;
    flex-direction: column;
}

.control-label {
    color: white;
    font-family: var(--family);
    font-size: medium;
    font-weight: bold;
}

.form-control {
          min-width: 100%;
          max-width: 100%;
          min-height: 8vh;
          border: none;
          border-radius: 0.8vh;
          padding: 0.8vh;
          font-size: medium;
          font-family:var(--family);
          text-align: left;
          color: var(--gray);
          background-color: white;
          margin-top: 2vh;
          background-color: #ffffff !important;
}

.form-control:focus {
          outline: none;
          border: none;
          color: var(--gray);
          font-family:var(--family);
          border-radius: 0.8vh;
          padding: 0.8vh;
          min-width: 100%;
          max-width: 100%;
          background-color: #ffffff !important;
}

.form-control:-webkit-autofill {
          outline: none;
          border: none;
          color: var(--gray);
          font-family:var(--family);
          border-radius: 0.8vh;
          padding: 0.8vh;
          min-width: 100%;
          max-width: 100%;
          background-color: #ffffff !important;
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:active {
          -webkit-min-width: 100%;
          -webkit-max-width: 100%;
          -webkit-border: none;
          -webkit-color: var(--gray);
          -webkit-border-radius: 0.8vh;
          -webkit-padding: 0.8vh;
          -webkit-text-fill-color: var(--gray) !important;
          -webkit-font-family: var(--family);
          -webkit-background-clip: text;
          background-color: #ffffff !important;
          -webkit-box-shadow: 0 0 0 30px white inset !important;
          transition: background-color 5000s ease-in-out 0s;
}


.form-area {
          min-width: 100%;
          max-width: 100%;
          min-height: 32vh;
          border: none;
          border-radius: 0.8vh;
          padding: 0.8vh;
          font-size: medium;
          font-family:var(--family);
          text-align: left;
          color: var(--gray);
          background-color: white;
          margin-top: 2vh;
}

.form-area:focus {
          outline: none;
          border: none;
          color: var(--gray);
          font-family:var(--family);
          border-radius: 0.8vh;
          padding: 0.8vh;
          min-width: 100%;
          max-width: 100%;
          min-height: 32vh;
}

.form-area:-webkit-autofill {
          outline: none;
          border: none;
          color: var(--gray);
          font-family:var(--family);
          border-radius: 0.8vh;
          padding: 0.8vh;
          min-width: 100%;
          max-width: 100%;
          min-height: 32vh;
}

.form-area:-webkit-autofill,
.form-area:-webkit-autofill:hover,
.form-area:-webkit-autofill:focus,
.form-area:-webkit-autofill:active {
          -webkit-min-width: 100%;
          -webkit-max-width: 100%;
          -webkit-border: none;
          -webkit-color: var(--gray);
          -webkit-border-radius: 0.8vh;
          -webkit-padding: 0.8vh;
          -webkit-min-height: 32vh;
          -webkit-text-fill-color: var(--gray) !important;
          -webkit-font-family: var(--family);
          -webkit-background-clip: text;
          -webkit-background-color: #ffffff !important;
          transition: background-color 5000s ease-in-out 0s;
}

.form-btn-container {
    margin-top: 2vh;
    width: 100%;
    display: flex;
    justify-content: end;
}

.form-btn-container button {
    background-color: var(--gray);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    border: none;
    border-radius: 0.8vh;
    padding: 2vh;
    width: fit-content;
    height: fit-content;
    color: white;
    font-family: var(--family);

    svg {
        margin-left: 1.6vh;
    }
}

.form-btn-container button:hover {
    scale: 1.2;
}

.form-btn-container button:active {
    animation-name: tanslateY;
    animation-duration: 0.2s;
    animation-timing-function: ease-in;
}

@media all and (max-width: 1024px) {

    nav {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 64vh;
        max-height: 64vh;
        padding: 0;
    }

    .a-logo {
        width: 100%;
    }

    .logo {
        width: 100%;
    }

    ul {
        width: 80vw;
        align-items: center;
        justify-content: justify;
        padding: 0;
    }

    .main-box {
        flex-direction: column;
        height: auto;
    }

    ul li a {
        width: 12vw;
        font-size: medium;
        margin: none;
    }

    .descriptions {
        flex-direction: column;
        height: auto;
    }

    .card {
        width: 100%;
        height: auto;
    }

    .nets {
        margin-top: 2vh;
    }

    .net-btn svg {
        width: 4vw;
    }

    .card2 {
        width: 96%;
    }

    .box form button {
        width: 32vw;
    }
    
    .mail-form {
        width: 92vw;
    }

}

@media all and (max-width: 768px) {

    .nets {
        width: 16%;
    }

    .net-btn svg {
        width: 6vw;
    }
    
    ul {
        width: 80%;
        gap: 2vw;
    }
    
    ul li a {
        flex-direction: column;
        font-size: small;
    }

}

@keyframes tanslateY {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(50%);
    }
    100% {
        transform: translateY(0);
    }
}


@keyframes toUp {
    from {
        transform: scale(0.1);
        opacity: 0.1;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}