@charset "utf-8";

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    height: 100%;
    font-size: 18px;
    scroll-behavior: smooth;
    --color-brand-lila: #7C56BE;
    --color-dark-accent: #7454D9;
    --color-brand-teal: #00C4CC;
    --color-brand-grey: #EEEEEE;
    --color-social-green: #156669;
    --bg-error-message: rgb(246, 96, 96);
    --color-shadow: rgba(46, 45, 45, 0.4);
    --color-check: rgb(30, 209, 45);
    --color-warning: rgb(187, 41, 41);
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Poppins", sans-serif;
}

/**  HEADER  **/
/* Nav */
header {
    flex: 0 0 100vh;
    width: 100%;
    position: relative;
}

header nav {
    height: 10vh;
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 10px;
    z-index: 1;
}

header nav ul {
    width: 80%;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    transition: all 1.5s ease;
}

header .hamburger-icon {
    color: white;
    font-size: 2rem;
    display: none;
    z-index: 4;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.6rem;
    border-radius: 1.8rem;
    background: linear-gradient(90deg, transparent 1%, var(--color-brand-teal));
    transition: all 0.2s ease-in-out;
}

.slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider {
    height: 100vh;
    width: 200%;
    display: flex;
    margin-left: -100%;
    transition: all 1s ease-in-out;
}

.slider-section {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.slider-section a {
    font-weight: bold;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.6rem;
    margin-top: 2rem;
    border-radius: 1.8rem;
    transition: all 0.2s ease-in-out;
}

.slider-content {
    width: 50%;
    height: 80%;
    display: grid;
    justify-content: center;
    align-items: center;
    margin: 15vh auto 0 auto;
    margin-left: 50%;
    color: white;
}

.slider-content div:first-of-type {
    padding-left: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.slider-content h2 {
    font-size: 2.7rem;
}

.slider-content p{
    font-size: 2rem;
}

#first-slider-section {
    background-color: var(--color-brand-teal);
}

#first-slider-section .slider-content {
    grid-template-columns: 1fr 1.7fr;
}

#first-slider-section a {
    background: linear-gradient(90deg, transparent 1%, var(--color-brand-lila));
}

#first-slider-section .slider-content div:last-of-type {
    height: 85%;
    width: 100%;
    padding: 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 100%;
    justify-content: center;
    align-items: start;
}

#first-slider-section .slider-content div:last-of-type .middle-image {
    align-self: end;
}

#first-slider-section .slider-content div:last-of-type figure {
    height: 90%;
    width: 100%;
}

#first-slider-section .slider-content div:last-of-type figure img {
    height: 100%;
    width: 100%;
}

#second-slider-section .slider-content {
    grid-template-columns: 1.5fr 1fr;
}

#second-slider-section {
    background-color: var(--color-brand-lila);
}



#second-slider-section a{
    background: linear-gradient(90deg, transparent 1%, var(--color-brand-teal));
}

#second-slider-section .slider-content div:last-of-type {
    height: 70%;
    width: 30vw;
    background-color: var(--color-brand-teal);
    border: 1px solid var(--color-brand-teal);
    border-radius: 25vh 25vh 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#second-slider-section .slider-content div:last-of-type figure {
    height: 90%;
    width: 90%;
    margin: auto;
    clip-path: polygon(
    0.287% 99.901%,
    0.287% 34.524%,
    5.887% 18.750%,
    19.685% 6.845%,
    39.368% 0.099%,
    62.241% 0.099%,
    81.321% 6.845%,
    94.977% 18.750%,
    99.856% 34.524%,
    99.856% 99.901%
  );
}

#second-slider-section .slider-content div:last-of-type figure img {
    height: 100%;
    width: 100%;
}


/**  MAIN  **/
.whatsapp {
    background-color: var(--color-dark-accent);
    padding: 1rem 1.5rem;
    border-radius: 1.5rem;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: bold;
}

/* Value Proposal */
#value-proposal {
    height: 100vh;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    justify-content: center;
    align-items: center;
}

#value-proposal div {
    padding: 4rem;
    height: 100%;
    width: 100%;
    position: relative;
}

#value-proposal div:first-of-type {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 4rem;
}

#value-proposal .splash {
    background-image: url("../img/splash.png");
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
}

