:root {
    --primary-Yellow: #E2B83C;
    --primary-Blue: #1A9190;
    --primary-White: #FFFFFF;
    --primary-Black: #000;
}

/* Estilos generales */
html {
    box-sizing: border-box;
    font-size: 62.5%;
}

*, *:before, *:after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}
.swal-confirm-custom {
    background-color: #1A9190 !important;
    color: white !important;
  }  

body {
    background-color: #d9d9d9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
}
/* Header */
header {
    background-color: var(--primary-Yellow);
    width: 100%;
    min-height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap;
  }
  
  .header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
  }
  
  .wa-link {
    background-color: var(--primary-Blue);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
  }
  
  .contact-email {
    background-color: var(--primary-Blue);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
  }
  
  .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .btn3 {
    background-color: var(--primary-Blue);
    color: var(--primary-White);
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.5rem;
    text-decoration: none;
    max-width: 125px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: bold;
  }
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      padding: 20px;
    }
  
    .header-left, .header-right {
      width: 100%;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }
  
    .header-left {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .header-right {
      justify-content: center;
    }
  
    .btn3 {
      width: 100%;
      max-width: none;
      text-align: center;
    }
  
    .wa-link, .contact-email {
      font-size: 1.2rem;
      width: 100%;
      text-align: center;
    }
  }

/* Footer */
.div-footer {
    background-color: #178a8a;
    color: #fff;
    padding: 60px 20px 30px;
    font-family: Arial, sans-serif;
    font-size: 2.05rem;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-col {
    flex: 1 1 220px;
    min-width: 250px;
    text-align: center;
  }
  
  .footer-title {
    color: #e2b83c;
    font-weight: bold;
    margin: 15px 0 10px;
    font-size: 2.2rem;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.95rem;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
    color: #e2b83c;
  }
  
  .footer-img {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
  }
  
  .footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }
  
  .footer-social a img {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    transition: transform 0.2s ease;
  }
  
  .footer-social a img:hover {
    transform: scale(1.1);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 1.95rem;
    color: #ddd;
  }
  
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-col {
      text-align: center;
    }
    .footer-social {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }
  }
  

/* Contenedor de la grilla */
.grid-index {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columnas por defecto */
    grid-template-rows: auto;
    gap: 15px;
    padding: 20px;
    /* Ajuste de tamaño consistente */
    height: 100%;
}

/* Estilo para cada celda */
.item {
    background-color: var(--primary-Yellow);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 200px; /* Todos los elementos tendrán la misma altura */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: var(--primary-Black);
}

/* Títulos y botones en las celdas */
.item h1, .item h2 {
    margin: 0;
    font-size: 22px;
}

.item .btn {
    background-color: var(--primary-White);
    color: var(--primary-Blue);
    border: 2px solid var(--primary-Blue);
    /* padding: 10px 20px; */
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
}


/* Botones deshabilitados */
.btn:disabled {
    background-color: #e0e0e0;
    color: #8f8f8f;
    border: 2px solid #d0d0d0;
    cursor: not-allowed;
}

/* Estilo para el logo en la parte superior */
.logotipo {
    text-align: center;
    margin-top: 50px; /* Ajusta el espacio desde la parte superior */
    margin-bottom: 20px; /* Separar el logotipo del contenido */
}

.logotipo img {
    max-width: 200px;  /* Ajustar el tamaño del logotipo */
    height: auto;
}

/* Badge de 'Próximamente' */
.badge {
    background-color: #629ec0;
    color: var(--primary-White);
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 12px;
    margin-bottom: 10px;
    display: inline-block;
}

/* Media queries para hacerlo responsive */
@media (max-width: 768px) {
    .grid-index {
        grid-template-columns: 1fr 1fr; /* Dos columnas en pantallas más pequeñas */
    }
}

@media (max-width: 480px) {
    .grid-index {
        grid-template-columns: 1fr; /* Una columna en pantallas aún más pequeñas */
    }
}
/* Seccion 1 */
h1 {
    font-family: 'Roboto Condensed';
    font-weight: bold;
    color: var(--primary-Blue);
    font-size: 5rem;
    text-align: center;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 3rem;
}
/* MAIN */
main {
    padding: 4rem;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.container{
    max-width: 940px;
    padding: 2rem;
    margin-top: 5rem;
}
.text-info{
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 1.2rem;
}
label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight:400;
    font-size: 2rem;
    margin-bottom: 10px !important;
    text-align: left;
}
.parrafo1, .parrafo2 {
    font-family: 'Forum', serif;
    font-weight:bold;
    font-size: 3rem;
    color: var(--primary-Black);
    max-width: 60%;
    margin: 1rem auto;
    text-align: center;
    margin-bottom: 3rem;
}

/* Botón Crea tu plan */
.btn {
    background-color: var(--primary-Yellow);
    color: var(--primary-White);
    padding: 1rem 3rem;
    border-radius: 50px;
    cursor: pointer;
    display: block;
    text-align: center;
    font-size: 2rem;
    max-width: 248px;
    max-height: 80px;
    margin: 2rem auto;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight:bold;
}
/* CUPON DESCUENTO */
.discount-input {
    text-align: center; 
    margin-top: 20px; 
}

.discount-input input[type="text"] {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 2rem;
    width: 250px; 
}

.logotipo{
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding-right: 10px;
}
.logotipo img{
    max-width: 200px;
}


