/*
 Theme Name:   Kadence Child
 Theme URI:    http://example.com/kadence-child
 Description:  Kadence Child Theme
 Author:       Tu Nombre
 Author URI:   http://example.com
 Template:     kadence
 Version:      55.0.45
*/
.contact-form-container {
            max-width: 500px;
            margin: 0 auto;
            padding: 0;
        }

        .wpcf7-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .wpcf7-form input::placeholder,
        .wpcf7-form textarea::placeholder,
        .wpcf7-form-control::placeholder {
            color: #9ca3af;
            font-weight: 400;
        }

        .wpcf7-form input,
        .wpcf7-form textarea,
        .wpcf7-form-control {
            width: 100%;
            padding: 14px 16px;            
            border-radius: 5px;
          
            transition: all 0.3s ease;
            background-color: #ffffff;
            font-family: inherit;
        }

        .wpcf7-form input:focus,
        .wpcf7-form textarea:focus,
        .wpcf7-form-control:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .wpcf7-form input:hover,
        .wpcf7-form textarea:hover,
        .wpcf7-form-control:hover {
            border-color: #d1d5db;
        }

        .wpcf7-form textarea,
        .wpcf7-textarea {
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
        }

        .privacy-notice {
            font-size: 13px;
            color: #6b7280;
            text-align: center;
            line-height: 1.5;
           
        }

        .privacy-notice a {
            color: #3b82f6;
            text-decoration: none;
        }

        .privacy-notice a:hover {
            text-decoration: underline;
        }

        .wpcf7-submit {
            background: #3b82f6;
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 8px;
            font-size: 16px;           
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: none;
            align-self: center;
            min-width: 160px;
        }

        .wpcf7-submit:hover {
            background: #2563eb;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        .wpcf7-submit:active {
            transform: translateY(0);
        }

        .wpcf7-submit:disabled {
            background: #9ca3af;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* Estilos para mensajes de validación */
        .wpcf7-not-valid-tip {
            color: #ef4444;
            font-size: 12px;
            margin-top: 4px;
        }

        .wpcf7-form-control.wpcf7-not-valid {
            border-color: #ef4444;
        }

        .wpcf7-response-output {
            margin-top: 20px;
            padding: 12px;
            border-radius: 6px;
            font-size: 14px;
        }

        .wpcf7-mail-sent-ok {
            background-color: #dcfce7;
            color: #166534;
            border: 1px solid #bbf7d0;
        }
.wpcf7-form textarea,
        .wpcf7-textarea {
            min-height: 80px;
            height: 80px;
            resize: vertical;
            font-family: inherit;
        }

        .wpcf7-validation-errors {
            background-color: #fef2f2;
            color: #dc2626;
            border: 1px solid #fecaca;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-form-container {
                padding: 24px;
                margin: 10px;
            }
            
            .wpcf7-form-control {
                font-size: 16px; /* Previene zoom en iOS */
            }
        }

        /* Estados de carga */
        .wpcf7-form.submitting .wpcf7-submit {
            background: #9ca3af;
            cursor: wait;
        }

        .wpcf7-form.submitting .wpcf7-submit::after {
            content: "...";
            animation: dots 1.5s infinite;
        }

        @keyframes dots {
            0%, 20% { content: ""; }
            40% { content: "."; }
            60% { content: ".."; }
            80%, 100% { content: "..."; }
        }
.enviar p {
	display: flex
;
    flex-direction: column;
    align-items: center;
    gap: 10px;
	justify-content:center
}
.enviar p input {  display: inline-block;
width: 240px;
}

.wpcf7-form p {
	margin-bottom:0px!important;
}