/* Estilo general del formulario */
#contacto-formulario {
    max-width: 600px;
    margin: 0 auto;
    padding: 1px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #f9f9f9;
    position: relative;
    z-index: 10;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease-in-out;
}

#contacto-formulario h1 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bolder;
    color: darkgoldenrod;
}

#contacto-formulario p {
    font-size: 18px;
    text-align: center;
    color: darkgoldenrod;
    margin-bottom: 20px;
}

#contacto-formulario button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Estilos del contenedor Kommo */
#kommo-form-container {
    position: relative;
    z-index: 1000;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

#kommo-form-container iframe {
    width: 100%;
    height: auto;
    min-height: 200px;
    border: none;
    position: relative;
    z-index: 1000 !important;
    pointer-events: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.form-header {
    text-align: center;
    margin-bottom: 1rem;
    margin-bottom: 1rem;
    padding: 0;
    background: transparent;
}

.form-header h1 {
    font-size: 24px;
    margin: 0;
    margin-top: 1rem;
    padding: 0;
    background: transparent;
    color: darkgoldenrod;
    line-height: 1.2;
}

.form-header p {
    font-size: 16px;
    margin: 0;
    padding: 0;
    background: transparent;
    color: darkgoldenrod;
    line-height: 1.2;
}

/* Media queries */
@media (max-width: 600px) {
    #contacto-formulario {
/*        padding: 15px;*/
        padding: 1px;
    }

    #contacto-formulario h1 {
        font-size: 20px;
    }

    #contacto-formulario p {
        font-size: 14px;
    }
}

@media (min-width: 901px) {
    #contacto-formulario {
        max-width: 600px;
        padding: 1px;
    }

    #kommo-form-container iframe {
        min-height: 500px;
    }
}

@media (min-width: 1200px) {
    #contacto-formulario {
        max-width: 400px;
        padding: 1px;

    }

    #kommo-form-container iframe {
        min-height: 300px;
    }
}

@media screen and (max-width: 600px) {
  #kommo-form-container {
    width: 100%;
    max-width: 400px; /* o 600px si quieres que se mantenga exacto */
    margin: 0 auto;
  }

  #kommo-form-container iframe {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 500px;
    display: block;
    margin: 0 auto;
  }
}