@media (max-width: 768px) {
    h1 span {
        display: block;
    }
    h1 {
        text-align: center !important; 
        width: 95%; 
        font-size: 3rem;
        justify-content: center; 
        padding-left: 10px; 
        margin-left: 0;
        margin-top: 0;
    }
    .parrafo1 span{
        display: block;
    }
    .parrafo2 span{
        display: block;
    }
    .container{
        margin-top: 0;
    }
    .parrafo1, .parrafo2 {
        text-align: center !important;
        max-width: 100%; 
        font-size: 1.5rem;
        padding-left: 10px; 
        margin-left: 0; 
        box-sizing: border-box;
    }
    .container{
        width: 100%; 
        box-sizing: border-box; 
    }
    .btn {
        max-width: 206px;
        max-height: 74px;
        margin: 0 auto; 
        margin-top:0;
        margin-bottom:2rem;
    }
    .discount-input {
        max-width: 186px;
        max-height: 54px;
        margin-left: 50px; 
        margin-right: 0; 
        margin-top:2rem;
        margin-bottom:2rem;
    }
    
    .discount-input input[type="text"] {
        padding: 10px 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1rem;
        width: 250px; 
    }
    .logotipo{
        display: flex;
        justify-content: center;
        margin: 0 auto;
        padding-right: 10px;
    }
    .logotipo img{
        max-width: 100px;
    }
}
@media (min-width: 1024px) {
    .parrafo1, .parrafo2 {
        font-size: 2.5rem; 
    }
}

@media (min-width: 1440px) {
    .parrafo1, .parrafo2 {
        font-size: 2.5rem; 
    }
}

/* Seccion 2 */
.body2{
    background-color: #FFFFFF;
    width: 100%;
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
    
}
.main-3 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: auto;
    margin-bottom: 0;
    width: 100%;  
    padding-top: 0px; 
}
.progreso{
    font-family: 'Roboto Condensed';
    font-weight: 400;
    color: var(--primary-Black);
    font-size: 2rem;
    margin-bottom: 0px;
}
.progress-bar {
    display: flex;
    justify-content: center;
    width: 95%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    padding: 0;
    margin-left: 20px;
}

.progress {
    width: 100%;
    height: 25px;
    background-color: #ffffff;
    border-radius: 15px;
    border: 1px solid black;
    overflow: hidden;
    margin-top: 10px;
}
.progress-fill {
    height: 100%;
    background-color: var(--primary-Blue); 
    color: white;
    text-align: right;
    line-height: 20px;
    padding-right: 10px;
    border-radius: 10px;
    transition: width 0.3s ease;
}



