* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background-color: var(--backColor);
}

:root {
    --principalColor: rgb(91, 6, 114);
    --secundaryColor: rgb(194, 158, 254);
    --thirdColor: rgb(138, 11, 210);
    --backColor: rgb(242, 233, 254);
    --textColor: rgb(119, 119, 119);
    --colorWhite: rgb(255, 255, 255);
    --colorBlack: rgb(0, 0, 0);
    --spaceSections: 30px;
}

h1 {
    font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
    color: var(--colorWhite);
}

h2 {
    font-size: clamp(1.75rem, 2vw + 0.75rem, 2.5rem);
    color: var(--principalColor);
}

h3 {
    font-size: clamp(1.5rem, 1.5vw + 0.75rem, 2rem);
    color: var(--principalColor);
}

h4 {
    font-size: clamp(1rem, 1vw + 0.5rem, 1.5rem);
    font-weight: 550;
    color: var(--principalColor);
    margin-bottom: 10px;
}

.contStart {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contTextStart {
    width: 70vw;
    height: 100vh;
    position: relative;
}

.contTextStart::before {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--principalColor);
    clip-path: url('#customClip');
    z-index: 3;
}

.contTextStart::after {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--secundaryColor);
    clip-path: url('#customClip2');
    z-index: 2;
}

.contTextStart::before.alt,
.contTextStart::after.alt {
    opacity: 0;
    visibility: hidden;
}

.textStart {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 20px;
    margin-left: 2.5%;
    z-index: 4;
}

.textStart p:nth-of-type(1) {
    font-size: clamp(1.125rem, 0.8077rem + 1.4103vw, 2.5rem);
    font-weight: 600;
    color: var(--colorWhite);
    margin-top: 10px;
}

.textStart p:nth-of-type(2) {
    width: 60%;
    font-size: clamp(0.8125rem, 0.6683rem + 0.641vw, 1.4375rem);
    color: var(--colorWhite);
    margin-top: 15px;
}

.btnStart {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 2%;
}

.btnStart a {
    text-decoration: none;
}

.btnStart a:first-child button {
    width: 350px;
    height: 50px;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    font-size: clamp(1.0625rem, 0.976rem + 0.3846vw, 1.4375rem);
    font-weight: 900;
    color: var(--principalColor);
    background-color: var(--colorWhite);
}

.btnStart a:last-child button {
    width: 50px;
    height: 50px;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--principalColor);
    background-color: var(--colorWhite);
}

.textStart a button i {
    font-size: clamp(1.375rem, 1.3029rem + 0.3205vw, 1.6875rem);
    color: var(--principalColor);
}

.socialMediaStart {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 13vh;
}

.socialMediaStart a {
    text-decoration: none;
    cursor: pointer;
}

.socialMediaStart a i {
    font-size: clamp(1.75rem, 1.5048rem + 1.0897vw, 2.8125rem);
    color: var(--colorWhite);
}

.socialMediaStart i {
    font-size: clamp(1.0625rem, 0.9471rem + 0.5128vw, 1.5625rem);
    color: var(--colorWhite);
}

.socialMediaStart a:nth-of-type(4) {
    font-size: clamp(1.0625rem, 0.9471rem + 0.5128vw, 1.5625rem);
    font-weight: 550;
    color: var(--colorWhite);
}

.contImgStart {
    width: 55vw;
    height: 100vh;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    right: 0;
    z-index: 1;
}

.contImgStart img:nth-of-type(2) {
    display: none;
}

.contImgStart img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:1400px) {
    .btnStart a:first-child button {
        width: 300px;
        height: 48px;
    }

    .btnStart a:last-child button {
        width: 48px;
        height: 48px;
    }
}

@media (max-width:950px) {
    .contTextStart {
        width: 80vw;
    }

    .textStart {
        width: 100%;
    }
}

@media (max-width:850px) {
    .contTextStart {
        width: 100%;
        height: 70vh;
        top: 0;
        position: absolute;
        z-index: 3;
    }

    .textStart p:nth-of-type(1) {
        margin-top: 5px;
    }

    .contTextStart::before {
        clip-path: url('#customClip3');
        opacity: 1;
        visibility: visible;
    }

    .contTextStart::after {
        clip-path: url('#customClip4');
        opacity: 1;
        visibility: visible;
    }

    .contImgStart {
        width: 100%;
        height: 80vh;
        bottom: 0;
        z-index: 1;
    }

    .contImgStart img:nth-of-type(1) {
        display: none;
    }

    .contImgStart img:nth-of-type(2) {
        display: flex;
    }

    .textStart {
        width: 100%;
        height: 50vh;
        align-items: center;
        text-align: center;
        margin-left: 0%;
        z-index: 4;
    }

    .btnStart {
        margin-top: 25px;
        justify-content: center;
    }

    .socialMediaStart {
        gap: 15px;
        margin-top: 3vh;
    }

    .textStart p:nth-of-type(2) {
        width: 75%;
    }

    .btnStart a:first-child button {
        width: 280px;
        height: 45px;
    }

    .btnStart a:last-child button {
        width: 45px;
        height: 45px;
    }
}

