      .main{
        display:flex;
        width:100%;
        padding:54px 20px 69px 20px;
        justify-content:center;
      }
      
      .main .contenedor {
        display:flex;
        justify-content:space-between;
        gap:37px;
        width:100%;
        max-width:1304px;
        /*background-color:green;*/
        align-items:center;
      }
      
      .main .textos{
        display:flex;
        flex-direction:column;
        /*background-color:pink;*/
        max-width:677px;
      }
      
      .main .logo{
        display:flex;
        width: 551.56px;
        height: 159.92px;
        /*background-color:black;*/
      }
      
      .main .logoMobile{
        display:none;
width: 350px;
height: 366.46px;
        /*background-color:grey;*/
      }
      
      .main img{
        width:100%;
        height:100%;
        object-position:center;
        object-fit:cover;
      }
      

      .main .imagen{
        display:flex;
        width:100%;
        max-width: 551px;
        height: 659px;
        /*background-color:black;*/
        min-width:400px;
        border-radius: 50px;
      }
      
      .main .imagen img{
        border-radius: 50px;
      }
           
      .main h1{
        margin-top:33px;
        font-size:22px;
        line-height:25px;
      }
      
      .main p{
        font-size:16px;
        line-height:19px;
      }
      
      .main .parrafoTop{
        margin-top:25px;
        margin-bottom:16px;
      }
      
      @media(max-width:1060px){
        
        .main .contenedor{
          flex-direction:column;
        }
        
        .main .imagen{
          max-width:400px;
          height:400px;
        }
        
        .main .textos{
          align-items:center;
          text-align:center;
        }
        
        .main .textos{
          max-width:none;
        }
        
        
      }
      
      
      @media(max-width:700px){
        
        .main .logo{
          display:none;
        }
        
        .main .logoMobile{
          display:flex;
        }
        
        
      }

      .footer {
        background-color: #3f030b;
        color: #ffffff;
        padding: 56px 32px 26px;
      }

      .footer .contenedor {
        width: 100%;
        max-width: 1110px;
        margin: 0 auto;
      }

      .footerTop {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 32px;
        min-height: 105px;
      }

      .footer h2 {
        font-size: 18px;
        font-weight: 700;
        line-height: 22px;
        margin-bottom: 18px;
      }

      .redes {
        display: flex;
        align-items: center;
        gap: 17px;
      }

      .redes a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        color: #74111e;
        background-color: #ffffff;
        border-radius: 50%;
        text-decoration: none;
        transition: transform 160ms ease, background-color 160ms ease;
      }

      .redes a:hover {
        transform: translateY(-2px);
        background-color: #f4f7f8;
      }

      .redes svg {
        width: 19px;
        height: 19px;
        fill: currentColor;
      }

      .redes img {
        width: 40px;
        height: 40px;
        object-fit: contain;
      }

      .whatsapp {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        min-width: 335px;
        min-height: 47px;
        padding: 12px 25px;
        margin-top: 16px;
        color: #ffffff;
        background-color: #28bf47;
        border-radius: 999px;
        font-family: "Puritan", sans-serif;
        font-size: 14px;
        font-weight: 700;
        line-height: 18px;
        text-decoration: none;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        transition: transform 160ms ease, background-color 160ms ease;
      }

      .whatsapp:hover {
        transform: translateY(-2px);
        background-color: #22aa3e;
      }

      .whatsapp svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
        flex: 0 0 auto;
      }

      .footerLine {
        height: 1px;
        margin-top: 13px;
        background-color: rgba(255, 255, 255, 0.24);
      }

      .copyright {
        margin-top: 25px;
        color: rgba(255, 255, 255, 0.76);
        font-family: "Puritan", sans-serif;
        font-size: 12px;
        line-height: 16px;
        text-align: center;
      }

      @media(max-width:700px){
        .footer {
          padding: 42px 20px 24px;
        }

        .footerTop {
          align-items: center;
          flex-direction: column;
          gap: 28px;
          text-align: center;
        }

        .whatsapp {
          width: 100%;
          min-width: 0;
          max-width: 335px;
          margin-top: 0;
          padding-inline: 18px;
        }

        .footerLine {
          margin-top: 36px;
        }

        .redes{
          justify-content: center;
        }
      }