.elementor-3102 .elementor-element.elementor-element-0ce9f3c{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--padding-top:0px;--padding-bottom:0px;--padding-left:084px;--padding-right:84px;}/* Start custom CSS for html, class: .elementor-element-2f13d88 */.contact-card {
            background-color: #f7f4f3;
            width: 800px;
            min-height: 350px;
            border-radius: 16px;
            padding: 84px;
            position: relative;
        }

        .card-top {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            font-family: "lato", sans-serif;
        }

        .hero {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            gap: 16px;
        }

        .hero h1 {
            font-family: "solar-sans", sans-serif;
            font-size: 55px;
            line-height: 55px;
            width: 50%;
        }

        .hero-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 50%;
        }

        .hero-text p {
            font-family: "lato", sans-serif;
            font-size: 16px;
            font-weight: 300;
            color: black;
            line-height: 26px;
        }

        .form-container {
            max-height: 0;
            overflow: hidden;
            transition: max-height .9s cubic-bezier(.34, 1.56, .64, 1);
        }

        .contact-card.open .form-container {
            max-height: 600px;
        }

        #toggleForm {
            background-color: black;
            padding: 6px 12px;
            border-radius: 26px;
            color: white;
            transition: 0.3s;
            border: none;
            cursor: pointer;
        }

        #toggleForm:hover {
            background-color: orange;
        }

        .form-grid {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            gap: 25px;
            margin-top: 20px;
        }

        .left {
            display: flex;
            flex-direction: column;
            width: 50%;
        }

        .left input, .right textarea {
            margin-bottom: 10px;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .right {
            width: 50%;
        }

        textarea {
            width: 100%;
            height: 80px;
            margin: 10px 0;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .right label {
            display: block;
            margin-bottom: 5px;
        }

        .submit-btn {
            background-color: black;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 26px;
            cursor: pointer;
            margin-top: 10px;
            width: 100%;
        }

        .submit-btn:hover {
            background-color: orange;
        }

        .submit-btn:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
        }

        .linkedin {
            width: 30px;
            height: 30px;
            background-color: #0077b5;
            color: white;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ===== ESTILOS PARA MENSAJES ===== */
        #messageContainer {
            margin-bottom: 20px;
        }

        .alert-message {
            padding: 16px 20px;
            border-radius: 8px;
            margin: 20px 0;
            display: flex;
            align-items: center;
            gap: 15px;
            animation: slideDown 0.5s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: relative;
        }

        .alert-message .icon {
            font-size: 24px;
            font-weight: bold;
            min-width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .alert-message .content {
            flex: 1;
        }

        .alert-message h4 {
            margin: 0 0 5px 0;
            font-size: 16px;
            font-weight: 600;
        }

        .alert-message p {
            margin: 0;
            font-size: 14px;
            opacity: 0.9;
        }

        .alert-message .close-btn {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
            color: inherit;
            padding: 0 5px;
        }

        .alert-message .close-btn:hover {
            opacity: 1;
        }

        /* Mensaje de ÉXITO */
        .alert-message.success {
            background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
            color: #155724;
            border-left: 4px solid #28a745;
        }

        .alert-message.success .icon {
            background: #28a745;
            color: white;
        }

        /* Mensaje de ERROR */
        .alert-message.error {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: #721c24;
            border-left: 4px solid #dc3545;
        }

        .alert-message.error .icon {
            background: #dc3545;
            color: white;
        }

        /* Mensaje de ADVERTENCIA */
        .alert-message.warning {
            background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
            color: #856404;
            border-left: 4px solid #ffc107;
        }

        .alert-message.warning .icon {
            background: #ffc107;
            color: white;
        }

        /* Animación */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Estilos para campos con error */
        input.error, textarea.error {
            border-color: #dc3545 !important;
            background-color: #fff8f8;
            animation: shake 0.3s ease;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        /* Loader */
        .loader {
            border: 3px solid #f3f3f3;
            border-radius: 50%;
            border-top: 3px solid #3498db;
            width: 20px;
            height: 20px;
            animation: spin 1s linear infinite;
            display: inline-block;
            margin-right: 10px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-card {
                width: 90%;
                padding: 20px;
            }
            
            .hero {
                flex-direction: column;
            }
            
            .hero h1, .hero-text {
                width: 100%;
            }
            
            .form-grid {
                flex-direction: column;
            }
            
            .left, .right {
                width: 100%;
            }
            
            .alert-message {
                flex-direction: column;
                text-align: center;
                padding-top: 40px;
            }
            
            .alert-message .close-btn {
                position: absolute;
                top: 10px;
                right: 15px;
            }
        }/* End custom CSS */