/* Ver.ión Móvil */
@media (max-width: 768px) {
    .header{
        max-height: 80px;
    }
    .progress-bar {
        width: 90%; 
        margin-left: auto; 
        margin-right: auto; 
        margin-bottom: 15px; 
    }
    .form-container { 
        width: 100%; 
        box-sizing: border-box; 
    }
    .main-3{
        padding-top: 0px;
    }
    .form-row {
        display: flex;
        flex-direction: column;
        justify-content:flex-start;
        margin-bottom: 0px;
    }
    input[type="text"]{
        width: 100% !important;
        margin-right: 10px;
        margin-bottom: 15px !important;
        font-size: 1.5rem !important;
    }
    input[type="email"],
    input[type="tel"],
    input[type="date"] {
        width: 100%;
        margin-right: 10px;
        margin-bottom: 15px !important;
        font-size: 1.5rem !important;
    }
    .h2-s2{
        font-size: 3.5rem;
    }
    .h2-s2 span{
        display: block;
    }
    .h2-s2 {
        width: 100%;
        margin-left: 0%;
    }
    .btn2 {
        background-color: var(--primary-White);
        color: var(--primary-Blue);
        padding: 10px 20px;
        border: none;
        border-radius: 20px;
        cursor: pointer;
        font-size: 1.5rem;
        text-decoration: none;
        max-width: 125px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight:bold;
    }
    
    .avance{
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Versión Para móviles más pequeños */
@media (max-width: 576px) { 
    .header{
        max-height: 60px; 
    }
    .footer{
        max-height: 60px; 
    }
    
    .form-container {
        width: 95%; 
        box-sizing: border-box;
        margin: 0 auto; 
    }
    .main-3{
        padding-top: 0px;
    }
    .form-row {
        display: flex;
        flex-direction: column;
        justify-content:flex-start;
        margin-bottom: 0px;
    }
    input[type="text"]{
        width: 250px !important; 
        margin-right: auto;
        margin-left: auto; 
        margin-bottom: 10px !important;
        font-size: 2rem !important; 
    }
    input[type="email"],
    input[type="tel"],
    input[type="date"] {
        width: 250px; 
        margin-right: auto;
        margin-left: auto; 
        margin-bottom: 10px !important; 
        font-size: 2rem !important; 
    }
}
/* Seccion 3 */

.form-container-2 {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    align-self: flex-start;
    border: none;
}
.grid-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    row-gap: 30px;
}

.grid-item {
    display: flex;
    flex-direction: column;
    margin-top: 0px;
}
.option{
    max-width: 114px;
    max-height: 33px;
}

.form-container-2 h2 {
    margin-bottom: 20px;
    text-align: left;
}
.info-box-3 {
    display: flex;
    align-items: flex-start; 
    border-radius: 8px;
    margin-bottom: 0;  
}
.info-box-3 span{
    display: block;
}
.text-s3 {
    width: 470x;
    height: 200px;
    padding: 5px 10px;
    font-size: 2rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    text-align: left;
    line-height: normal;
    vertical-align: top;
    resize: none; 
}
.sector{
    margin-top: 20px !important;
}
.grid-item p{
    font-size: 2rem;
}

.info-box-3 img {
    max-width: 53px; 
    max-height: 53px;
    margin-right: 15px; 
}
.info-box-3 p{
    font-size: 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    width: 600px;
}


input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.servicio-input {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    width: auto;
}

.servicio-input input {
    flex-grow: 1;
    margin-right: 5px;
}

.add-servicio {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 3rem;
}

/* Versión Móvil */
@media (max-width: 768px) {
    .form-container-2 {
        border-radius: 0; 
    }
    .main-3{
        margin-top: 0px;
        padding-top: 0;
    }
    .grid-container {
        grid-template-columns: 1fr; 
        gap: 20px;
        row-gap: 20px;
    }

    .grid-item {
        margin-top: 0;
    }

    .option {
        max-width: 100%; 
        max-height: none; 
        width: 100%;
        height: auto;
        padding: 10px;
        box-sizing: border-box;
    }

    .form-container-2 h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        text-align: center; 
    }

    .info-box-3 {
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        margin-bottom: 15px;
    }

    .info-box-3 p {
        font-size: 2rem !important;
        width: 100%; 
    }

    .text-s3 {
        width: 100%; 
        min-height: 45px; 
        font-size: 2.5rem;
        margin: 0 auto !important;
    }

    .grid-item p {
        font-size: 2rem;
    }

    input[type="text"] {
        font-size: 2rem !important;
        padding: 8px;
        margin-bottom: 10px;
    }

    .servicio-input {
        flex-direction: column; 
        align-items: stretch; 
    }

    .servicio-input input {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .add-servicio {
        width: 100%;
        height: auto;
        padding: 10px;
        font-size: 1.5rem;
        border-radius: 5px;
    }

    .sector {
        margin-top: 15px !important;
    }
}

/* Sección 4 */
.main-4{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    justify-content: center;
    padding: 20px;
    min-height: 100vh;
}

.form-container-3 {
    width: 100%; 
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    padding-top: 0px !important;
    margin-top: 0px; 
}

.enlace{
    display: flex;
    
}

.social-options {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 40px;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-label-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.input-label-container input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50%;  
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    outline: none;
    cursor: pointer;
}
.input-label-container input[type="checkbox"]:checked {
    background-color: var(--primary-Blue); 
}
.input-label-container label {
    margin-top: 15px; 
}

.social-option {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 10px;
}
.social-option label {
    margin-left: 5px;
}

.social-option input[type="text"] {
    margin-left: 10px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.plus-button{
    background-color:var(--primary-Yellow);
    border: 1px;
    border-radius: 20px;
    padding: 0px 20px;
    font-size: 4rem;
    font-weight: bold;
    margin-left: 10px;
    cursor: pointer;
    color: var(--primary-Blue);

}
@media (max-width: 768px) {
    .form-container-3 {
        width: 100%;
    }

    .social-options {
        grid-template-columns: 1fr;
    }
}

/* Sección 5-1: planificacion estrategica */
body.body-cab {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: #ffffff;
}

.main-cab {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-grow: 1;
}

.container-cab {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; 
    max-width: 1200px; 
}
.cab-image{
    width: 70%;
}
.blob{
    display: flex;
    justify-content: center;
}
.avance-cab {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

/* Versión Móvil */
@media (max-width: 768px) {
    body.body-cab {
        font-size: 16px;
    }

    .main-cab {
        padding: 20px;
    }

    .container-cab {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        box-sizing: border-box;
    }

    .cab-image {
        width: 100%; 
        max-width: 600px; 
        margin-bottom: 20px;
    }

    .blob {
        width: 100%;
    }

    .avance-cab {
        flex-direction: row;
        justify-content: space-around;
        margin-top: 30px;
        padding: 0 20px;
        box-sizing: border-box;
    }
}

/* Sección 5 */
.form-container-4 {
    width: 100%;
    margin: 20px 0;
    border: none;
    justify-content: center;
    text-align: center;
}

h2 {
    text-align: center;
}
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.info-table tbody {
    display: flex;
    flex-direction: column;
}

.info-table .horizontal-row {
    display: flex;
    border-bottom: 1px solid #ccc;
    padding: 10px;
}

.info-table .horizontal-row th {
    font-weight: bold;
    min-width: 150px; 
    padding-right: 10px;
    font-size: 2.5rem;
    margin-top: 10px;
}

.info-table .horizontal-row td {
    flex: 1;
    padding: 0;
    font-size: 2rem;
    
}

.horizontal-row:last-child {
    border-bottom: none;
}

.form-row-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-column-4 {
    display: flex;
    flex-basis: calc(25% - 15px);
    flex-direction: column;
    align-items: center;
    width: 48%;
}

label {
    display: block;
    margin-bottom: 5px;
}

.mision, .vision, .valores, .propuesta{
    width: 225px;
    height: 420px;
    padding: 5px 10px;
    font-size: 2.2rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    text-align: left;
    line-height: normal;
    vertical-align: top;
    resize: none;
    background-color: var(--primary-Yellow);
}


.info-box-5 {
    display: flex;
    align-items: center;
    width: 210px;
}
.info-box-5 img {
    max-width: 53px; 
    max-height: 53px;
    margin-right: 15px; 
}

.info-box-5 p {
    font-size: 2rem;
}

/* Versión Móvil */
@media (max-width: 768px) {
    .form-container-4 {
        margin: 15px 0;
    }

    h2 {
        font-size: 2.5rem;
    }

    .info-table {
        margin-top: 20px;
    }

    .info-table tbody {
        flex-direction: column;
    }

    .info-table .horizontal-row {
        flex-direction: column; 
        padding: 15px;
        align-items: flex-start; 
    }

    .info-table .horizontal-row th {
        font-size: 2.5rem;
        min-width: auto; 
        padding-right: 0;
        margin-bottom: 5px;
    }

    .info-table .horizontal-row td {
        font-size: 2rem;
        padding: 0;
    }

    .form-row-4 {
        flex-direction: column; 
    }

    .form-column-4 {
        width: 100%; 
        margin-bottom: 20px;
    }

    .mision,
    .vision,
    .valores,
    .propuesta {
        width: 100%; 
        height: auto;
        min-height: 300px; 
        padding: 10px;
        font-size: 2.2rem;
    }

    .info-box-5 {
        width: 100%;
        flex-direction: row; 
        align-items: center;
        justify-content: center; 
        margin-bottom: 15px;
    }

    .info-box-5 img {
        max-width: 40px;
        max-height: 40px;
        margin-right: 10px;
    }

    .info-box-5 p {
        font-size: 2rem;
    }
}

/* Sección 6 */
.form-container-5 {
    width: 100%;
    margin: 20px 0;
    border: none;
}

.dafo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dafo-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 0px;
}

.dafo-text {
    width: 100%;
    height: 250px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none;
    min-height: 100px;
    font-size: 2rem;
    flex-grow: 1;
}
.dafo-section label{
    font-weight: bold;
    display: flex;
    justify-content: center;
    margin-top: 0px;
}
.dafo-img{
    display: block; 
    margin: 0 auto;
}

.info-box-6 {
    display: flex;
    justify-content: center;
    font-size: 2rem;
    min-height: 120px;
}

p{
    font-family: 'Forum', serif;
    font-weight: 400;
}

@media (max-width: 768px) {
    .form-container-5 {
        width: 100%;  
    }
    .h2-s2{
        padding-bottom: 10px;
    }

    .dafo-grid {
        grid-template-columns: 1fr; 
    }
}

/* Sección 7 */
.form-container-6 {
    width: 100%;
    margin: 20px 0;
    border: none;
}

h2 {
    text-align: left;
}

.came-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.came-section {
    margin-bottom: 0px;
}
.came-section label {
    font-weight: bold;
    display: flex;
    justify-content: center;
    margin-bottom: 20px !important; 
}
.came-text {
    width: 100%;
    height: 250px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none;
    min-height: 100px;
    font-size: 2rem;
    flex-grow: 1;
}
.came-img{
    display: block; 
    margin: 0 auto;
}
.came-section .info-box-6 {
    display: flex;
    justify-content: center;
    font-size: 2rem;
    min-height: 80px;
    margin-top: 0;
}
.info-box-7 img {
    width: 20px;
    margin-right: 10px;
}
@media (max-width: 768px) {
    .form-container-6 {
        width: 100%;
    }

    .came-grid {
        grid-template-columns: 1fr;
    }
}

/* Sección 8 */
.form-container-7 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.smart-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    width: 100%;
}

.smart-section {
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
}
.smart-section p{
    font-size: 2rem;
}
.smart-section:nth-child(1) {
    background-color: #fce4ec;
}

.smart-section:nth-child(2) {
    background-color: #bbdefb;
}

.smart-section:nth-child(3) {
    background-color: #ffe0b2;
}

.smart-section:nth-child(4) {
    background-color: #c8e6c9;
}

.smart-section:nth-child(5) {
    background-color: #d1c4e9;
}

.smart-section label {
    font-weight: bold;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.smart-section textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    resize: none;
    height: 400px;
    font-size: 2rem;
}
.branding{
     color: var(--primary-Yellow);
     font-weight: bold;
     font-size: 2.5rem;
}
.info-box-7 {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    text-align: left;
    height: 330px;
}

.text-info {
    font-size: 14px;
    height: 100%;
}
.smart-img{
    width: 100%;
}
@media (max-width: 768px) {
    .form-container-7 {
        width: 100%; 
    }

    .smart-grid {
        grid-template-columns: 1fr; 
    }

    .info-box-7 img {
        max-width: 40px; 
        max-height: 40px;
    }
    .info-box-7{
        height: 300px;
    }
    .info-text{
        font-size: 3rem;
    }
}

/* Seccion 9 */
.form-container-8 {
    max-width: 100%;
    margin: 20px 0;
    border: none;
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
}

h2 {
    text-align: left;
}

.checkbox-options-container {
    display: flex;
    flex-direction: column; 
    gap: 10px; 
}

.checkbox-option-row {
    display: flex;
    align-items: center; 
    justify-content: space-between; 
}

.checkbox-option {
    display: flex;
    align-items: center;
    width: 300px;
    background-color: var(--primary-Yellow);
    border: 1px solid #000000;
    border-radius: 8px;
    margin-right: 20px;
    padding: 5px;
}

.checkbox-option input[type="checkbox"] {
    margin-right: 20px; 
}

.checkbox-option label {
    margin-right: 20px; 
}

.number-input {
    width: 60px; 
    padding: 8px;
    border: 1px solid #000000;
    border-radius: 4px;
    font-size: 2.5rem;
    text-align: center; 
    background-color: #fbf0f0;
}
.p-s9{
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight:400;
    font-size: 1.25rem;
}
.radio-option label {
    margin-left: 5px;
    margin-top: 12px;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
}

.navigation-buttons button {
    padding: 8px 15px;
    margin: 20px;
    border: 1px solid #000000;
    border-radius: 10px;
    cursor: pointer;
    background-color: var(--primary-White);
}

.enlace-eneagrama{
    font-size: 2rem;
    color: var(--primary-Blue);
}


/* VERSION MÓVIL */
@media (max-width: 768px) { 
    .form-container-8 {
        padding: 10px;
        margin: 20px auto;
        display: flex;
        flex-direction: column; 
        align-items: center; 
    }

    .radio-option {
        width: 100%; 
        height: auto; 
        margin-bottom: 10px; 
    }

    .navigation-buttons {
        flex-direction:row; 
        align-items: center;
        gap: 20px; 
    }

    .navigation-buttons button {
        margin: 10px 0; 
    }

}

/* Versión Móviles más pequeños */
@media (max-width: 576px) {
    .form-container-8 {
        margin: 15px 0; 
        align-items: stretch; 
    }

    h2 {
        font-size: 1.8rem; 
        text-align: left;
    }

    .checkbox-options-container {
        gap: 8px;
    }

    .checkbox-option-row {
        flex-direction: column;
        align-items: flex-start; 
        justify-content: flex-start; 
    }

    .checkbox-option {
        width: 100%; 
        margin-right: 0; 
        margin-bottom: 8px; 
        padding: 15px; 
    }

    .checkbox-option input[type="checkbox"] {
        margin-right: 15px;
        width: 40px;
        transform: scale(1.5); 
        -webkit-transform: scale(1.5); 
    }

    .checkbox-option label {
        margin-right: 0; 
        flex-grow: 1; 
    }

    .number-input {
        width: 100px; 
        padding: 10px ; 
        font-size: 3rem; 
        text-align: center;
        margin-top: 5px; 
    }

    .radio-option label {
        margin-left: 3px; 
        margin-top: 8px; 
        display: block; 
    }

}
/* Sección 10-1 */
.for
.profesion {
    display: flex;
    align-items: center; 
}

.client-img {
    width: 100px; 
    height: 100px; 
    object-fit: contain; 
    margin-right: 10px; 
}
.clientela{
    width: 450px;
    height: 300px;
    font-size: 2rem;
    border: 1px solid #000000;
    border-radius: 5px;
    box-sizing: border-box;
    text-align: left;
    line-height: normal;
    vertical-align: top;
    resize: none;
    padding: 10px; 
}
@media (max-width: 768px) {

    .profesion {
        width: 100%;
        flex-direction: column; 
        align-items: center; 
    }
    
    .client-img {
        width: 80px;
        height: 80px;
        margin-right: 0; 
        margin-bottom: 10px; 
    }

    .clientela {
        width: 270px; 
        height: auto; 
        min-height: 220px; 
        font-size: 2rem;
    }
}
/* Sección 10 */
.userpersona-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.left-section {
    width: 30%;
    text-align: left;
    margin-right: 50px;
}

.right-section {
    width: 70%;
    display: flex;
    flex-direction: column;
}

.photo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
}
.info-section, .bio-section {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
}