#value-proposal figure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
    max-width: 500px;
    min-width: 250px;
    border-radius: 50%;
}

#value-proposal .whatsapp {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

/* El método */
#metodo-article {
    background-color: var(--color-brand-lila);
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#metodo {
    height: max-content;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    justify-content: center;
    align-items: center;
    padding: 4rem;
}

#metodo h2 {
    color: white;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    padding-top: 2rem;
    text-align: center;
}

#metodo>div {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
}

#metodo figure {
    width: 90%;
    height: 60%;
    max-height: 200px;
    border-radius: 50px;
}

#metodo>div:first-of-type {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

#metodo>div:last-of-type {
    grid-column: 2 / 2;
    grid-row: 2 / 3;
}

#metodo p {
    color: white;
}

/* Education */
#education {
    background-color: var(--color-brand-grey);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 10vh;
    width: 100%;
    height: 105vh;
    padding: 2rem;
    justify-content: center;
}

#education>figure {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 200px;
    height: 0%;
    justify-self: start;
    align-self: center;
    margin-bottom: 0.5rem;
}

#education>div>p {
    margin-bottom: 0.5rem;
    padding-left: 5px;
    justify-self: center;
}

#education>div>div {
    border: 3px solid var(--color-brand-lila);
    border-radius: 20px;
    width: 90%;
    height: 90%;
    min-height: 400px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    justify-self: center;
}

.marca-personal {
   background-image: url('../img/dog-personal.jpg');
}

.empresas {
   background-image: url('../img/dog-empresas.jpg');
}

.freelancers {
   background-image: url('../img/dog-freelancers.jpg');
}

#education>div>div>h3 {
    font-size: 2rem;
}

#education>div>div>a {
    color: white;
    text-decoration: none;
    background: linear-gradient(90deg, var(--color-brand-lila), var(--color-brand-teal));
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
}


/* Planes */
#planes {
    width: 100%;
    height: max-content;
    justify-content: center;
    position: relative;
    padding-top: 2rem;
}

#planes .planes-top {
    width: 100%;
    padding: 0 2rem 0;
    height: max-content;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
}

#planes .planes-top div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min-content;
    justify-self: center;
}

#planes .planes-detalles {
    width: 100%;
    padding: 0 2rem 4rem;
    height: max-content;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: white;
    background: linear-gradient(90deg, var(--color-brand-lila), var(--color-brand-teal));
}

#planes .planes-detalles>div {
    width: 90%;
}

#planes h2 {
    grid-column: 1 / -1;
    font-size: 3.1rem;
    padding: 1rem 0 0 2rem;
}

#planes figure {
    border-radius: 20px;
    width: 100%;
    max-width: 28vw;
    min-width: 250px;
    height: 75%;
    min-height: 500px;
}

#planes h3 {
    font-size: 1.5rem;
}

#planes .whatsapp {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background-color: var(--color-brand-teal);
}

#planes hr {
    border: none;
    height: 1px;
    background-color: white;
    margin: 1rem 0;
}

/* Mobile view */
#planes .mobile {
    width: 90%;
    max-width: 600px;
    margin: 1rem auto;
    display: none;
}
#planes .mobile h3 {
    font-size: 1.3rem;
    margin: 1rem 0;
}
#planes .tab {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#planes .tab button {
    width: 32%;
    height: 100px;
    display: flex;
    flex-flow: row;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
    justify-content: start;
    align-content: start;
    border: 1px solid rgba(128, 128, 128, 0.5);
    border-radius: 10px;
    background: transparent;
    padding: 0.8rem;
}
#planes .tab .active {
    border: none;
    color: white;
    background: radial-gradient(circle at right bottom, var(--color-brand-teal), var(--color-brand-lila) 70%);
}
#planes .tabcontent {
    width: 100%;
}

#planes .tabcontent .detalles {
   width: 90%;
   display: flex;
   justify-content: space-between;
   column-gap: 1rem;
   padding-right: 1rem;
}

#planes .tabcontent figure {
    min-width: 200px;
    min-height: 350px;
}

#planes .tabcontent p {
    width: max-content;
    font-size: 0.9rem;
    padding-right: 1rem;
}

#planes .tabcontent hr {
    background-color: rgba(128, 128, 128, 0.5);
}


