@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

:root{
    --rojo: #C21D2E;
    --rojo_claro: #fc293f;
}

*{
    font-family: "Josefin Sans";
}

body{
    margin: 0;
    padding: 0;
}

.tachita{
    position: absolute;
    background: none;
    left: 0px;
    top: 4px;
    border: unset;
    width: fit-content;
    font-size: 1rem;
    cursor: pointer;
}

.tachita:hover{
    color: lime;
}

.anim{
    opacity: 0;
}

.socialRow{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    a{
        font-size: 1.3rem;
        color: #fff;
        text-decoration: none;
        transition: all 0.2s ease-in-out;
    }
    a:hover{
        transform: translateY(-2px);
    }
}

.rowReverse{
    flex-direction: row-reverse;
}

.basicRow{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.basicBtn{
    background-color: var(--rojo);
    padding: 16px 0px;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.basicBtn:hover{
    transform: translateY(-2px);
    background-color: var(--rojo_claro);
}

.transBtn{
    text-align: center;
    text-decoration: none;
    padding: 16px 0px;
    color: var(--rojo);
    border: 1px solid var(--rojo);
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.transBtn:hover{
    background-color: var(--rojo);
    color: #fff;
}

.basicHeader{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.contVeriStar{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100px;
    p{
        font-size: 0.9rem;
        text-align: center;
        position: absolute;
        color: var(--rojo);
    }
}

.veriStar{
    height: 100px;
    width: 100px;
    background-image: url(../Images/star.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: spin 12s infinite linear;
}

.contElegantLine{
    margin: 32px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.elegantLine{
    flex-grow: 0;
    flex-shrink: 0;
    height: 0.5px;
    width: 45%;
    background-color: gray;
}

.basicWrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    width: 50%;
}

.basicFullWrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.elegantDot{
    flex-shrink: 0;
    flex-grow: 0;
    height: 3px;
    width: 3px;
    border-radius: 50%;
    background-color: gray;
}

.basicContModal{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 88;
}

.tacha{
    position: absolute;
    right: 10px;
    top: 10px;
    color: black;
    font-size: 1.2rem;
}

.tacha:hover{
    cursor: pointer;
    color: var(--rojo_claro);
}

.whatsModal{
    position: fixed;
    right: 16px;
    bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 250px;
    width: 350px;
    border: 1px solid green;
    background-color: #fff;
    border-radius: 5px;
    z-index: 50;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    header{
        width: 100%;
        padding: 1rem 0;
        background-color: limegreen;
        color: #fff;
        text-align: center;
    }
    .inputsChat{
        margin-top: 8px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 95%;
        input{
            text-indent: 8px;
            height: 22px;
            width: 85%;
            border-radius: 5px;
            border: 1px solid lightgray;
        }
        button{
            height: 32px;
            border-radius: 50%;
            width: 10%;
            background-color: limegreen;
            border: 1px solid green;
            color: #fff;
        }
        button:hover{
            cursor: pointer;
            background-color: #fff;
            color: limegreen;
        }
    }
}

.whatsBody{
    margin-top: 8px;
    padding: 8px;
    height: 140px;
    width: 95%;
    border: 1px solid bisque;
    background-color: lightgray;
    border-radius: 5px;
    background-image: url(../Images/watsBanner.jpg);
    background-size: cover;
    box-sizing: border-box;
    .message{
        position: relative;
        font-size: 0.9rem;
        padding: 8px;
        background-color: #fff;
        border: 1px solid lightgray;
        border-radius: 5px;
        .messageDate{
            position: absolute;
            right: 8px;
            bottom: 4px;
            font-size: 0.7rem;
            color: gray;
        }
    }
}


.blankSection, .blankSectionRow, .blankSectionRowR{
    margin: 128px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-inline: 10%;
    box-sizing: border-box;
    h2{
        font-size: 2rem;
        font-weight: 300;
        width: 70%;
        text-wrap: balance;
    }
    .contStats{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 64px;
        font-size: 1.4rem;
    }
}

.blankSectionRow, .blankSectionRowR{
    margin: 94px 0px;
    padding: 64px 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-inline: 64px;
    overflow: hidden;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    img{
        box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    }
    h2{
        font-weight: 400;
    }
}

.blankSectionRowR{
    flex-direction: row-reverse;
}

.blankSectionImg{
    height: 400px;
}

.blankSectionContent{
    display: flex;
    flex-direction: column;
    width: 40%;
    p{
        font-size: 1rem;
    }
    a{
        margin-top: 16px;
        width: 100%;
    }
}

.movingBg{
    background: #fff;
    --gap: 90px;
    --line: 1px;
    --color: rgba(134, 134, 134, 0.5);

    background-image: linear-gradient(
      -90deg,
      transparent calc(var(--gap) - var(--line)),
      var(--color) calc(var(--gap) - var(--line) + 1px),
      var(--color) var(--gap)
    ),
    linear-gradient(
      0deg,
      transparent calc(var(--gap) - var(--line)),
      var(--color) calc(var(--gap) - var(--line) + 1px),
      var(--color) var(--gap)
    );
    background-size: var(--gap) var(--gap);
    animation: moveBg 5s linear infinite;
}

@keyframes moveBg{
    0%{
        background-position-x: 0px;
    }

    100%{
        background-position-x: 90px;
    }
}

@keyframes spin{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.ui-checkbox {
    --primary-color: #1677ff;
    --secondary-color: #fff;
    --primary-hover-color: #4096ff;
    /* checkbox */
    --checkbox-diameter: 20px;
    --checkbox-border-radius: 5px;
    --checkbox-border-color: #d9d9d9;
    --checkbox-border-width: 1px;
    --checkbox-border-style: solid;
    /* checkmark */
    --checkmark-size: 1.2;
  }
  
  .ui-checkbox, 
  .ui-checkbox *, 
  .ui-checkbox *::before, 
  .ui-checkbox *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  .ui-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: var(--checkbox-diameter);
    height: var(--checkbox-diameter);
    border-radius: var(--checkbox-border-radius);
    background: var(--secondary-color);
    border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
  }
  
  .ui-checkbox::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
    box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
    border-radius: inherit;
    opacity: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
    -o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
    transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  }
  
  .ui-checkbox::before {
    top: 40%;
    left: 50%;
    content: "";
    position: absolute;
    width: 4px;
    height: 7px;
    border-right: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
    -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
    transform: translate(-50%, -50%) rotate(45deg) scale(0);
    opacity: 0;
    -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
    -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
    transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
  }
  
  /* actions */
  
  .ui-checkbox:hover {
    border-color: var(--primary-color);
  }
  
  .ui-checkbox:checked {
    background: var(--primary-color);
    border-color: transparent;
  }
  
  .ui-checkbox:checked::before {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
    -ms-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
    transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
    -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
    -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
    transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  }
  
  .ui-checkbox:active:not(:checked)::after {
    -webkit-transition: none;
    -o-transition: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    transition: none;
    opacity: 1;
  }

@media(max-width:808px){

    .blankSectionContent{
        width: 100%;
    }

    .blankSectionRow, .blankSectionRowR{
        flex-direction: column;
        padding-inline: 32px;
        img{
            height: auto;
            width: 100%;
            margin-bottom: 32px;
        }
    }

}

@media(max-width:508px){

    .blankSectionRow, .blankSectionRowR{
        padding-inline: 16px;
        h2{
            font-size: 2rem;
            font-weight: 700;
        }
    }

    .blankSection, .blankSectionRow, .blankSectionRowR{
        margin-top: 48px;
        .contStats{
           flex-direction: column;
           align-items: start;
           gap: 16px;
        }
    }
}