.info-item {
    margin-bottom: 10px;
}

.info-item label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.tipo-clientela, .option {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 2rem;
}


.radio-options-hijos {
    display: flex;
    align-items: center;
    width: 120px;
}

.radio-options-hijos input[type="radio"] {
    margin-right: 0px;
}

.bio-section textarea {
    width: 100%;
    height: 100px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    resize: none;
}

.section-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.section-column {
    width: 100%; 
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 2px;
    height: 400px;
}

.section-column label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}
#bioCliente{
    height: 200px;
}
.section-column textarea {
    width: 100%;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 5px;
    resize: none; 
    min-height: 300px;
    font-size: 2rem; 
}

.motivaciones {
    background-color: #ffb25a;
}

.objetivos {
    background-color: #f9bcf2;
}

.frustraciones {
    background-color: #acfc77;
}

.personalidad {
    background-color: #e6f0ff;
}

.grito-dolor {
    background-color: #ffcbe9;
}

.salva-vida {
    background-color: #fddcb1;
}

.tecnologias {
    background-color: #f0ffe6;
}

.marcas {
    background-color: #e6f0ff;
}

/* Versión Móvil */
@media (max-width: 768px) {
    .userpersona-container {
        flex-direction: column; 
    }

    .left-section,
    .right-section {
        width: 100%; 
        margin-right: 0; 
    }

    .section-row {
        flex-direction: column;
    }

    .section-column {
        height: auto; 
        min-height: 200px; 
        margin-bottom: 10px; 
    }
    #bioCliente{
        height: 250px ;
    }
    .tipo-clientela{
        font-size: 2rem !important;
    }
}