/* Hacemos mucho más - Additional value */
#additional-value {
    background-color: var(--color-brand-lila);
    width: 100%;
    height: 100vh;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    position: relative;
}

#additional-value h2 {
    font-weight: normal;
    font-size: 3.3rem;
    text-align: center;
    line-height: 3.3rem;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

#additional-value figure {
    max-height: 40%;
    max-width: 90%;
    border-radius: 50% 50% 0 0;
    aspect-ratio: 1.8 / 1;
    margin-left: auto;
    margin-right: auto;
}

/* #additional-value .whatsapp {
    position: absolute;
    left: 20px;
    bottom: 10%;
    background-color: var(--color-brand-teal);
} */

#additional-value .value-list {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    gap: 0.8rem;
    font-size: 1.27rem;
    margin-left: auto;
    margin-right: auto;
}

#additional-value .bg-teal {
    background: linear-gradient(90deg, transparent 1%, var(--color-brand-teal));
    color: white;
    padding: 1rem;
}

#additional-value .bg-white {
    background-color: white;
    color: var(--color-brand-teal);
    border: 3px solid var(--color-brand-teal);
    padding: 1rem;
}

#additional-value .long {
    width: 62.5%;
}

#additional-value .short {
    width: 32.5%;
}


/* Convince reasons */
#convince {
    width: 100%;
    height: max-content;
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem;
    padding-bottom: 4rem;
}

#convince h2 {
    grid-column: 1 / -1;
    padding: 2rem;
    font-size: 3.1rem;
    font-weight: normal;
    align-self: end;
}

#convince>div {
    width: 80%;
    justify-self: center;
}

#convince>div h3 {
    font-size: 1.17;
}

#convince>div p:last-of-type {
    color: var(--color-brand-lila);
}

#convince .emoji {
    font-size: 50px;
}


/* Clients */
#clients {
    width: 100%;
    height: max-content;
    min-height: 100vh;
    /* display: grid; */
    display: none;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 2rem 3fr;
    gap: 1rem;
    padding: 4rem 2rem 4rem 2rem;
    background-color: var(--color-brand-lila);
    color: white;
}

#clients h2 {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.75rem;
    align-self: end;
}

#clients>p {
    grid-column: 1 / -1;
    text-align: right;
    padding-right: 6rem;
}

#clients>div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

#clients figure {
    border-radius: 50%;
    width: 70%;
}

#clients>div p {
    font-size: 0.67rem;
}

#clients h3 {
    font-weight: normal;
    font-size: 1.22rem;
}

/* Social Proof */

#social-proof {
    width: 100%;
    height: max-content;
    min-height: 100vh;
    /* display: grid; */
    display: none;
    grid-template-columns: repeat(3, 1fr);
    padding: 8rem 4rem;
    background: linear-gradient(90deg, var(--color-brand-lila), var(--color-brand-teal));
    background-image: url('../img/multicolor-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--color-social-green);
}

#social-proof>h2 {
    grid-column: 1 / -1;
    color: white;
    font-size: 2.33rem;
    margin-bottom: 2rem;
    justify-self: center;
    align-self: center;
    align-self: end;
}

#social-proof>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#social-proof figure {
    border: 1px solid white;
    border-radius: 50%;
    width: 60%;
    margin-bottom: 1rem;
}

#social-proof h3 {
    font-size: 1rem;
}

#social-proof p {
    font-size: 0.8rem;
}

/* Contact FORM */
#contact {
    width: 100%;
    min-height: 80vh;
    background: linear-gradient(90deg, var(--color-brand-lila), var(--color-brand-teal));
    color: white;
    position: relative;
}

#contact>div {
    width: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    justify-content: center;
}

#contact h2 {
    font-size: 1.87rem;
    width: 90%;
    
}

form{
    width: 90%;
    margin-top: 0.6em;
}

form fieldset{
    border: none;
    text-align: center;
}

form fieldset ul{
    list-style: none;
}

form fieldset:first-of-type .correct-field .validation-state{
    color: var(--color-check);
    opacity: 1;
}

form fieldset:first-of-type .incorrect-field .validation-state{
    color: var(--color-warning);
    opacity: 1;
}