@media (max-width:700px) {
    .btnStart {
        margin-top: 15px;
    }

    .textStart p:nth-of-type(2) {
        margin-top: 10px;
    }

    .btnStart a:first-child button {
        width: 250px;
        height: 43px;
    }

    .btnStart a:last-child button {
        width: 43px;
        height: 43px;
    }
}

@media (max-width:650px) {
    .contTextStart {
        height: 80vh;
    }

    .textStart {
        width: 100%;
        height: 60vh;
    }

    .textStart p:nth-of-type(2) {
        width: 80%;
    }

    .btnStart {
        justify-content: center;
    }

    .socialMediaStart {
        gap: 15px;
        margin-top: 3vh;
    }
}

@media (max-width:575px) {
    .contTextStart {
        height: 85vh;
    }

    .textStart p:nth-of-type(2) {
        width: 90%;
    }

    .textStart {
        width: 100%;
        height: 67vh;
    }

    .btnStart a:first-child button {
        width: 245px;
        height: 40px;
    }

    .btnStart a:last-child button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width:414px) {
    .textStart p:nth-of-type(2) {
        width: 95%;
    }

    .textStart {
        width: 100%;
        height: 65vh;
    }

    .btnStart a:first-child button {
        width: 240px;
        height: 37px;
    }

    .btnStart a:last-child button {
        width: 37px;
        height: 37px;
    }
}

.contAbout {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 3%;
    padding: 7% 1%;
}

.backAboutUs {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    z-index: -1;
}

.backAboutUs p {
    margin-top: -3%;
    font-size: clamp(4.375rem, 0.3365rem + 17.9487vw, 21.875rem);
    font-weight: bolder;
    color: rgb(194, 158, 254, .15);
}