/* Versión Móviles más pequeños */
@media (max-width: 576px) {
    .userpersona-container {
        flex-direction: column; 
    }

    .left-section,
    .right-section {
        width: 110%; 
        margin-right: 0; 
        margin-bottom: 15px; 
    }
}
/* Sección 11-1 */
.form-container-11-1 {
    width: 100%;
    margin: 20px 0;
    border: none;
}

.grid-container-11-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-item input[type="url"] {
    width: 100%; 
    padding: 10px; 
    margin-bottom: 15px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    box-sizing: border-box; 
    font-size: 2rem;
}
.competencia{
    width: 500px;
    height: 220px;
    font-size: 2rem;
    resize: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
}
@media (max-width: 767px) {
    .grid-container-11-1 {
        grid-template-columns: 1fr; 
    }

    .grid-item input[type="url"],
    .competencia {
        width: 100%; 
    }

    .grid-item input[type="url"],
    .competencia {
        font-size: 1.5rem;
        padding: 8px;
    }
}
/* Sección 11 */
.main-11 {
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}
.form-container-10 {
    width: 100%;
    margin: 20px 0;
    border: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 100px;
}
.h3-color{
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-Yellow);
}
.logo{
    margin-left: 20px;
    margin-top: 40px;
}
.upload{
    display: flex;
}
.logo-section, .colors-section {
    margin-bottom: 40px;
}
.grid-color{
    width: 80%;
}
.color-puntero{
    width: 100%;
    height: 100%;
}
.enlace-color{
    display: flex;
    justify-content: center;
    text-align: center;
    color: var(--primary-Blue);
}
.enlace-colores{
    color: var(--primary-Blue);
}
.upload-button {
    background-color: var(--primary-Yellow);
    border: 1px solid #000000;
    padding: 10px 55px;
    border-radius: 20px;
    display: inline-block;
    cursor: pointer;
    margin-top: 20px;
    width: auto;
    height: auto;
    font-size: 2rem;
}
.upload-button:hover {
    background-color: var(--primary-Yellow); 
}
.color-input {
    display: flex;
    align-items: center;
    width: 100%; 
    margin-bottom: 10px; 
}

.color-input input[type="text"] {
    padding: 10px; 
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
    margin-top: 0;
    margin-bottom: 0;
    width: 80%; 
    box-sizing: border-box; 
    font-size: 2rem; 
}

.add-color {
    background-color: var(--primary-Yellow);
    border: 1px;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 2rem; 
    font-weight: bold;
    margin-top: 0;
    margin-left: 10px; 
    cursor: pointer;
    color: var(--primary-Blue);
    height: auto; 
    line-height: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px; 
    height: 30px; 
}