form fieldset:first-of-type .incorrect-field input{
    border: 2px solid var(--color-warning);
    border-radius: 2rem;
}

form fieldset:first-of-type ul li{
    margin-bottom: 0.5rem;
    position: relative;
}

form fieldset:first-of-type ul li input{
    width: 100%;
    border: 1px solid var(--color-brand-lila);
    border-radius: 2rem;
    padding: 0.5rem;
    font-family: inherit;
    transition: .3s ease all;
}

form fieldset:first-of-type ul li input:focus{
    border: 1px solid var(--color-brand-teal);
    outline: none;
    box-shadow: 3px 0px 10px var(--color-shadow);
}

form fieldset:first-of-type ul li .validation-state{
    position: absolute;
    right: 10px;
    bottom: 50%;
    font-size: 1.5rem;
    z-index: 1;
    opacity: 0;
}

form input[type=submit] {
    background-color: var(--color-dark-accent);
    border: none;
    border-radius: 2rem;
    color: white;
    padding: 0.5rem 2rem;
    margin-top: 1rem;
    font-size: 1.1rem;
}

small {
    font-size: 0.75rem;
}


.error-msg{
    height: 45px;
    line-height: 45px;
    background-color: rgba(255, 255, 255, 0.27);
    padding: 0 15px;
    border-radius: 3px;
    display: none;
}

.error-msg-active{
    display: block;
}

.error-msg p{
    margin: 0;
    color: var(--bg-error-message);
}

form fieldset:last-of-type ul li{
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Footer */
footer {
    display: flex;
    padding: 4rem;
    align-items: center;
    justify-content: space-evenly;
    gap: 1rem;
    background: linear-gradient(90deg, var(--color-brand-lila), var(--color-brand-teal));
}

footer div {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 1rem;
}

footer figure {
    height: max-content;
    width: max-content;
    aspect-ratio: initial;
}

footer figure img {
    aspect-ratio: initial;
    height: 100%;
    object-position: center;
}

footer a {
    color: var(--color-brand-teal);
    font-size: 3rem;
}

footer .legales {
    display: flex;
    flex-direction: column;
}

footer .legales a {
    color: white;
    font-size: 1rem;
}

footer a:hover {
    opacity: 0.7;
}

/**  GENERAL  **/

p {
    font-size: 1.2rem;
}

.teal {
    color: var(--color-brand-teal);
}

.lila {
    color: var(--color-brand-lila);
}

.title {
    font-size: 3rem;
}

.upper {
    text-transform: uppercase;
}

.whatsapp:hover {
    opacity: 0.7;
}

.fa-whatsapp {
    font-size: 2.5rem;
}

button:hover{
    opacity: 0.7;
}

input[type="submit"]:hover{
    opacity: 0.7;
}

a:hover{
    opacity: 0.7;
}

figure {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

.logo img {
    object-fit: contain;
}

.hidden {
    display: none !important;
}

 .grecaptcha-badge { 
    visibility: hidden !important;
}

/** ANIMATIONS **/
@media (prefers-reduced-motion: no-preference) {
    .group-img.animate{
        animation: slide-in-left 1.2s linear forwards;
        animation-iteration-count: 1
    }

    .value-text.animate{
        animation: slide-in-right 0.8s linear forwards;
        animation-iteration-count: 1
    }

    .value-whats.animate{
        animation: slide-in-right 1.4s linear forwards;
        animation-iteration-count: 1
    }

    .splash.animate{
        animation: appear 1.8s linear forwards;
        animation-iteration-count: 1
    }

    .metodo-title.animate{
        animation: slide-in-right 0.8s linear forwards;
        animation-iteration-count: 1
    }

    .metodo-img.animate{
        animation: slide-in-left 1.2s linear forwards;
        animation-iteration-count: 1
    }

    @keyframes slide-in-left {
        from {
            transform: translateX(-110vw);
        }
    }

    @keyframes slide-in-right {
        from {
            transform: translateX(110vw);
        }
    }

    @keyframes appear {
        from {
            opacity: 0%;
        }
        to {
            opacity: 100%;
        }
    }
}

/** MEDIA QUERIES **/
@media only screen and (max-width: 1130px) {
    #education>div>p {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 1030px) {
    #planes .pc {
        display: none;
    }

    #planes .mobile {
        display: block;
    }

    #planes .whatsapp {
        display: none;
    }

    /* Value Proposal */
    #value-proposal {
        display: flex;
        flex-direction: column;
        height: auto;
      }
    
      #value-proposal>div {
        padding: 1rem;
        height: 50%;
      }
  
      #value-proposal>div>div {
          height: max-content;
          padding: 1rem;
      }
  
      #value-proposal div:first-of-type {
          padding: 2rem;
          text-align: center;
      }
  
      #value-proposal div:first-of-type h2 {
          text-align: center;
      }
  
      #value-proposal div:first-of-type p {
          text-align: justify;
      }
    
      #value-proposal figure {
          position: static;
          transform: none;
          align-self: center;
          justify-self: center;
      }
}