.imgAbout {
    width: 55%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgAbout img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.textAbout {
    width: 45%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.descrAbout {
    font-size: clamp(0.9375rem, 0.851rem + 0.3846vw, 1.3125rem);
    font-weight: 550;
    color: var(--textColor);
    margin-top: 8px;
}

.textAbout ul {
    list-style: none;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 30px;
}

.textAbout ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titleAbout {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.titleAbout i {
    font-size: clamp(1.125rem, 1.0529rem + 0.3205vw, 1.4375rem);
    color: var(--textColor);
}

.titleAbout p {
    font-size: clamp(1.0625rem, 0.9615rem + 0.4487vw, 1.5rem);
    font-weight: 650;
    color: var(--textColor);
}

.pAbout p {
    font-size: clamp(0.8125rem, 0.7548rem + 0.2564vw, 1.0625rem);
    color: var(--textColor);
}

@media (max-width:1559px) {
    .contAbout {
        width: 100%;
        gap: 2%;
        padding: 5% 0%;
    }

    .textAbout ul {
        margin-top: 20px;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .pAbout p {
        width: 75%;
    }
}

@media (max-width:1400px) {
    .contAbout {
        flex-direction: column;
        gap: 0;
    }

    .imgAbout {
        width: 80%;
        order: 1;
        margin-top: 20px;
    }

    .textAbout {
        width: 80%;
    }

    .pAbout {
        width: 100%;
    }

    .pAbout p {
        width: 100%;
    }

    .titleAbout {
        gap: 10px;
    }
}

@media (max-width:1350px) {
    .imgAbout {
        width: 85%;
    }

    .textAbout {
        width: 85%;
    }
}

@media (max-width:1000px) {
    .imgAbout {
        width: 90%;
    }

    .textAbout {
        width: 90%;
    }

    .titleAbout {
        gap: 7px;
    }
}

@media (max-width:700px) {
    .contAbout {
        padding: 4% 0%;
    }

    .imgAbout {
        width: 95%;
    }

    .textAbout {
        width: 95%;
        align-items: center;
        text-align: center;
    }

    .titleAbout {
        justify-content: center;
        text-align: center;
    }
}

.contVisual {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.squareVisual {
    width: 100%;
    height: 75vh;
    background-color: var(--principalColor);
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.visual {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    padding: 0 .5%;
}

.imgVisual {
    width: 32%;
    display: flex;
    justify-content: center;
    align-items: end;
}

.imgVisual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(91, 6, 114) 85%, transparent 99%);
}

.textVisual {
    width: 32%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.textVisual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.visual .textVisual img:nth-of-type(2) {
    visibility: hidden;
    opacity: 0;
    display: none;
}

.formVisual {
    width: 32%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.formVisual iframe {
    width: 100%;
    height: 736px;
}

@media (max-width:1700px) {
    .visual {
        padding: 0%;
    }
}

@media (max-width:1000px) {
    .contVisual {
        height: auto;
        padding: 50px 0;
    }

    .squareVisual {
        height: 100%;
    }

    .visual {
        height: auto;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .imgVisual {
        display: none;
    }

    .imgVisual img {
        display: none;
    }

    .textVisual {
        width: 80%;
        height: auto;
    }

    .visual .textVisual img:nth-of-type(1) {
        visibility: hidden;
        opacity: 0;
        display: none;
    }

    .visual .textVisual img:nth-of-type(2) {
        visibility: visible;
        opacity: 1;
        display: flex;
    }

    .formVisual {
        width: auto;
        height: 736px;
    }

    .formVisual iframe {
        width: 100%;
        height: 100%;
    }
}

.contServ {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: var(--spaceSections);
    padding: 0 2%;
    margin-bottom: 20px;
}

.titleServ {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.contTargetServ {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 500px;
    place-items: center;
    margin-top: 25px;
    gap: 20px;
}

.targetServ {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--secundaryColor);
    border-radius: 35px;
    box-shadow: 0px 1px 1px rgba(3, 7, 18, 0.03), 0px 5px 4px rgba(3, 7, 18, 0.06), 0px 12px 9px rgba(3, 7, 18, 0.09), 0px 20px 15px rgba(3, 7, 18, 0.12), 0px 32px 24px rgba(3, 7, 18, 0.15);
}

.imgTServ {
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
}

.imgTServ img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
}

.textTServ {
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 3%;
}

.contTargetServ .targetServ:nth-child(5) .textTServ h4 {
    margin-bottom: 0;
}

.contTargetServ .targetServ:nth-child(5) .textTServ {
    height: 100%;
}

.textTServ small {
    font-size: clamp(0.8125rem, 0.7692rem + 0.1923vw, 1rem);
    font-weight: 550;
    color: var(--principalColor);
    margin-bottom: 10px;
}

.textTServ p {
    font-size: clamp(0.8125rem, 0.7404rem + 0.3205vw, 1.125rem);
    color: var(--colorWhite);
}

.btnServ {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.btnServ a {
    text-decoration: none;
}

.btnServ a button {
    width: 250px;
    height: 40px;
    border-radius: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    font-size: clamp(0.9375rem, 0.8654rem + 0.3205vw, 1.25rem);
    font-weight: 800;
    color: var(--principalColor);
}

.whatsServ {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsServ i {
    font-size: clamp(1.25rem, 1.1779rem + 0.3205vw, 1.5625rem);
    color: var(--principalColor);
}

/*agregados por mi*/
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    color: #4b0082;
    /* púrpura como el fondo */
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    padding: 10px 20px;
    gap: 15px;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-whatsapp i {
    background-color: white;
    color: #4b0082;
    border: 2px solid #4b0082;
    border-radius: 50%;
    padding: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #c49cff;
    color: white;
}

.btn-whatsapp:hover i {
    background-color: white;
    color: #4b0082;
}

.contTargetServ .targetServ:hover {
    transform: translateY(-10px);
    /* Levanta el contenedor */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    /* Sombra suave */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Transición suave */
}

.formVisual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 100px;
    min-height: 520px;
}

.zl-url {
    width: 100%;
    min-height: 520px;
    display: block;
}

/**/

@media (max-width:1600px) {
    .contTargetServ {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 450px;
    }
}

@media (max-width:1400px) {
    .btnServ a button {
        width: 235px;
        height: 38px;
    }

    .whatsServ {
        width: 38px;
        height: 38px;
    }
}

@media (max-width:1280px) {
    .contTargetServ {
        gap: 15px;
    }
}

@media (max-width:1150px) {
    .contTargetServ {
        width: 85%;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 425px;
    }

    .btnServ a button {
        width: 230px;
        height: 35px;
    }

    .whatsServ {
        width: 35px;
        height: 35px;
    }
}

@media (max-width:950px) {
    .contServ {
        padding: 0%;
    }

    .contTargetServ {
        width: 95%;
        grid-auto-rows: 400px;
    }
}

@media (max-width:850px) {
    .contTargetServ {
        grid-auto-rows: 420px;
    }

    h1 {
        font-size: 1.6rem;
        line-height: 1;
        text-align: center;
        margin-top: 200px;
        margin-bottom: 10px;
    }
}

@media (max-width:700px) {
    .contTargetServ {
        width: 70%;
        grid-template-columns: repeat(1, 1fr);
        grid-auto-rows: 380px;
        gap: 10px;
    }
}

@media (max-width:608px) {
    .contTargetServ {
        width: 80%;
        grid-auto-rows: 375px;
    }
}

@media (max-width:575px) {
    .contTargetServ {
        width: 85%;
    }

    .btnServ a button {
        width: 220px;
        height: 33px;
    }

    .whatsServ {
        width: 33px;
        height: 33px;
    }
}

@media (max-width:480px) {
    .contTargetServ {
        width: 90%;
    }

    .btnServ a button {
        width: 210px;
    }
}

@media (max-width:450px) {
    .contTargetServ {
        width: 95%;
    }

    .btnServ a button {
        width: 210px;
    }
}