.remove-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #dc3545; 
    color: white;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .form-container-10 {
        grid-template-columns: 1fr; 
    }

    .logo,
    .color-input {
        margin-left: 0; 
    }

    .color-input {
        width: 100%; 
        flex-direction: row; 
        align-items: flex-start;
        margin-bottom: 40px; 
    }

    .color-input input[type="text"] {
        margin-right: 0; 
        margin-bottom: 20px;
    }

    .add-color {
        margin-left: 10px;
        margin-top: 5px; 
        font-size: 3rem; 
        padding: 5px 10px; 
    }
    .grid-color {
        width: 80%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
        gap: 10px; 
    }

    .upload-button {
        padding: 10px 20px; 
    }
}

/* Sección 12 */
.form-container-11 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    width: 100%;
    gap: 20px;
    margin: 0 auto;
}

.redSocialActual {
    border: 1px solid #ddd;
    padding: 50px;
    border-radius: 8px;
    background-color: #fdc16d;
}
.redSocialActual2 {
    border: 1px solid #ddd;
    padding: 50px;
    border-radius: 8px;
    background-color: #5a709e;
}
.redSocialActual3 {
    border: 1px solid #ddd;
    padding: 50px;
    border-radius: 8px;
    background-color: #c66460;
}
.redSocialActual4 {
    border: 1px solid #ddd;
    padding: 50px;
    border-radius: 8px;
    background-color: #000000;
    color: #ffffff;
}
.redSocialActual label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
}
.labelSocial{
    margin: 0 auto;
    max-width: 1100px;
    margin-bottom: 20px;
}
.redSocial,
.redSocialImage {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
}

.redSocial:focus,
.redSocialImage:focus {
    border-color: #4caf50;
    outline: none;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

.redSocialImage {
    padding: 5px;
    border: none;
}
.file-upload-container {
    position: relative;
    overflow: hidden;
    display: inline-block;
    justify-content: center;
}

.file-upload-container input[type="file"] {
    position: absolute;
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0; 
}

.file-upload-button {
    border: 1px solid #ccc;
    padding: 15px 25px;
    border-radius: 8px;
    background-color: var(--primary-Blue);
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 2rem;
}
.add-red-social {
    background-color: var(--primary-Blue);
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.5rem;
    margin-top: 20px;
    display: block; 
    margin-left: auto;
    margin-right: auto;
}

.add-red-social:hover {
    background-color: var(--primary-Yellow);
    color: var(--primary-Blue);
}

.remove-red-social {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
    display: block;
    width: fit-content; 
    margin-left: auto;
    margin-right: auto;
}

.remove-red-social:hover {
    background-color: #d32f2f;
}

.file-upload-button:hover {
    background-color: var(--primary-Yellow);
}
/* Versión Móvil */
@media (max-width: 768px) {
    .form-container-11 {
        grid-template-columns: 1fr; 
    }

    .redSocialActual,
    .redSocialActual2,
    .redSocialActual3,
    .redSocialActual4 {
        padding: 20px; 
        margin-bottom: 20px; 
    }
}
/* Sección 13-1 */
.project-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}


.project-table {
    width: 100%;
    border-collapse: collapse;
}

.project-table th, .project-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.project-table th {
    color: var(--primary-Blue);
    background-color: #f2f2f2;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.project-table td {
    font-size: 2.5rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.project-table input[type="text"]::placeholder {
    font-size: 2rem; 
    color: #999; 
}
.project-table input[type="text"],
.project-table input[type="number"],
.project-table textarea {
    width: calc(100% - 24px); 
    padding: 10px;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1.7rem;
    resize: none;
}

.project-table textarea {
    height: 100px;
}
/* Versión Móvil para móviles pequeños*/
@media (max-width: 576px) {
    .project-container {
        padding: 2px; 
        border-radius: 5px; 
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
        max-width: 100%; 
        margin: 10px auto; 
    }

    .project-table th,
    .project-table td {
        padding: 8px; 
        font-size: 2rem;
        display: block; 
        width: 100%; 
        box-sizing: border-box; 
        border: 1px solid #ddd; 
        border-bottom: none;
    }

    .project-table th {
        font-size: 2rem; 
        background-color: #f2f2f2;
        margin-bottom: 5px; 
        border-bottom: 1px solid #ddd; 
    }

    .project-table td {
        font-size: 2rem; 
        padding-left: 0; 
        margin-bottom: 8px; 
        border-left: none; 
        border-right: none; 
    }

    .project-table td:last-child {
        border-bottom: 1px solid #ddd;
    }

    .project-table input[type="text"]::placeholder {
        font-size: 2rem; 
        color: #999;
    }

    .project-table input[type="text"],
    .project-table input[type="number"],
    .project-table textarea {
        width: 100%; 
        padding: 8px; 
        font-size: 1rem; 
    }

    .project-table textarea {
        height: 80px; 
    }
}

/* Versión para móviles medianos */
@media (min-width: 577px) and (max-width: 768px) {
    .project-container {
        padding: 20px;
    }

    .project-table th {
        font-size: 1.5rem;
    }

    .project-table td {
        font-size: 1.3rem;
    }

    .project-table input[type="text"]::placeholder {
        font-size: 1.5rem;
    }

    .project-table input[type="text"],
    .project-table input[type="number"],
    .project-table textarea {
        font-size: 1.2rem;
    }

    .project-table textarea {
        height: 90px;
    }
}
/* Sección 13 */
.form-container-12 {
    width: 100%; 
    max-width: 800px; 
    margin: 10px auto; 
    padding: 30px;
    border-radius: 12px; 
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-container-12 textarea {
    width: calc(100% - 24px); 
    height: 250px; 
    padding: 12px;
    border: 1px solid #a9b5ef; 
    border-radius: 8px; 
    box-sizing: border-box;
    font-size: 2.5rem; 
    resize: none; 
    background-color:var(--primary-Yellow); 
    color: #000000; 
    line-height: 1.6; 
}
.help-img{
    margin-bottom: 30px;
}
@media (max-width: 576px) {
    .ayudamos{
        width: 300px !important;
        height: 400px !important;
    }
}
/* Sección 14-1 */
.container-14-1 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    margin: 0;
}

.section {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
}

.icon {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    border-radius: 50%;
    background-color: #e0f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
}
.busco{
    font-weight: bold;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.icon img {
    max-width: 50px;
    max-height: 50px;
}
.busco-textarea, .conclusion-textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 2.5rem;
    color: #ffffff;
    line-height: 1.6;
    box-sizing: border-box;
    resize: none; 
    height: 200px; 
    background-color: var(--primary-Blue);
}
.section .text {
    flex-grow: 1; 
}
.busco-textarea::placeholder, .conclusion-textarea::placeholder{
    color: #4e4c4c;
}
.image img {
    width: 100%;
    border-radius: 8px;
    margin-top: 20px;
}
/* Versión Móvil */
@media (max-width: 768px) {
    .container-14-1 {
        padding: 20px; 
        border-radius: 5px; 
    }

    .section {
        flex-direction: column; 
        align-items: center; 
        margin-bottom: 30px; 
    }

    .icon {
        width: 60px;
        height: 60px;
        margin-right: 0;
        margin-bottom: 5px; 
    }

    .icon img {
        max-width: 40px;
        max-height: 40px;
    }

    .text {
        width: 100%; 
    }

    .busco-textarea, .conclusion-textarea {
        font-size: 2rem;
        height: auto; 
        min-height: 220px; 
        margin-bottom: 5px;
    }

    .image img {
        margin-top: 5px;
        border-radius: 5px;
    }
}

/* Sección 14 */
.body14 {
    display: flex;
    justify-content: center; 
    align-items: center;    
    min-height: 100vh;
    margin: 0;
    background-color: var(--primary-White);
}
.text-area-section {
    margin-bottom: 15px;
}

.text-area-section label {
    font-weight: bold;
    color: #000000;
    display: block;
    margin-bottom: 3px;
}

.text-area-section textarea {
    width: 100% ;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    font-size: 2rem;
    color: #000000;
    line-height: 1.6;
    box-sizing: border-box;
    resize: none;
    height: 200px;
    background-image:url(/img/fondo\ suave.jpg);
    background-size: cover;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
#info-redes-sociales-container {
    width: 100%; 
}

.form-container-13 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: left;
}
.instagram-img{
    width: 100px;
    margin-bottom: 20px;
    display: block; 
    margin-left: auto;
    margin-right: auto;
}