/* Mobile Devices */
@media only screen and (max-width: 767px) {
    /* General Adjustments */
    :root {
      font-size: 16px;
    }
  
    /* Header */
    header nav {
      align-items: flex-start;
      justify-content: space-between;
      padding: 1rem;
    }

    header .hamburger-icon {
        display: block;
    }

    header .hamburger-icon:hover {
        opacity: 0.7;
    }

    .logo {
        aspect-ratio: initial;
    }

    .logo img {
        width: 50%;
        height: 100%;
        aspect-ratio: initial;
    }
  
    header nav ul {
      flex-direction: column;
      width: 100%;
    }
  
    header nav ul li {
      margin-bottom: 0.5rem;
    }
  
    header nav ul li a {
      padding: 0.5rem 1rem;
    }
  
    /* Slider */
    .slider-content {
        display: flex;
        flex-direction: column;
        margin-top: 10vh;
    }

    .slider-content h2 {
        font-size: 1.8rem;
    }
    
    .slider-content p{
        font-size: 1.3rem;
    }

    .slider-section a {
        font-weight: 500;
        padding: 0.6rem 1.2rem;
        align-self: center;
    }

    #first-slider-section .slider-content div {
        padding: 1rem;
    }
    #first-slider-section .slider-content div:last-of-type {
        padding: 1rem;
    }

    #second-slider-section .slider-content div {
        padding: 1rem;
        padding-bottom: 2rem;
    }
    #second-slider-section .slider-content div:last-of-type {
        padding: 1rem;
        width: 70%;
    }
  
    /* Método */
    #metodo-article {
        height: auto;
    }

    #metodo {
      display: flex;
      flex-direction: column;
      padding: 2rem;
      height: auto;
    }

    #metodo p {
        text-align: justify;
    }
  
    #metodo > div {
      padding: 1rem;
      gap: 1rem;
    }
  
    #metodo figure {
      width: 90%;
      margin: 0 auto;
    }
  
    /* Education */
    #education {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      height: auto;
      padding: 1rem;
      gap: 2rem;
    }

    #education > div {
        justify-self: center;
    }
  
    #education > div > div {
        min-width: 300px;
        margin-bottom: 1rem;
        justify-self: center;
    }

    #education > div > p {
        justify-self: center;
    }

    #education>div>div>h3 {
        font-size: 1.5rem;
    }

    #education .freelancers .lila {
        color: white;
    }
  
    /* Planes */
    #planes h2 {
        line-height: 3.4rem;
    }
  
    /* Additional Value */
    #additional-value {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(3, auto);
      row-gap: 2rem;
      height: auto;
      padding: 1rem;
    }
  
    #additional-value h2 {
      font-size: 1.5rem;
      line-height: 1.5rem;
    }

    #additional-value br {
        display: none;
    }    
  
    #additional-value .value-list {
      width: 100%;
    }

    #additional-value .whatsapp {
        position: static;
    }
  
    /* Convince Reasons */
    #convince {
      grid-template-columns: 1fr;
      height: auto;
      padding: 1rem;
    }

    #convince h2 {
        padding: 1rem;
        font-size: 1.8rem;
        text-align: center;
    }

    #convince>div h3 {
        text-align: center;
    }

    #convince .emoji {
        text-align: center;
    }
  
    #convince > div {
      width: 90%;
      text-align: justify;
    }
  
    /* Clients */
    #clients {
      grid-template-columns: 1fr;
      padding: 1rem;
    }

    #clients>p {
        padding: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    #clients>div {
        margin-bottom: 2rem;
    }

    #clients>div>h3 {
        text-align: center;
    }
  
    /* Social Proof */
    #social-proof {
      grid-template-columns: 1fr;
      padding: 1rem;
    }

    #social-proof h2 {
        font-size: 1.8rem;
    }

    #social-proof div {
        margin-bottom: 2rem;
    }
  
    /* Contact Form */
    #contact {
      grid-template-columns: 1fr;
      padding: 1.5rem;
    }

    #contact h2 {
      font-size: 1.5rem;
      text-align: center;
    }

    form {
        width: 100%;
    }
  
    /* Footer */
    footer {
      flex-direction: column;
      align-items: center;
    }

    footer div {
        width: 100%;
        justify-content: center;
    }

    footer div figure {
        height: 1.9rem;
    }

    footer div .logo img {
        width: 100%;
        object-position: center;
    }

    footer div a {
        font-size: 1.5rem;
    }

    /* General */
    .title {
        font-size: 2.5rem;
        line-height: 2.8rem;
    }

    .fa-whatsapp {
        font-size: 2rem;
    }

    /**  Menu Hamburguesa  */
    header nav .menu-items{
        height: max-content;
        width: max-content;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 3;
        flex-direction: column;
        gap: 2rem;
        padding: 6rem 3rem;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(5px);
        border-radius: 10px;
    }
    
    /* Efecto circulo */
    header nav .close{
        clip-path: circle(0% at 100% 0%);
    }
    header nav .open{
        clip-path: circle(150% at 100% 0%);
    }
  }

  @media only screen and (max-width: 580px) {
    #planes .tabcontent figure {
        display: none;
    }

    #planes .tabcontent .detalles {
        width: 100%;
        justify-content: stretch;
    }

    #planes .tabcontent div {
        width: 100%;
    }
}
  
  /* Tablets (min-width: 768px) and (max-width: 1024px) */
  @media only screen and (min-width: 768px) and (max-width: 1024px) {
    /* General Adjustments */
    body {
      font-size: 17px;
    }
  
    /* Header */
    header nav ul {
      width: 100%;
      justify-content: space-around;
    }
  
    /* Value Proposal */
    #value-proposal {
      grid-template-columns: 1fr;
      height: auto;
    }
  
    #value-proposal div {
      padding: 2rem;
    }
  
    #value-proposal figure {
      position: static;
      width: 80%;
      margin: 0 auto;
    }
  
    /* Método */
    #metodo {
      height: auto;
    }
  
    /* Education */
    #education {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
        padding: 1rem;
        gap: 2rem;
    }

    #education > div {
        justify-self: center;
    }
  
    #education > div > div {
      min-width: 350px;
      margin-bottom: 1rem;
      justify-self: center;
    }

    #education > div > p {
        text-align: center;
    }
  
    #education .freelancers .lila {
        color: white;
    }

    /* Additional Value */
    #additional-value {
      grid-template-columns: 1fr 1fr;
      height: auto;
    }
  
    /* Convince Reasons */
    #convince {
      grid-template-columns: 1fr 1fr;
      height: auto;
    }
  
    /* Clients */
    #clients {
      grid-template-columns: 1fr 1fr;
    }
  
    /* Social Proof */
    #social-proof {
      grid-template-columns: 1fr 1fr;
    }
  
    /* Contact Form */
    #contact {
      grid-template-columns: 1fr;
    }
  }

  @media only screen and (min-width: 1025px) {
    #education>div>p {
        padding-top: 10vh;
    }
  }
  
  /* 4K Screens (min-width: 2560px) */
  @media only screen and (min-width: 2560px) {
    /* General Adjustments */
    body {
      font-size: 20px;
    }
  
    /* Slider */
    .slider-content h2 {
      font-size: 3rem;
    }
  
    .slider-content p {
      font-size: 2rem;
    }
  
    /* Value Proposal */
    #value-proposal h2,
    #metodo h2 {
      font-size: 3rem;
    }
  
    #value-proposal p,
    #metodo p {
      font-size: 2rem;
    }
  
    /* Images */
    #value-proposal figure,
    #metodo figure,
    #clients figure,
    #social-proof figure {
      width: 90%;
    }
  }
  