.text-area-section {
    width: 100%; 
    margin-bottom: 15px; 
    box-sizing: border-box;
}

/* Sección Móvil */
@media (max-width: 768px) {
    .instagram-img {
        width: 50px; 
    }

    .text-area-i {
        font-size: 2rem;
        width: 100%; 
        height:280px; 
        text-align: center;
    }
}
/* Sección 15-1 */
.label-socialInstagram{
    width: 100%;
    text-align: center;
}
.text-area-s {
    width: 100% ;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    font-size: 2rem;
    color: #000000;
    line-height: 1.6;
    box-sizing: border-box;
    resize: none;
    height: 170px;
    background-image:url(/img/fondo\ suave.jpg);
    background-size: cover;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
/* Sección Móvil */
@media (max-width: 768px) {
    .instagram-img {
        width: 50px; 
    }

    .text-area-s {
        font-size: 2rem;
        width: 100%; 
        height:320px; 
        text-align: center;
    }
}
/* Sección 15 */

.form-container-14 {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 25px;
    margin: 0 auto;
}

.example-instagram {
    background-color:#f7bb6c; 
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0f2f7; 
    text-align: left;
    margin-bottom: 20px;
}
.example-facebook {
    background-color: var(--primary-Blue); 
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0f2f7; 
    text-align: left;
    margin-bottom: 20px;
}
.example-youtube {
    background-color: #ed4646; 
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0f2f7; 
    text-align: left;
    margin-bottom: 20px;
}
.example-linkedin {
    background-color: #98affd; 
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0f2f7; 
    text-align: left;
    margin-bottom: 20px;
}
.example-tiktok {
    background-color: #f19da0; 
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0f2f7; 
    text-align: left;
    margin-bottom: 20px;
}
.example-instagram label {
    display: block;
    font-size: 2.5rem;
    color: #000000;
    font-weight: bold;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.example-instagram p {
    font-size: 2rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
/* Sección 16-1 */
.form-container-16-1{
    background-image: url(/img/fondo\ suave.jpg);
    background-size: cover;
    padding: 20px;
    border-radius: 20px;
    margin: 0 auto;
}
.text-area-section-m{
    text-align: center;
}
.p-metrica{
    font-size: 2rem;
}
.label-metrica{
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}
.metrica-item { 
    margin-bottom: 20px; 
  }
/* Sección 16-2 */
.form-container-16-2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.text-area-section-h {
    background-color: #baf4ef;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}
.label-herramienta-IA a{
    color: var(--primary-Blue);
}
.herramienta-img {
    width: 80px;
    height: 80px;
    object-fit: contain; 
}
.label-herramienta {
    font-size: 2rem;
    color: #000000;
    line-height: 1.6;
}

.label-herramienta strong {
    font-weight: bold;
    color: #000000;
}
/* Sección 16-3 */
.metricool-label {
    margin-bottom: 30px; 
    display: block;
    margin-top: 30px;
}
.imagenMetricool{
    background-color: var(--primary-Blue); 
    color: white; 
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}
/* Sección 16 */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.dashboard-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    
}

.section-title {
    display: flex;
    justify-content: space-around;
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.title-part {
    text-align: center;
    flex-grow: 1;
}

.data-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.data-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.data-item label {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 5px;
    text-align: center;
}

.data-item input[type="number"] {
    border: 1px solid #000000;
    border-radius: 4px;
    padding: 15px 10px;
    font-size: 2.5em;
    color: #000000;
    text-align: center; 
}

.data-item input[type="number"]::-webkit-outer-spin-button,
.data-item input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Versión Móvil */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 15px;
        border-radius: 5px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 10px;
        padding-bottom: 6px;
        text-align: center; 
        flex-direction: column; 
        align-items: center;
    }

    .title-part {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .data-row {
        flex-direction: column; 
        gap: 15px;
        margin-bottom: 20px;
    }

    .data-item {
        width: 100%; 
        display: flex;
        flex-direction: column;
        align-items: center; 
        text-align: center; 
    }

    .data-item label {
        font-size: 1.2rem;
        margin-bottom: 5px;
        width: 80%; 
        box-sizing: border-box;
    }

    .data-item input[type="number"] {
        border: 1px solid #000000;
        border-radius: 4px;
        padding: 10px;
        font-size: 2rem;
        color: #000000;
        text-align: center;
        width: 80%; 
        box-sizing: border-box;
    }
}


/* Sección 17 */
.form-container-16 {
    width: 100%;
    max-width: 1000px;
    margin: 20px 0;
    margin-left: 0;
    border: 1px solid #ddd; 
    background-color: #dcf3f5; 
    padding: 20px; 
    border-radius: 8px; 
    box-sizing: border-box;
}

h2 {
    text-align: left;
    margin-bottom: 20px; 
    color: #000000; 
}

.month-title {
    margin-bottom: 15px; 
    font-weight: bold; 
    color: #000000; 
    display: block; 
}

.month-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
}

.month {
    border: 1px solid #eee; 
    padding: 15px;
    border-radius: 5px; 
    background-color: var(--primary-Blue); 
    box-sizing: border-box; 
}

.month label {
    display: block;
    margin-bottom: 5px;
    color: #000000; 
    font-size: 2.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.input-month {
    display: block; 
    width: calc(100% - 16px); 
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; 
    font-size: 2rem; 
    font-family: inherit; 
    line-height: 1.5; 
    min-height: 100px;
    resize: none;
    background-color: #f3f9f9;
}

.label-cursiva {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 1.7rem; 
    font-style: italic;
    margin-bottom: 15px !important;
    text-align: left;
    color: #000000; 
}

/* Version Móvil */
/* Estilos para móviles */
@media (max-width: 768px) {
    .form-container-16 {
        width: 100%; 
        max-width: none; 
        margin: 15px auto;
        margin-left: auto;
        border: 1px solid #ddd;
        background-color: #dcf3f5;
        padding: 15px; /* Reduce el padding */
        border-radius: 6px; 
    }

    h2 {
        text-align: left;
        margin-bottom: 15px; 
        font-size: 2rem; 
    }

    .month-title {
        margin-bottom: 10px; 
        font-size: 2rem; 
    }

    .month-grid {
        grid-template-columns: 1fr; 
        gap: 20px; 
    }

    .month {
        padding: 10px; 
        border-radius: 4px; 
    }

    .month label {
        font-size: 2rem; 
        margin-bottom: 3px; 
    }

    .input-month {
        width: calc(100% - 12px); 
        padding: 6px; 
        margin-bottom: 8px; 
        font-size: 2rem; 
        min-height: 80px; 
    }

    .label-cursiva {
        font-size: 2rem; 
        margin-bottom: 10px !important; 
    }
}

/* Estilos para móviles pequeños  */
@media (max-width: 480px) {
    .form-container-16 {
        width: 115%;
        padding: 10px;
        border-radius: 4px;
        margin: 10px auto;
    }

    h2 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .month-title {
        font-size: 1.4rem;
        margin-bottom: 6px;
    }

    .month-grid {
        gap: 10px; 
    }

    .month {
        width: 100%;
        padding: 8px;
    }

    .month label {
        font-size: 1.6rem;
        margin-bottom: 2px;
    }

    .input-month {
        font-size: 1.2rem;
        min-height: 60px;
        padding: 4px;
        width: calc(100% - 8px);
        margin-bottom: 6px;
    }

    .label-cursiva {
        font-size: 1rem;
        margin-bottom: 6px !important;
    }
}
/* Sección 18 */
.completion-message {
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 20px auto; 
    padding: 20px; 
}

.h2-final{
    font-family: 'Roboto Condensed';
    font-weight: 400;
    color: var(--primary-Yellow);
    font-size: 4rem;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 10px; 
}

p {
    margin-bottom: 20px;
}

.download-button, .home-button {
    background-color: var(--primary-Blue);
    border: 1px solid #ffffff;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 2rem;
}


body.body2 {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

main {
    flex-grow: 1; 
    display: flex;
    justify-content: center; 
    align-items: center; 
}
.final-message{
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight:400;
    font-size: 2rem;
    margin-bottom: 15px !important;
    text-align: center;
}
.home-button {
    display: flex; 
    align-items: center;
    text-decoration: none; 
}
.home-button svg {
    margin-right: 5px; 
}
  
.home-button p {
    margin: 0;
    font-size: 2rem; 
}
.button-container {
    width: 100%; 
    display: flex;
    justify-content: center; 
}
.p-final{
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 1.8rem;
}



/* Versión Móvil */
@media (max-width: 768px) {
    .completion-message {
        text-align: left; 
        width: 95%; 
        padding: 15px; 
        margin-left: auto; 
        margin-right: auto;
    }

    .h2-final {
        text-align: left; 
    }

    .final-message {
        text-align: left; 
    }

    .p-final{
        text-align: left; 
    }

    .download-button,
    .home-button {
        text-align: center; 
        display: block; 
        margin-left: 0; 
        margin-right: auto;
    }
    .home-button {
        display: flex;
        align-items: center;
    }
}



